body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #211b12;
  background: #fbf7ee;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: Arial, Helvetica, sans-serif;
}

.container,
.nav,
.copyright {
  width: 94%;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 40;
  padding: 10px 14px;
  background: #d9a63a;
  color: #17120a;
}

.skip-link:focus {
  left: 12px;
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 8px 16px;
  background: #d9aa45;
  color: #17120a;
  font-size: 13px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fffaf1;
  border-bottom: 1px solid #ecd3a3;
  box-shadow: 0 10px 30px rgba(58, 42, 18, .08);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand img {
  width: 150px;
  height: auto;
}

.menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  color: #35291c;
  font-size: 15px;
}

.menu a:hover,
.footer a:hover,
.scroll-top:hover {
  color: #946512;
}

.menu-item {
  position: relative;
}

.has-submenu > a::after {
  content: "▾";
  margin-left: 6px;
  color: #946512;
  font-size: 12px;
}

.submenu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  margin-top: 0;
  padding: 10px;
  border: 1px solid #ecd3a3;
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 18px 45px rgba(58, 42, 18, .15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease;
}

.submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
}

.submenu a:hover {
  background: #fff3d6;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-call,
.btn-gold,
.footer-actions a:first-child,
.contact-card a,
.footer-contact-box a,
.sticky-cta a {
  color: #17120a;
  background: #d9a63a;
  font-weight: 900;
}

.nav-call {
  padding: 10px 18px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(200, 146, 45, .25);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #d9a63a;
  border-radius: 8px;
  background: #fffaf1;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #946512;
  transition: transform .22s ease, opacity .22s ease;
}

.menu-toggle[aria-expanded="true"] {
  background: #fff3d6;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.menu-toggle em {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fffaf1;
  border-bottom: 1px solid #ecd3a3;
}

.hero-media,
.hero::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  opacity: .74;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  background: rgba(255, 250, 241, .58);
}

.hero-grid {
  position: relative;
  z-index: 2;
  padding: 84px 0 100px;
}

.hero-copy {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #946512;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: #211b12;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 86px;
  line-height: .96;
  text-shadow: 0 2px 18px rgba(255, 250, 241, .9);
}

h2 {
  color: #211b12;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1.1;
}

h3 {
  color: #211b12;
  font-size: 21px;
  line-height: 1.25;
}

.hero-lead {
  max-width: 700px;
  color: #5f5346;
  font-size: 19px;
  text-shadow: 0 1px 12px rgba(255, 250, 241, .9);
}

.hero-readable {
  display: inline-block;
  padding: 14px 18px;
  border: 1px solid #ecd3a3;
  border-radius: 8px;
  color: #17120a;
  background: rgba(255, 250, 241, .82);
  box-shadow: 0 18px 45px rgba(58, 42, 18, .12);
  text-shadow: none;
}

.hero-actions,
.cta-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn,
.footer-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 900;
}

.btn-dark,
.footer-actions a:last-child,
.contact-card a + a,
.sticky-cta a + a {
  color: #f7df9b;
  background: #1f180f;
}

.btn-light {
  color: #17120a;
  background: #fffdf8;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-facts span {
  padding: 8px 11px;
  border: 1px solid #ecd3a3;
  border-radius: 8px;
  background: #ffffff;
  color: #3b3022;
  font-size: 14px;
}

.section,
.intro-band,
.cta-split,
.contact {
  padding: 72px 0;
  border-bottom: 1px solid #ecd3a3;
}

.section {
  background: #fbf7ee;
}

.intro-band,
.contact {
  background: #f7ecd8;
}

.cta-split {
  background: #e6c16c;
  color: #211b12;
}

.intro-grid,
.cta-grid,
.contact-grid,
.why-grid,
.footer-top {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 38px;
  align-items: center;
}

.intro-grid p,
.section-head p,
.why p,
.contact p,
.service-card p,
.testimonial-card p,
.footer p,
.footer span,
.footer address {
  color: #6f6251;
}

.intro-stat,
.service-card,
.reason-list article,
details,
.testimonial-card,
.contact-card,
.footer-contact-box {
  border: 1px solid #ecd3a3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(58, 42, 18, .1);
}

.intro-stat,
.contact-card,
.footer-contact-box,
.testimonial-card,
.reason-list article {
  padding: 22px;
}

.intro-stat span {
  display: block;
  color: #946512;
  font-size: 48px;
  font-weight: 900;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head-compact {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.service-grid,
.district-grid,
.testimonial-grid,
.reason-list,
.faq-list {
  display: grid;
  gap: 18px;
}

.service-grid,
.district-grid {
  grid-template-columns: repeat(4, 1fr);
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-card h3,
.service-card p {
  padding-right: 18px;
  padding-left: 18px;
}

.service-card h3 {
  margin: 18px 0 8px;
}

.service-card p {
  padding-bottom: 20px;
}

.district-grid {
  gap: 10px;
}

.district-grid a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid #ecd3a3;
  border-radius: 8px;
  background: #fffdf8;
  color: #2b2318;
  font-weight: 800;
}

.district-grid a::after {
  content: "›";
  color: #946512;
  font-size: 22px;
}

.district-grid a:hover {
  color: #8d5f12;
  background: #fff3d6;
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid #ecd3a3;
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 18px 45px rgba(58, 42, 18, .08);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.price-table th,
.price-table td {
  padding: 16px;
  border-bottom: 1px solid #ecd3a3;
  text-align: left;
  vertical-align: top;
}

.price-table th {
  color: #17120a;
  background: #fff3d6;
  font-weight: 800;
}

.price-table td:first-child {
  color: #946512;
  font-weight: 800;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.text-link,
.testimonial-card strong {
  color: #946512;
  font-weight: 900;
}

.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: "5/5";
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #17120a;
  background: #d9a63a;
  font-size: 12px;
  font-weight: 900;
}

.testimonial-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 20px;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: #6f6251;
}

.contact-card {
  display: grid;
  gap: 12px;
}

.contact-card a,
.footer-contact-box a {
  display: flex;
  justify-content: center;
  padding: 14px;
  border-radius: 8px;
  font-weight: 900;
}

.contact-card span {
  text-align: center;
}

.footer {
  padding: 64px 0 0;
  background: #f4ead9;
  border-top: 1px solid #ecd3a3;
}

.footer-top {
  padding-bottom: 34px;
  border-bottom: 1px solid #ecd3a3;
}

.footer-top p {
  max-width: 720px;
}

.footer-contact-box strong,
.footer-contact-box span,
.footer-contact-box address {
  display: block;
}

.footer-contact-box address {
  margin-top: 12px;
  font-style: normal;
}

.footer-contact-box a {
  margin: 12px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  padding-top: 34px;
}

.footer strong {
  display: block;
  margin-bottom: 12px;
  color: #946512;
}

.footer a,
.footer-grid span {
  display: block;
  margin: 8px 0;
  color: #5c4e3d;
}

.copyright {
  padding: 18px 0 88px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid #ecd3a3;
  font-size: 14px;
}

.scroll-top {
  padding: 0;
  border: 0;
  background: transparent;
  color: #5c4e3d;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  left: 3%;
  right: 3%;
  bottom: 14px;
  z-index: 20;
  display: none;
  gap: 8px;
}

.sticky-cta a {
  flex: 1;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(58, 42, 18, .14);
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .menu-open {
    overflow: hidden;
  }

  .nav {
    height: 68px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 98px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    padding: 0 16px;
    overflow: hidden;
    border: 1px solid #ecd3a3;
    border-radius: 8px;
    background: #fffdf8;
    box-shadow: 0 20px 50px rgba(58, 42, 18, .16);
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height .28s ease, padding .28s ease, opacity .2s ease, transform .2s ease;
    pointer-events: none;
  }

  .menu.is-open {
    max-height: 520px;
    padding: 16px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu a {
    padding: 11px 4px;
    border-bottom: 1px solid #f3e3c4;
  }

  .menu-item {
    width: 100%;
  }

  .has-submenu > a:after {
    content: "▾";
    margin-left: 6px;
  }

  .submenu {
    position: static;
    min-width: 0;
    margin: 0;
    max-height: 0;
    padding: 0 0 0 14px;
    overflow: hidden;
    border: 0;
    border-left: 1px solid #ecd3a3;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    visibility: visible;
    transform: none;
    transition: max-height .22s ease, padding .22s ease, opacity .18s ease;
  }

  .menu-item.submenu-open .submenu {
    max-height: 150px;
    padding: 6px 0 8px 14px;
    opacity: 1;
  }

  .submenu a {
    padding: 9px 0 9px 12px;
    border-bottom: 0;
    color: #5c4e3d;
  }

  .nav-call {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero-grid,
  .intro-grid,
  .cta-grid,
  .contact-grid,
  .why-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .district-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .top-strip {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .brand img {
    width: 126px;
  }

  .menu {
    top: 128px;
  }

  .hero-grid {
    padding: 54px 0 72px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .service-grid,
  .district-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .copyright {
    flex-direction: column;
  }

  .sticky-cta {
    display: flex;
  }
}

.error-page {
  min-height: calc(100vh - 220px);
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 80px 0;
  background:
    linear-gradient(rgba(255, 250, 241, .9), rgba(255, 250, 241, .96)),
    url("/uploads/istanbul-korsan-taksi.webp") center / cover no-repeat;
}

.error-page-inner {
  max-width: 760px;
  text-align: center;
}

.error-page h1 {
  margin: 8px 0 18px;
}

.error-page p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.error-page .hero-actions {
  justify-content: center;
}
