/* --- CSS Reset & Normalize --- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #FFF;
  color: #093C44;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
  background: none;
}
::selection {
  background: #F2A66022;
}

/* --- Brand Typography --- */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
p, li {
  font-size: 1rem;
  color: #093C44;
  margin-bottom: 12px;
}
p:last-child, li:last-child {
  margin-bottom: 0;
}
strong {
  font-weight: 600;
}

/* --- Container & Layout --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  position: relative;
  margin-bottom: 20px;
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(9,60,68,0.06);
  padding: 28px 26px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 4px 16px rgba(9,60,68,0.11);
  transform: translateY(-2px) scale(1.012);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(9,60,68,0.08);
  margin-bottom: 24px;
  min-width: 240px;
  max-width: 400px;
  transition: box-shadow .22s, transform .17s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 8px 32px rgba(9,60,68,0.10);
  transform: translateY(-2px) scale(1.011);
}
.testimonial-card p {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #093C44;
}
.testimonial-card .stars {
  display: flex;
  gap: 2px;
  margin-top: 3px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- Header/Navbar --- */
header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  box-shadow: 0 2px 8px rgba(9,60,68,0.04);
  display: flex;
  align-items: center;
  padding: 14px 20px;
}
.logo-area {
  display: flex;
  align-items: center;
  margin-right: 28px;
}
.logo-area img {
  width: 56px;
  height: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-right: auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #093C44;
  padding: 5px 2px;
  border-radius: 4px;
  transition: background 0.15s, color 0.17s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F2A66022;
  color: #093C44;
}

.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 11px 26px;
  cursor: pointer;
  text-align: center;
  border: none;
  outline: none;
  transition: box-shadow .16s, background .18s, color .14s;
  margin-left: 20px;
}
.cta.primary {
  background: #093C44;
  color: #fff;
  box-shadow: 0 2px 10px rgba(9,60,68,0.10);
}
.cta.primary:hover, .cta.primary:focus {
  background: #0e545f;
  box-shadow: 0 4px 16px rgba(9,60,68,0.13);
  color: #fff;
}
.cta.secondary {
  background: #F2A660;
  color: #093C44;
  box-shadow: 0 2px 8px rgba(242,166,96,0.07);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #FFE1BE;
  color: #093C44;
  box-shadow: 0 4px 18px rgba(242,166,96,0.13);
}

button, .mobile-menu-toggle, .mobile-menu-close {
  cursor: pointer;
}

.mobile-menu-toggle {
  font-size: 2rem;
  background: none;
  border: none;
  color: #093C44;
  display: none;
  margin-left: 18px;
  z-index: 60;
  border-radius: 7px;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F2A66022;
}

/* ---- Mobile Menu ---- */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF;
  box-shadow: 0 8px 38px rgba(9,60,68,0.15);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform .36s cubic-bezier(0.76,0.09,0.41,0.84);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2rem;
  background: none;
  color: #093C44;
  border: none;
  z-index: 102;
  border-radius: 7px;
  transition: background 0.14s;
  padding: 6px 10px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F2A66022;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 90px 0 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #093C44;
  font-size: 1.18rem;
  letter-spacing: 0.5px;
  padding: 10px 8px;
  border-radius: 6px;
  transition: background .15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F2A66022;
}


/* ---- Hero Section ---- */
.hero {
  width: 100%;
  min-height: 310px;
  padding: 70px 0 60px 0;
  display: flex;
  align-items: center;
  background: #FAFAFA;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: #093C44;
  font-size: 2.35rem;
  margin-bottom: 12px;
}
.hero p {
  color: #093C44;
  font-size: 1.18rem;
  margin-bottom: 20px;
}
.hero .cta {
  margin-top: 14px;
}

.team-photo img {
  width: 140px;
  height: auto;
  margin-top: 18px;
  margin-bottom: 10px;
  border-radius: 5px;
  background: #F7F7F3;
}

/* ---- Features & Services Flex List ---- */
.features ul, .services ul, .service-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features ul li, .services ul li, .service-list li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(9,60,68,0.07);
  padding: 26px 20px;
  min-width: 260px;
  flex: 1 1 285px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
  transition: box-shadow .17s;
}
.features ul li:hover,
.services ul li:hover,
.service-list li:hover {
  box-shadow: 0 8px 32px rgba(9,60,68,0.12);
}
.features ul li img,
.contact-preview ul li img {
  width: 32px;
  height: 32px;
  margin-right: 11px;
  flex-shrink: 0;
}
.features ul li div {
  flex: 1;
}
.features ul li h3,
.services ul li h3,
.service-list li h3 {
  margin-bottom: 5px;
}
.features ul li p {
  font-size: 0.98rem;
}
.price {
  font-weight: 700;
  color: #F2A660;
  font-size: 1.1rem;
  margin-top: 15px;
}

/* --- Tags & Info --- */
.tag {
  display: inline-block;
  background: #F2A66022;
  color: #093C44CC;
  font-size: .92rem;
  padding: 3px 13px;
  border-radius: 11px;
  margin-left: 7px;
  margin-right: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.routes-info, .local-tips {
  background: #f7f7f3;
  border-radius: 8px;
  padding: 22px 17px;
  margin-top: 21px;
  color: #093C44;
}

.local-tips h3 { margin-bottom: 12px; }
.routes-info p { margin: 0; }

.tips-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
  flex-direction: column;
}
.tips-grid li {
  background: #FFF;
  padding: 12px 17px;
  border-radius: 10px;
  margin-bottom: 0;
  font-size: 1rem;
}

.photographer-bio {
  margin-top: 24px;
  background: #F7F7F3;
  border-radius: 8px;
  padding: 20px 16px;
}
.photographer-bio h3 { margin-bottom: 10px; }

/* --- Contact & Address --- */
.contact-preview ul,
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 20px 0;
}
.contact-preview ul li,
.contact-info ul li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
}
.map-placeholder {
  width: 100%;
  max-width: 380px;
  margin: 26px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F7F7F3;
  border-radius: 12px;
  padding: 26px 10px;
}

.contact-form ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 0 0;
}
.contact-form li {
  font-size: 1rem;
}

/* --- Footer --- */
footer {
  background: #F7F7F3;
  color: #093C44;
}
.footer-main {
  width: 100%;
  padding: 48px 20px 12px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 40px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 16px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #093C44;
  font-size: 1rem;
  transition: color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F2A660;
}
.footer-contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  font-size: 0.97rem;
}
.copyright {
  width: 100%;
  text-align: center;
  padding: 22px 5px 15px 5px;
  font-size: .97rem;
  border-top: 1px solid #EAEAEA;
  background: #F7F7F3;
  color: #093C4499;
}

/* --- Utility --- */
.section:last-child {
  margin-bottom: 0;
}
ul, ol {
  margin-bottom: 0;
}

/* --- Forms, Inputs --- */
input, textarea, select {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #EAEAEA;
  background: #fff;
  font-size: 1rem;
  color: #093C44;
  margin-bottom: 18px;
  outline: none;
  transition: border-color .15s;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border-color: #F2A660;
}

label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #093C44;
}

/* --- Table --- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
th, td {
  text-align: left;
  padding: 11px 10px;
}
th {
  background: #F7F7F3;
}
td {
  background: #fff;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #093C44;
  box-shadow: 0 -2px 14px rgba(9,60,68,0.12);
  z-index: 990;
  padding: 24px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 1;
  transform: translateY(0);
  transition: transform .28s cubic-bezier(0.65,0.05,0.41,0.87), opacity .22s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120px);
  pointer-events: none;
}
.cookie-banner p {
  margin-bottom: 6px;
  font-size: 1.05rem;
  text-align: center;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 6px;
  justify-content: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 6px;
  padding: 8px 22px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .14s, color .14s, box-shadow .14s;
}
.cookie-btn.accept {
  background: #093C44;
  color: #fff;
}
.cookie-btn.accept:focus, .cookie-btn.accept:hover {
  background: #0e545f;
}
.cookie-btn.reject {
  background: #F2A660;
  color: #093C44;
}
.cookie-btn.reject:focus, .cookie-btn.reject:hover {
  background: #FFE1BE;
}
.cookie-btn.settings {
  background: #fff;
  color: #093C44;
  border: 1.5px solid #F2A660;
}
.cookie-btn.settings:focus, .cookie-btn.settings:hover {
  background: #F2A66022;
}

/* --- Cookie Modal --- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  z-index: 1100;
  background: rgba(9,60,68,0.17);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity .21s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(9,60,68,0.13);
  padding: 38px 25px 32px 25px;
  width: 98vw;
  max-width: 420px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 21px;
  align-items: flex-start;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 17px; right: 17px;
  background: none;
  color: #093C44;
  font-size: 1.52rem;
  border: none;
  border-radius: 6px;
  padding: 3px 8px;
  cursor: pointer;
  transition: background .13s;
  z-index: 2;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  background: #F2A66018;
}
.cookie-modal h3 {
  margin-bottom: 3px;
}
.cookie-categories {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-category input[type='checkbox'] {
  width: 20px; height: 20px;
  accent-color: #F2A660;
}
.cookie-category.essential input {
  pointer-events: none;
  accent-color: #A8A8A8;
}
.cookie-category.essential label {
  opacity: 0.62;
}
.cookie-modal .cookie-btn {
  margin-top: 10px;
}

/* --- Thank You (tesekkurler) & Policy Sections --- */
.thank-you, .privacy-policy, .kvkk-content, .cookie-policy, .terms-of-use {
  padding: 60px 20px 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thank-you h1, .privacy-policy h1, .kvkk-content h1, .cookie-policy h1, .terms-of-use h1 {
  margin-bottom: 21px;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .container {
    max-width: 91vw;
  }
  .footer-main {
    flex-direction: column;
    gap: 35px;
  }
}
@media (max-width: 900px) {
  .features ul, .services ul, .service-list {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 900px) {
  header {
    flex-wrap: wrap;
    padding: 12px 12px;
  }
}
@media (max-width: 768px) {
  body { font-size: 15px; }
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.48rem; }
  .hero {
    padding: 44px 0 32px 0;
    min-height: 175px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta {
    margin-left: 10px;
    padding: 10px 12px;
    font-size: 0.97rem;
  }
  .footer-main {
    flex-direction: column;
    gap: 31px;
    align-items: flex-start;
    padding: 34px 10px 10px 10px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
    max-width: 99vw;
  }
  .section {
    margin-bottom: 34px;
    padding: 18px 10px;
  }
  .card-container,
  .content-grid,
  .features ul, .services ul, .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    min-width: unset;
    max-width: unset;
    width: 100%;
    padding: 15px 10px;
    font-size: 1rem;
  }
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .tag { font-size: 0.91rem; }
  .routes-info, .local-tips {
    padding: 16px 7px;
  }
  .about .container, .privacy-policy .container {
    padding-left: 0; padding-right: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .map-placeholder {
    min-width: 0;
    padding: 16px 3px;
    max-width: 99vw;
  }
  .cookie-modal .modal-content {
    padding: 22px 5px 20px 10px;
    max-width: 99vw;
  }
  .mobile-nav {
    margin-left: 17px;
    margin-top: 70px;
  }
  .mobile-nav a {
    font-size: 1.04rem;
    padding: 8px 4px;
  }
}
@media (max-width: 480px) {
  h1, .h1 { font-size: 1.4rem; }
  h2, .h2 { font-size: 1.08rem; }
  .card { padding: 12px 5px; font-size: 0.97rem; }
  .testimonial-card { font-size: .98rem; padding: 9px 2px 13px 2px; }
  .cta { font-size: .97rem; padding: 8px 8px; }
}

/* --- Focus States --- */
a:focus-visible, .cta:focus-visible, button:focus-visible {
  outline: 2px solid #F2A660;
  outline-offset: 2px;
}

/* --- Animations & Micro-interactions --- */
.cta, .cookie-btn {
  transition: background .16s, box-shadow .18s, color .14s;
}
.cookie-banner, .cookie-modal .modal-content {
  animation: fadeInUp .46s cubic-bezier(0.3,0.74,0.3,1);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Hide scroll when mobile menu/modal open --- */
body.modal-open, html.modal-open {
  overflow: hidden;
}

/* --- Utility classes (optional for spacing) --- */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.gap-20 { gap: 20px; }

/* --- End of CSS --- */
