* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: #171717;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1180px, 92%);
  margin: auto;
}

/* HEADER */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(7, 7, 7, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrapper {
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo img {
  height: 205px;
  object-fit: contain;
  position: relative;
  top: 8px;
  left: -8px;
}

.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  transition: .25s;
}

.nav a:hover {
  color: #d6a043;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.call-btn,
.whatsapp-header {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 14px 35px rgba(0,0,0,.25);
  transition: .25s;
}

.call-btn {
  background: linear-gradient(135deg, #d3a34b, #946218);
  color: #fff;
}

.whatsapp-header {
  background: #25d366;
  color: #111;
}

.call-btn:hover,
.whatsapp-header:hover {
  transform: translateY(-2px);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 34px;
  color: #d6a043;
  cursor: pointer;
}

.mobile-call-btn {
  display: none;
}

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #000;
}

.hero-slider,
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slider {
  z-index: 1;
}

.slide {
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 5s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.42) 45%, rgba(0,0,0,.18)),
    linear-gradient(0deg, rgba(0,0,0,.45), rgba(0,0,0,.06) 45%, rgba(0,0,0,.35));
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding-top: 150px;
  padding-bottom: 125px;
}

.hero-content span,
.section-mini {
  display: inline-block;
  color: #d6a043;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-content h1 {
  max-width: 780px;
  font-size: clamp(44px, 5.5vw, 78px);
  line-height: 1;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 900;
  letter-spacing: -1.6px;
  text-shadow: 0 16px 45px rgba(0,0,0,.68);
}

.hero-content p {
  max-width: 520px;
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.86);
  text-shadow: 0 8px 24px rgba(0,0,0,.65);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  min-width: 168px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 900;
  font-size: 14px;
  transition: .25s;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.btn-primary {
  background: rgba(255,255,255,.94);
  color: #111;
  box-shadow: 0 14px 35px rgba(0,0,0,.24);
}

.btn-whatsapp {
  background: #25d366;
  color: #07140b;
  box-shadow: 0 14px 35px rgba(0,0,0,.24);
}

/* HERO MARQUEE */
.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 5;
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.08);
}

.hero-marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  padding: 18px 0;
  animation: marqueeMove 30s linear infinite;
}

.hero-marquee span {
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-marquee span:nth-child(odd) {
  color: #d6a043;
}

@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* COMMON SECTIONS */
.services,
.gallery,
.reservation,
.premium-services {
  background: #fff;
}

.services,
.gallery {
  padding: 95px 0;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-head h2 {
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.14;
  margin-bottom: 16px;
  color: #171717;
}

.section-head p {
  color: #5f5f5f;
  font-size: 17px;
  line-height: 1.8;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 105px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 24px;
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #241b13;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(0,0,0,.055);
  transition: .25s;
}

.service-card:hover {
  transform: translateY(-5px);
  color: #a56f1e;
  border-color: #c99a45;
}

/* WORK SLIDER */
.work-slider {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 20px 0 10px;
}

.work-head {
  width: min(1180px, 92%);
  margin: 0 auto 24px;
  text-align: center;
}

.work-head h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  color: #111;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.work-head p {
  color: #666;
  font-size: 17px;
  line-height: 1.7;
}

.work-marquee {
  width: 100vw;
  overflow: hidden;
  position: relative;
}

.work-marquee::before,
.work-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.work-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.work-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff, transparent);
}

.work-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: workSlideRight 38s linear infinite;
}

.work-track img {
  width: 420px;
  height: 520px;
  object-fit: cover;
  border-radius: 30px;
  border: 1px solid #eee;
  box-shadow: 0 24px 70px rgba(0,0,0,.12);
}

@keyframes workSlideRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* PAYMENT MARQUEE */
.paymarq {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #0b0b0b 0%, #111 100%);
  padding: 8px 0 18px;
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.paymarq::before,
.paymarq::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.paymarq::before {
  left: 0;
  background: linear-gradient(90deg, #0b0b0b, transparent);
}

.paymarq::after {
  right: 0;
  background: linear-gradient(270deg, #0b0b0b, transparent);
}

.paymarq__inner {
  width: 100%;
  overflow: hidden;
}

.paymarq__track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  min-width: max-content;
  animation: paymarqLoop 24s linear infinite;
}

.paymarq__track img {
  flex: 0 0 auto;
  width: 92px;
  height: 56px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 8px 14px;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 10px 28px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.8);
  transition: .25s ease;
}

.paymarq__track img:hover {
  transform: translateY(-4px);
}

@keyframes paymarqLoop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* PREMIUM SERVICES */
.premium-services {
  padding: 100px 0;
}

.premium-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.premium-service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.08);
  transition: .28s;
}

.premium-service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 32px 90px rgba(0,0,0,.12);
  border-color: rgba(211,163,75,.45);
}

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

.service-body {
  padding: 24px;
}

.service-body h3 {
  font-size: 21px;
  color: #111;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.service-body p {
  color: #666;
  font-size: 14.5px;
  line-height: 1.65;
  min-height: 48px;
  margin-bottom: 20px;
}

.service-body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #25d366, #18bd55);
  color: #07140b;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(37,211,102,.18);
  transition: .25s;
}

.service-body a:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

/* RESERVATION FINAL CLEAN */
.reservation {
  padding: 110px 0;
  background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
  border-top: 1px solid #eee;
  position: relative;
}

.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: stretch;
}

.reservation-info {
  background: #111;
  color: #fff;
  border-radius: 34px;
  padding: 52px;
  box-shadow: 0 35px 90px rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}

.reservation-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #d3a34b, #f4d58c, #d3a34b);
}

.reservation-info h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 22px;
}

.reservation-info p {
  color: rgba(255,255,255,.78);
  font-size: 16.5px;
  line-height: 1.8;
}

.reservation-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.reservation-highlights div {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  padding: 18px 14px;
}

.reservation-highlights strong {
  display: block;
  color: #d6a043;
  font-size: 18px;
  margin-bottom: 7px;
}

.reservation-highlights span {
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 800;
}

.reservation-form,
.reservation-form * {
  box-sizing: border-box;
}

.reservation-form {
  background: #fff;
  border-radius: 34px;
  padding: 48px;
  border: 1px solid #e9e9e9;
  box-shadow: 0 35px 90px rgba(0,0,0,.10);
  display: grid;
  gap: 16px;
  overflow: visible;
}

.form-title {
  margin-bottom: 8px;
}

.form-title span {
  display: inline-block;
  color: #d3a34b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-title h3 {
  color: #111;
  font-size: 28px;
  letter-spacing: -0.5px;
}

.reservation-form .field {
  width: 100%;
  display: block;
  min-width: 0;
}

.reservation-form label {
  display: block;
  margin: 0 0 8px;
  color: #333;
  font-size: 13px;
  font-weight: 900;
}

.reservation-date-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-width: 0;
}

.reservation-date-row .field {
  min-width: 0;
}

.reservation-form input,
.reservation-form select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 62px;
  min-height: 62px;
  padding: 0 18px;
  border: 1px solid #dedede;
  border-radius: 17px;
  background: #fff;
  color: #111;
  font-size: 15px;
  line-height: normal;
  outline: none;
  display: block;
}

.reservation-form select {
  appearance: auto;
  -webkit-appearance: auto;
}

.reservation-form input[type="date"],
.reservation-form input[type="time"] {
  appearance: auto;
  -webkit-appearance: auto;
  background-color: #fff;
  color: #111;
  text-align: left;
}

.reservation-form input[type="date"]::-webkit-date-and-time-value,
.reservation-form input[type="time"]::-webkit-date-and-time-value {
  text-align: left;
  color: #111;
}

.reservation-form input:focus,
.reservation-form select:focus {
  border-color: #d4a13a;
  box-shadow: 0 0 0 4px rgba(212,161,58,.12);
}

.reservation-form button {
  width: 100%;
  max-width: 100%;
  min-height: 62px;
  height: auto;
  padding: 16px 20px;
  border: none;
  border-radius: 17px;
  background: linear-gradient(135deg, #d4a13a, #b98528);
  color: #fff;
  font-size: 15.5px;
  font-weight: 900;
  line-height: 1.25;
  white-space: normal;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(185,133,40,.24);
  transition: .25s;
}

.reservation-form button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid #eee;
  box-shadow: 0 22px 60px rgba(0,0,0,.09);
}

/* CONTACT DARK */
.contact {
  padding: 120px 0 0;
  background:
    radial-gradient(circle at top left, rgba(212,161,58,.12), transparent 35%),
    radial-gradient(circle at top right, rgba(212,161,58,.08), transparent 30%),
    #050505;
  position: relative;
  overflow: hidden;
}

.contact-head {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto 55px;
  text-align: center;
}

.contact-head .section-mini {
  color: #d4a13a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
}

.contact-head h2 {
  color: #fff;
  font-size: clamp(42px,5vw,72px);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -2px;
  font-weight: 900;
}

.contact-head p {
  color: rgba(255,255,255,.68);
  font-size: 18px;
  line-height: 1.8;
  max-width: 760px;
  margin: auto;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
  margin-bottom: 60px;
}

.contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 34px;
  padding: 42px 34px;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 70px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.05);
  transition: .35s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,161,58,.45);
}

.contact-card h3 {
  color: #d4a13a;
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 18px;
}

.contact-card p,
.contact-card a {
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
}

.full-map {
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
}

.full-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.1) contrast(1.02);
}

/* FOOTER */
.footer {
  background: #050505;
  color: #fff;
  padding: 72px 0 26px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-inner {
  width: min(1180px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr .7fr 1fr;
  gap: 70px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand img,
.footer img {
  width: 340px;
  height: auto;
  max-width: none;
  transform: scale(1.15);
  margin: 0 auto 42px;
  object-fit: contain;
  filter: brightness(1.15) drop-shadow(0 0 18px rgba(212,161,58,.12));
}

.footer-brand p {
  max-width: 430px;
  color: rgba(255,255,255,.68);
  font-size: 15.5px;
  line-height: 1.8;
}

.footer-col h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 18px;
}

.footer-col a,
.footer-col p {
  display: block;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.9;
}

.footer-col a:hover {
  color: #d4a13a;
}

.footer-bottom {
  width: min(1180px, 92%);
  margin: 46px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255,255,255,.52);
  font-size: 13.5px;
}

.footer-bottom a {
  color: #d4a13a;
  font-weight: 800;
}

.fixed-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  background: #25d366;
  color: #111;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(0,0,0,.22);
}

/* TABLET */
@media (max-width: 980px) {
  .nav-wrapper {
    height: 104px;
  }

  .logo img {
    height: 150px;
    top: 6px;
    left: -6px;
  }

  .nav {
    position: fixed;
    top: 104px;
    left: 0;
    transform: none;
    width: 100%;
    background: rgba(7,7,7,.96);
    border-bottom: 1px solid rgba(255,255,255,.08);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 5%;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .header-actions {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .reservation-grid,
  .contact-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-head {
    text-align: left;
    margin-bottom: 35px;
  }

  .contact-head h2 {
    font-size: 48px;
  }

  .contact-card {
    text-align: left;
    padding: 30px 26px;
    border-radius: 28px;
  }

  .contact-card h3 {
    font-size: 24px;
  }

  .contact-card p,
  .contact-card a {
    font-size: 16px;
  }

  .full-map {
    height: 380px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .container {
    width: 88%;
  }

  .nav-wrapper {
    height: 96px;
    width: 92%;
  }

  .logo img {
    height: 145px;
    top: 7px;
    left: -10px;
  }

  .nav {
    top: 96px;
  }

  .mobile-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 14px;
    padding: 11px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d3a34b, #946218);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(0,0,0,.28);
  }

  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 30px;
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(214,160,67,.28);
  }

  .hero {
    min-height: 92svh;
    align-items: flex-start;
  }

  .hero-content {
    padding-top: 125px;
    padding-bottom: 95px;
  }

  .hero-content h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    height: 50px;
    border-radius: 15px;
  }

  .hero-marquee-track {
    gap: 16px;
    padding: 10px 0;
  }

  .hero-marquee span {
    font-size: 10px;
  }

  .services,
  .gallery,
  .premium-services {
    padding: 70px 0;
  }

  .work-slider {
    padding-top: 28px;
    padding-bottom: 6px;
  }

  .work-head {
    text-align: left;
    margin-bottom: 16px;
  }

  .work-track {
    gap: 14px;
    animation-duration: 30s;
  }

  .work-track img {
    width: 260px;
    height: 350px;
    border-radius: 22px;
  }

  .work-marquee::before,
  .work-marquee::after {
    width: 45px;
  }

  .paymarq {
    padding: 6px 0 14px;
  }

  .paymarq::before,
  .paymarq::after {
    width: 45px;
  }

  .paymarq__track {
    gap: 12px;
    animation-duration: 24s;
  }

  .paymarq__track img {
    width: 72px;
    height: 46px;
    padding: 6px 10px;
    border-radius: 10px;
  }

  .service-grid,
  .premium-service-grid {
    grid-template-columns: 1fr;
  }

  .premium-service-card img {
    height: 260px;
  }

  .service-body {
    padding: 22px;
  }

  .reservation {
    padding: 75px 0;
  }

  .reservation-info,
  .reservation-form {
    padding: 30px 22px;
    border-radius: 28px;
  }

  .reservation-info h2 {
    font-size: 32px;
  }

  .reservation-highlights {
    grid-template-columns: 1fr;
  }

  .form-title h3 {
    font-size: 24px;
  }

  .reservation-date-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .reservation-form input,
  .reservation-form select {
    height: 58px;
    min-height: 58px;
    font-size: 15px;
    padding: 0 16px;
  }

  .reservation-form input[type="date"],
  .reservation-form input[type="time"] {
    height: 58px;
    min-height: 58px;
    padding: 0 16px;
    color: #111;
    background: #fff;
    appearance: auto;
    -webkit-appearance: auto;
  }

  .reservation-form button {
    min-height: 58px;
    font-size: 14px;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .gallery-grid img {
    height: 280px;
  }

  .contact {
    padding: 75px 0 0;
  }

  .contact-head h2 {
    font-size: 42px;
  }

  .footer {
    padding: 58px 0 24px;
  }

  .footer-brand img,
  .footer img {
    width: 260px;
    transform: scale(1.08);
    margin-bottom: 30px;
  }

  .footer-bottom {
    margin-top: 34px;
    flex-direction: column;
  }

  .fixed-whatsapp {
    display: none;
  }
}

@media (max-width: 390px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .logo img {
    height: 132px;
    left: -12px;
  }

  .mobile-call-btn {
    padding: 10px 15px;
    font-size: 12px;
    margin-right: 10px;
  }

  .menu-btn {
    width: 42px;
    height: 42px;
  }
}
/* === iPHONE DATE / TIME KESİN ÇÖZÜM === */

.reservation-date-row {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
  width: 100% !important;
}

.reservation-date-row .field {
  width: 100% !important;
  min-width: 0 !important;
}

.reservation-form input[type="date"],
.reservation-form input[type="time"] {
  width: 100% !important;
  max-width: 100% !important;
  height: 62px !important;
  min-height: 62px !important;

  padding: 0 18px !important;

  border: 1px solid #dedede !important;
  border-radius: 22px !important;

  background-color: #ffffff !important;
  color: #111111 !important;

  font-size: 16px !important;
  font-weight: 500 !important;

  line-height: 62px !important;

  display: block !important;

  -webkit-appearance: none !important;
  appearance: none !important;

  position: relative !important;
  text-align: left !important;
}

/* iPhone Safari iç yazı görünürlük fix */
.reservation-form input[type="date"]::-webkit-date-and-time-value,
.reservation-form input[type="time"]::-webkit-date-and-time-value {
  color: #111111 !important;
  text-align: left !important;
  opacity: 1 !important;
}

/* Placeholder / boş alan rengi */
.reservation-form input[type="date"]::-webkit-datetime-edit,
.reservation-form input[type="time"]::-webkit-datetime-edit {
  color: #111111 !important;
  opacity: 1 !important;
}

/* İç alanların kaymasını engelle */
.reservation-form input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.reservation-form input[type="time"]::-webkit-datetime-edit-fields-wrapper {
  padding: 0 !important;
}

/* Mobilde taşma engeli */
@media (max-width: 768px) {
  .reservation-form {
    overflow: hidden !important;
  }

  .reservation-form input,
  .reservation-form select,
  .reservation-form button {
    width: 100% !important;
    max-width: 100% !important;
  }

  .reservation-form input[type="date"],
  .reservation-form input[type="time"] {
    height: 62px !important;
    min-height: 62px !important;
    border-radius: 22px !important;
  }
}