/* =============================================
   MAISON INTERIOR STUDIO – MAIN STYLESHEET
   ============================================= */

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

:root {
  --bg-dark: #0d0d0d;
  --bg-section: #111111;
  --bg-card: #1a1a1a;
  --green: #1a5c3a;
  --green-light: #2a7a50;
  --gold: #c9a96e;
  --gold-light: #dfc08a;
  --white: #ffffff;
  --grey: #aaaaaa;
  --grey-light: #cccccc;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  background: var(--bg-dark);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Luxury Scrollbar to match theme */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
  border: 2px solid #0d0d0d;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* =============================================
   NAVBAR
   ============================================= */
.nav-container {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
  padding: 0 1rem;
  pointer-events: none;
}

.navbar {
  pointer-events: auto;
  width: 100%;
  max-width: 1100px;
  background: rgba(13, 13, 13, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 0.25rem 1rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  max-width: 1000px;
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(201, 169, 110, 0.15);
}

.nav-inner {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.logo-dhi {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.18em;
}

.logo-sub {
  font-size: 0.48rem;
  letter-spacing: 0.35em;
  color: var(--grey);
  margin-top: 1px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(201, 169, 110, 0.12);
}

/* Nav buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.btn-signup {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 30px;
  background: transparent;
  transition: var(--transition);
}

.btn-signup:hover {
  background: rgba(201, 169, 110, 0.12);
  border-color: var(--gold);
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--white);
  padding: 0.5rem 1.1rem;
  border-radius: 30px;
  background: var(--green);
  transition: var(--transition);
}

.btn-login:hover {
  background: var(--green-light);
}

.btn-booking-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-booking-icon svg {
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hamburger → X when open */
.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(13, 13, 13, 1) 0%,
      rgba(13, 13, 13, 0.6) 30%,
      rgba(13, 13, 13, 0.2) 70%,
      rgba(13, 13, 13, 0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  max-width: 780px;
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-scroll-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  animation: bounce 2s infinite;
}

.hero-scroll-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  background: var(--bg-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Top gradient fade – mirrors the hero image blending down into dark */
.about-top-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 240px;
  background: linear-gradient(to bottom,
      rgba(13, 13, 13, 1) 0%,
      rgba(13, 13, 13, 0.5) 40%,
      rgba(13, 13, 13, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Section line art backgrounds */
.section-lineart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.section-lineart svg {
  width: 100%;
  height: 100%;
  opacity: 1;
}

/* Ensure content sits above line art */
.about-inner,
.portfolio-inner,
.services-inner,
.how-inner,
.booking-inner-grid,
.footer-inner,
.footer-bottom {
  position: relative;
  z-index: 2;
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

/* Section label */
.section-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.about-left {}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.about-desc {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
  margin-bottom: 2rem;
}

.stat-item {}

.stat-num {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 4px;
  display: block;
}

/* Contact button */
.btn-contact {
  display: inline-block;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--white);
  background: var(--green);
  padding: 0.65rem 1.6rem;
  border-radius: 6px;
  letter-spacing: 0.04em;
  transition: var(--transition);
}

.btn-contact:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

/* Right image grid */
.about-right {
  position: relative;
}

.img-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 10px;
  height: 470px;
}

.img-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #1a1a1a;
  transition: var(--transition);
}

.img-card:hover img {
  transform: scale(1.06);
}

.img-card img {
  transition: transform 0.5s ease;
  height: 100%;
}

/* Layout */
.img-card:nth-child(1) {
  grid-row: 1/3;
}

.img-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.img-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.img-card:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.img-card:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

/* About section lineart – anchored to bottom like the reference image */

.about-lineart-bg {
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: none;
}

.about-lineart-bg svg {
  position: absolute;
  bottom: -45px;
  left: -30px;
  width: 100%;
  height: auto;
}

/* Scroll badge – transparent blur background */
.scroll-badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 13, 13, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.12);
}

.scroll-circle {
  width: 80px;
  height: 80px;
  animation: spin 10s linear infinite;
  position: absolute;
}

.scroll-arrow {
  position: relative;
  z-index: 2;
  font-size: 1rem;
  color: var(--gold);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* =============================================
   PORTFOLIO BENTO GALLERY
   ============================================= */
.portfolio-section {
  background: var(--bg-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.portfolio-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.portfolio-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.portfolio-subtitle {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 3rem;
  max-width: 600px;
}

.bento-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 15px;
}

.bento-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.bento-item:hover img {
  transform: scale(1.05);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.2) 60%,
      transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bento-item:hover .bento-overlay {
  opacity: 1;
}

.bento-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.bento-overlay p {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Bento grid configuration */
.item-1 {
  grid-column: span 2;
  grid-row: span 2;
}

.item-2 {
  grid-column: span 2;
  grid-row: span 1;
}

.item-3 {
  grid-column: span 1;
  grid-row: span 1;
}

.item-4 {
  grid-column: span 1;
  grid-row: span 2;
}

.item-5 {
  grid-column: span 2;
  grid-row: span 1;
}

.item-6 {
  grid-column: span 1;
  grid-row: span 1;
}

@media (max-width: 900px) {
  .bento-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .item-1 {
    grid-column: span 2;
    grid-row: span 2;
  }

  .item-2 {
    grid-column: span 1;
  }

  .item-3 {
    grid-column: span 1;
  }

  .item-4 {
    grid-column: span 2;
    grid-row: span 1;
  }

  .item-5 {
    grid-column: span 2;
  }

  .item-6 {
    grid-column: span 2;
  }
}

/* =============================================
   SERVICES SECTION (BENTO-STYLE)
   ============================================= */
.services-section {
  background: var(--bg-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.services-subtitle {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 3rem;
  max-width: 600px;
}

.services-bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.03);
}

.main-card {
  position: relative;
  height: 520px;
  display: block;
  background: transparent;
}

.service-img-wrapper {
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: hidden;
}

.service-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 2;
}

.service-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.service-info h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.service-info p {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link-btn {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: var(--transition);
  align-self: flex-start;
}

.service-link-btn:hover {
  color: var(--white);
  transform: translateX(4px);
}

/* Services Right Grid */
.services-right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 260px;
  gap: 20px;
}

.mini-card {
  position: relative;
}

.mini-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

/* SVG icons in mini cards */
.mini-icon svg,
.bottom-icon svg,
.call-icon svg {
  display: block;
}

.mini-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.mini-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.bottom-icon {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.bottom-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.mini-card-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.mini-card-overlay p {
  font-size: 0.75rem;
  color: var(--grey);
}

.landscape-card {
  grid-column: span 2;
  position: relative;
}

.landscape-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.landscape-card-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.landscape-card-overlay p {
  font-size: 0.8rem;
  color: var(--grey);
  max-width: 480px;
}

/* Bottom Grid */
.services-bottom-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.bottom-card {
  position: relative;
  height: 240px;
}

.bottom-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: background 0.3s ease;
}

.bottom-card:hover .bottom-card-overlay {
  background: rgba(0, 0, 0, 0.55);
}

.bottom-icon {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.bottom-card-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.bottom-card-overlay p {
  font-size: 0.72rem;
  color: var(--grey);
  line-height: 1.4;
}

/* =============================================
   BOOKING SECTION (WHATSAPP ONLY)
   ============================================= */

.booking-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.booking-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  color: var(--white);
  grid-column: 1 / -1;
}

.booking-section {
  background: var(--bg-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.booking-inner-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto;
  gap: 40px;
}

.booking-form-card {
  background: #151515;
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--grey);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #202020;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option {
  background: #202020;
}

.btn-whatsapp-submit {
  width: 100%;
  background: #225a47;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 1rem;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 0.85rem;
  margin-top: 1rem;
}

.btn-whatsapp-submit:hover {
  background: #2e7a60;
  transform: translateY(-2px);
}

.booking-info-col {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-box {
  background: #151515;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.info-box h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.25rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon.text-green {
  color: #25d366;
}

.info-item small {
  display: block;
  font-size: 0.65rem;
  color: var(--grey);
  letter-spacing: 0.05em;
}

.info-item a {
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.info-item a:hover {
  color: var(--gold);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 0.75rem;
}

.hours-row:last-child {
  margin-bottom: 0;
}

.hours-row span:first-child {
  font-weight: 500;
}

.call-now {
  background: #1c1813;
  border: 1px solid rgba(201, 169, 110, 0.15);
}

.call-now-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}

.call-now-header h4 {
  margin-bottom: 0;
}

.call-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

.call-now p {
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 1.25rem;
}

.btn-call-consultant {
  display: block;
  text-align: center;
  background: #9b7845;
  color: var(--white);
  font-weight: 600;
  padding: 0.85rem;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 0.85rem;
}

.btn-call-consultant:hover {
  background: #b28a52;
}

/* =============================================
   MAP SECTION
   ============================================= */
.map-section {
  background: var(--bg-dark);
  width: 90%;
  margin: 0 auto 50px auto;
  overflow: hidden;
  border-radius: 24px;
  padding-bottom: 0;

}

.map-section iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 24px;
}

.map-container {
  width: 100%;
}

@media (max-width: 992px) {
  .comparison-grid-matching {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .img-compare-container {
    height: 420px;
  }

  .booking-inner-grid {
    grid-template-columns: 1fr;
  }

  .booking-form-card {
    padding: 2rem;
  }
}

@media (max-width: 540px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-section {
  background: var(--bg-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.how-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.how-left {
  position: relative;
}

.how-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.how-badge {
  bottom: 30px;
  right: -20px;
  position: absolute;
  z-index: 5;
}

.how-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 2.5rem;
}

/* New Steps Grid Layout */
.steps-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.5rem;
  margin-bottom: 2.5rem;
}

.step-card {
  position: relative;
  padding-top: 1.5rem;
}

.step-num-badge {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  display: inline-block;
  padding-bottom: 2px;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}

.step-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.step-card-desc {
  font-size: 0.78rem;
  color: var(--grey);
  line-height: 1.6;
}

/* =============================================
   GALLERY / SLIDER
   ============================================= */
.gallery-section {
  position: relative;
  background: var(--bg-dark);
  width: 90%;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;

}

.gallery-slider {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.gallery-track {
  height: 100%;
  position: relative;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.gallery-slide.active {
  opacity: 1;
  z-index: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Prev / Next */
.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-prev {
  left: 20px;
}

.gallery-next {
  right: 20px;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: var(--green);
  border-color: var(--green);
}

/* Gallery tabs */
.gallery-tabs {
  display: flex;
  align-items: center;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow-x: auto;
}

.gallery-tab {
  flex: 1;
  min-width: 120px;
  padding: 0.9rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.gallery-tab:hover {
  color: var(--white);
}

.gallery-tab.active {
  color: var(--white);
  border-bottom-color: var(--gold);
}

.gallery-tab.active-count {
  color: var(--white);
  border-bottom-color: var(--gold);
}

.tab-count {
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 10px;
}

.gallery-tab.coming-soon {
  opacity: 0.45;
  pointer-events: none;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #090909;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 50px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.4fr;
  gap: 3rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.75;
  max-width: 220px;
}

.footer-heading {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-list a {
  font-size: 0.8rem;
  color: var(--grey);
  transition: var(--transition);
}

.footer-list a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-newsletter-text {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  outline: none;
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  color: var(--white);
  font-family: var(--font-sans);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-form button {
  background: var(--green);
  color: var(--white);
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--green-light);
}

/* Footer bottom */
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--grey);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: var(--grey);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

/* =============================================
   ANIMATIONS / SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* =============================================
   LOADING SCREEN
   ============================================= */
.loader-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.loader-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  width: 90%;
}

.loader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeInDown 1s ease forwards 0.2s;
}

.loader-logo {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.28em;
  margin-left: 0.28em;
  line-height: 1.1;
}

.loader-sub {
  font-size: 0.78rem;
  letter-spacing: 0.45em;
  color: var(--grey);
  margin-top: 10px;
  margin-left: 0.45em;
}


.loader-progress-wrap {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1.2rem;
  position: relative;
}

.loader-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 20px;
  transition: width 0.4s cubic-bezier(0.1, 0.8, 0.2, 1);
}

.loader-tagline {
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.4s;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .how-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .how-img {
    height: 360px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .how-badge {
    right: 10px;
    bottom: 20px;
  }

  .scroll-badge {
    right: 10px;
  }

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

  .bottom-card {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 2rem 2rem 3rem;
    gap: 0.25rem;
    z-index: 998;
    overflow-y: auto;
    border-top: 1px solid rgba(201, 169, 110, 0.12);
  }

  .nav-links.open .nav-link {
    font-size: 1.1rem;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.04em;
  }

  .nav-links.open .nav-link:last-child {
    border-bottom: none;
  }

  .nav-links.open .nav-link.active,
  .nav-links.open .nav-link:hover {
    background: rgba(201, 169, 110, 0.08);
    color: var(--gold);
    border-radius: 8px;
    border-bottom-color: transparent;
  }

  .hamburger {
    display: flex;
  }

  .btn-signup {
    display: none;
  }

  /* Show WhatsApp book button on mobile as compact icon+text */
  .btn-login.btn-booking {
    display: inline-flex;
    font-size: 0.72rem;
    padding: 0.45rem 0.8rem;
    gap: 4px;
  }

  .btn-booking-icon {
    display: none;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .img-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px 150px;
    height: auto;
  }

  .img-card:nth-child(1) {
    grid-row: 1/3;
    grid-column: 1;
  }

  .img-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .img-card:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .img-card:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }

  .img-card:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }

  .gallery-slider {
    height: 300px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .scroll-badge {
    display: none;
  }

  .how-badge {
    display: none;
  }

  /* Services section mobile fix */
  .services-bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .main-card {
    height: 420px;
  }

  .services-right-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }

  .mini-card {
    height: 200px;
  }

  .landscape-card {
    height: 200px;
    grid-column: 1 / -1 !important;
  }

  .service-info {
    padding: 1.5rem;
  }

  .service-info h3 {
    font-size: 1.25rem;
  }

  /* Services bottom row — 2 columns on tablet */
  .services-bottom-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .bottom-card {
    height: 200px;
  }

  /* Section padding */
  .about-section,
  .portfolio-section,
  .services-section,
  .how-section,
  .booking-section {
    padding: 70px 0;
  }

  /* Booking grid stacks on tablet */
  .booking-inner-grid {
    grid-template-columns: 1fr;
  }

  .booking-form-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {

  .about-inner,
  .portfolio-inner,
  .services-inner,
  .how-inner,
  .booking-inner-grid,
  .footer-inner {
    padding: 0 1rem;
  }

  /* Section padding on mobile */
  .about-section,
  .portfolio-section,
  .services-section,
  .how-section,
  .booking-section {
    padding: 50px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .gallery-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .gallery-tabs::-webkit-scrollbar {
    display: none;
  }

  /* Services extra small fix */
  .main-card {
    height: 320px;
  }

  .services-right-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .mini-card {
    height: 160px;
  }

  .landscape-card {
    grid-column: 1 / -1 !important;
    height: 180px;
  }

  /* Services bottom row — 2 columns on small mobile */
  .services-bottom-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .bottom-card {
    height: 170px;
  }

  .bottom-card-overlay h4 {
    font-size: 0.85rem;
  }

  .bottom-card-overlay p {
    font-size: 0.65rem;
  }

  /* Hero */
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-desc {
    font-size: 0.82rem;
  }

  /* Bento gallery – single column on tiny screens */
  .bento-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .item-1,
  .item-2,
  .item-3,
  .item-4,
  .item-5,
  .item-6 {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  /* Steps grid */
  .steps-grid-new {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-form-card {
    padding: 1.5rem;
  }

  /* Img grid */
  .img-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 140px 140px 140px;
    height: auto;
  }

  /* How section */
  .how-img {
    height: 260px;
  }

  /* Navbar */
  .nav-container {
    top: 12px;
  }

  .nav-inner {
    height: 48px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  /* Map */
  .map-section {
    width: 95%;
  }

  .map-section iframe {
    height: 280px;
  }

  /* Gallery slider */
  .gallery-section {
    width: 95%;
  }

  .gallery-slider {
    height: 240px;
  }
}