/* ─── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #c59b6d;
  --gold-light: #e6c9a8;
  --gold-pale: rgba(197,155,109,0.12);
  --dark: #1a1a1a;
  --text: #3a3a3a;
  --muted: #777;
  --bg: #fcf8f3;
  --white: #ffffff;
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow-sm: 0 8px 24px rgba(0,0,0,0.04);
  --shadow-md: 0 20px 40px rgba(0,0,0,0.06);
  --shadow-gold: 0 20px 40px -10px rgba(197,155,109,0.25);
  --transition: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: auto; /* JS handles smooth scroll */ scroll-padding-top: 80px; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── Keyframe animations ─────────────────────────── */
@keyframes fadeUp      { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn      { from { opacity:0; } to { opacity:1; } }
@keyframes floatY      { 0%,100% { transform:translateY(0px) rotate(2deg); } 50% { transform:translateY(-14px) rotate(2deg); } }
@keyframes shimmer     { 0%,100% { background-position:200% center; } 50% { background-position: -200% center; } }
@keyframes pulseGold   { 0%,100% { box-shadow:0 0 0 0 rgba(197,155,109,0.35); } 60% { box-shadow:0 0 0 14px rgba(197,155,109,0); } }
@keyframes slideInLeft  { from { opacity:0; transform:translateX(-50px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideInRight { from { opacity:0; transform:translateX(50px);  } to { opacity:1; transform:translateX(0); } }
@keyframes scaleIn     { from { opacity:0; transform:scale(0.85); } to { opacity:1; transform:scale(1); } }
@keyframes countUp     { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }

/* ─── Section entry ───────────────────────────────── */
section {
  padding: 7rem 0;
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1s var(--transition), transform 1s var(--transition);
}
section.visible { opacity: 1; transform: translateY(0); }

/* Hero is always visible */
.hero { opacity: 1 !important; transform: none !important; }

/* ─── Hero text stagger ───────────────────────────── */
.hero-text h1 { animation: fadeUp 0.9s var(--transition) 0.15s both; }
.hero-text p  { animation: fadeUp 0.9s var(--transition) 0.32s both; }
.hero-text .btn { animation: fadeUp 0.9s var(--transition) 0.48s both; }
.hero-stats    { animation: fadeUp 0.9s var(--transition) 0.62s both; }
.hero-image    { animation: slideInRight 1s var(--transition) 0.3s both; }

/* Hero image floating */
.hero-image .img-wrapper { animation: floatY 6s ease-in-out infinite; }

/* ─── Stat counter pulse ─────────────────────────── */

/* ─── About grid directional slide ───────────────── */
.about-media  { opacity:0; transform:translateX(-40px); transition: opacity 0.9s var(--transition) 0.1s, transform 0.9s var(--transition) 0.1s; }
.about-content { opacity:0; transform:translateX(40px);  transition: opacity 0.9s var(--transition) 0.25s, transform 0.9s var(--transition) 0.25s; }
section.visible .about-media,
section.visible .about-content { opacity:1; transform:translateX(0); }

/* ─── Service cards stagger ──────────────────────── */
.service-card {
  opacity:0; transform:translateY(36px) scale(0.97);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.45s var(--transition), border-color 0.45s;
}
.service-card.revealed { opacity:1; transform:translateY(0) scale(1); }

/* ─── Gallery items pop ───────────────────────────── */
.gallery-item {
  opacity:0; transform:scale(0.92);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.gallery-item.revealed { opacity:1; transform:scale(1); }
.gallery-item img { transition: transform 0.7s var(--transition); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content:'';
  position:absolute; inset:0;
  background: rgba(197,155,109,0);
  transition: background 0.4s;
}
.gallery-item:hover::after { background: rgba(197,155,109,0.08); }

/* ─── FAQ stagger ─────────────────────────────────── */
.faq-item {
  opacity:0; transform:translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.35s, border-color 0.35s, transform 0.35s var(--transition);
}
.faq-item.revealed { opacity:1; transform:translateY(0); }

/* ─── Section title underline draw ───────────────── */
.section-title h2::after {
  content:''; display:block;
  width:0; height:2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0.6rem auto 0;
  transition: width 1.2s var(--transition);
  border-radius: 2px;
}
section.visible .section-title h2::after { width: 80px; }

/* ─── Logo ───────────────────────────────────────── */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 700;
  color: var(--dark); letter-spacing: -0.01em;
}

/* ─── Base typography & layout ───────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }
.container-full { width: 100%; padding: 0; }


.section-title { text-align: center; margin-bottom: 4rem; }
.section-title h5 {
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--gold);
  font-weight: 400;
  font-size: 0.82rem;
  margin-bottom: 0.8rem;
  font-family: 'Poppins', sans-serif;
}
.section-title h2 { font-size: 3.2rem; color: var(--dark); line-height: 1.2; }

/* ─── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--gold);
  color: white;
  padding: 0.95rem 2.6rem;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.4s var(--transition);
  border: 1.5px solid var(--gold);
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  letter-spacing: 0.02em;
}
.btn:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -12px rgba(197,155,109,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  box-shadow: none;
}
.btn-outline:hover { background: var(--gold); color: white; }

/* ─── Scroll Progress ─────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 1001;
  transition: width 0.08s linear;
}

/* ─── Back to Top ─────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 52px; height: 52px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: all 0.4s var(--transition);
  z-index: 998;
  border: none;
  box-shadow: var(--shadow-gold);
  font-size: 1rem;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); }

/* ─── Photo Popup ─────────────────────────────────── */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 8, 6, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.22,1,0.36,1),
              visibility 0.35s;
}
.popup-overlay.active { opacity: 1; visibility: visible; }

.popup-box {
  background: #1a1714;
  border-radius: 20px;
  width: min(92vw, 900px);
  max-height: 92vh;
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 40px 80px rgba(0,0,0,0.7),
    0 8px 24px rgba(0,0,0,0.4);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
              opacity 0.35s ease;
  opacity: 0;
}
.popup-overlay.active .popup-box {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Header */
.popup-header {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.popup-counter {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}
.popup-actions { display: flex; gap: 0.35rem; }
.popup-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; outline: none;
}
.popup-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  transform: scale(1.08);
}
.popup-close-btn:hover { background: #e05252; border-color: #e05252; }
.popup-btn[data-dim] { opacity: 0.25; pointer-events: none; }

/* Image area */
.popup-img-area {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 0;
  background: #111;
  display: flex; align-items: center; justify-content: center;
}
#popupImage {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  display: block;
  transform-origin: center center;
  transition: opacity 0.2s ease, transform 0.2s ease;
  user-select: none;
  -webkit-user-drag: none;
  cursor: zoom-in;
  will-change: transform;
}
.popup-overlay.zoomed #popupImage { cursor: grab; }
.popup-overlay.grabbing #popupImage { cursor: grabbing !important; }

/* Prev / Next inside the image area */
.popup-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: white; font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s cubic-bezier(0.22,1,0.36,1);
  outline: none; z-index: 5;
}
.popup-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}
.popup-nav-prev { left: 14px; }
.popup-nav-next { right: 14px; }

/* Footer */
.popup-footer {
  padding: 0.65rem 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
  flex-shrink: 0;
}
.popup-footer span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.03em;
}
.popup-footer i { color: rgba(197,155,109,0.5); }

/* Gallery cursor hint */
.gallery-item img { cursor: zoom-in !important; }

@media (max-width: 600px) {
  .popup-box { width: 98vw; border-radius: 14px; }
  .popup-footer { display: none; }
  .popup-nav { width: 36px; height: 36px; font-size: 0.9rem; }
  .popup-nav-prev { left: 8px; }
  .popup-nav-next { right: 8px; }
}



/* ─── Navbar ──────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  padding: 1.1rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(252,248,243,0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  transition: padding 0.4s var(--transition), background 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid rgba(197,155,109,0.12);
}
.navbar.scrolled {
  background: rgba(252,248,243,0.9);
  padding: 0.75rem 3rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 700;
  color: var(--dark); letter-spacing: -0.01em;
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links li a {
  text-decoration: none; color: var(--dark);
  font-weight: 500; font-size: 0.92rem;
  position: relative;
  transition: color 0.3s;
}
.nav-links li a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.35s var(--transition);
}
.nav-links li a:hover { color: var(--gold); }
.nav-links li a:hover::after { width: 100%; }
.nav-links li a.nav-active { color: var(--gold); }
.nav-links li a.nav-active::after { width: 100%; }
.nav-contact .btn {
  padding: 0.7rem 2rem; box-shadow: none;
  color: white !important; background: var(--gold);
}
.nav-contact .btn::after { display: none; }
.nav-contact .btn:hover { background: transparent; color: var(--gold) !important; }
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.hamburger span { width: 28px; height: 2px; background: var(--dark); transition: all 0.3s; border-radius: 2px; }
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 290px; height: 100vh;
  background: rgba(252,248,243,0.98);
  backdrop-filter: blur(24px);
  padding: 5rem 2.5rem;
  transition: right 0.45s var(--transition);
  z-index: 1000;
  display: flex; flex-direction: column; gap: 2rem;
}
.mobile-menu.active { right: 0; }
.mobile-menu a {
  text-decoration: none; color: var(--dark);
  font-size: 1.3rem; font-weight: 500;
  border-bottom: 1px solid rgba(197,155,109,0.2);
  padding-bottom: 0.8rem;
  transition: color 0.3s, padding-left 0.3s;
}
.mobile-menu a:hover { color: var(--gold); padding-left: 0.5rem; }
.close-menu { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 2rem; cursor: pointer; }

/* ─── Hero ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: radial-gradient(ellipse at 15% 30%, rgba(255,240,220,0.6) 0%, var(--bg) 70%);
  padding-top: 130px; overflow: hidden;
}
.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center; gap: 3rem;
}
.hero-text .badge {
  background: var(--gold-pale);
  padding: 0.5rem 1.5rem; border-radius: 40px;
  color: #9e7a56; font-weight: 500; letter-spacing: 2px;
  font-size: 0.85rem; margin-bottom: 1.8rem;
  border: 1px solid rgba(197,155,109,0.2);
  display: inline-block;
}
.hero-text h1 {
  font-size: 5rem; line-height: 1.12;
  margin-bottom: 1.6rem; color: var(--dark);
}
.hero-text h1 i { font-style: italic; font-weight: 400; color: var(--gold); }
.hero-text p { font-size: 1.15rem; color: var(--text); margin-bottom: 2.5rem; max-width: 88%; line-height: 1.75; }
.hero-stats { display: flex; gap: 3rem; margin-top: 2rem; }
.stat-item h3 {
  font-size: 2.2rem; color: var(--gold);
  font-family: 'Playfair Display', serif; margin-bottom: 0.3rem;
}
.stat-item p { color: var(--muted); font-size: 0.9rem; }
.hero-image { will-change: transform; }
.hero-image .img-wrapper {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  box-shadow: 32px 32px 56px rgba(0,0,0,0.06);
  transition: border-radius 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: rotate(2deg);
}
.hero-image:hover .img-wrapper {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  box-shadow: 40px 40px 64px rgba(197,155,109,0.18);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1.2; display: block; }

/* ─── About ───────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 40% 60%; gap: 4rem; align-items: center; }
.about-img-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 40px 40px 0 #f3ede7;
  border: 6px solid white; transform: rotate(-1.5deg);
  transition: transform 0.5s var(--transition);
}
.about-img-main:hover { transform: rotate(0deg); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; display: block; }
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: white; padding: 1.8rem 2.2rem;
  border-radius: var(--radius-lg);
  box-shadow: 20px 30px 48px rgba(0,0,0,0.07);
  border: 1px solid rgba(197,155,109,0.2);
}
.about-badge h4 { font-size: 2.2rem; color: var(--gold); margin-bottom: 0.2rem; }
.about-badge p { color: var(--muted); font-size: 0.85rem; }
.about-content h2 { font-size: 2.8rem; margin-bottom: 1.5rem; line-height: 1.3; }
.about-content h2 span { color: var(--gold); font-style: italic; }
.about-content p { color: var(--text); line-height: 1.8; margin-bottom: 1rem; }

/* ─── Services ────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.service-card {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(12px);
  padding: 2.8rem 2.2rem 2.2rem; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,0.6);
  transition: all 0.45s var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-14px);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 40px 56px -16px rgba(197,155,109,0.16);
  border-color: rgba(197,155,109,0.28);
}
.service-icon {
  font-size: 2.4rem; color: var(--gold);
  margin-bottom: 1.6rem;
  width: 62px; height: 62px;
  background: var(--gold-pale);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(197,155,109,0.22); }
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.8rem; line-height: 1.3; }
.service-card p { color: var(--muted); line-height: 1.75; font-size: 0.92rem; flex: 1; }
.service-tag {
  margin-top: 1.6rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.42rem 1rem;
  background: var(--gold-pale);
  border-radius: 40px;
  display: inline-block;
  align-self: flex-start;
}

/* ─── Portfolio / Gallery with Tabs ──────────────── */
.portfolio-section { padding: 7rem 0 5rem; }

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  padding: 0 2rem;
}
.tab-btn {
  padding: 0.65rem 1.8rem;
  border-radius: 60px;
  border: 1.5px solid rgba(197,155,109,0.35);
  background: transparent;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.35s var(--transition);
  letter-spacing: 0.02em;
}
.tab-btn:hover { border-color: var(--gold); color: var(--gold); }
.tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  box-shadow: 0 8px 24px -6px rgba(197,155,109,0.4);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition);
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(197,155,109,0);
  transition: background 0.4s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover::after { background: rgba(197,155,109,0.1); }

/* Gallery filter animation */
.gallery-item {
  transition: opacity 0.4s var(--transition), transform 0.4s var(--transition);
}
.gallery-item.hidden-filter {
  display: none;
}
.gallery-item.hidden-row { display: none; }
.gallery-item.popup-hidden { display: none !important; }
.gallery-item { cursor: zoom-in; }

.load-more-wrapper { text-align: center; margin-top: 3rem; }

/* ─── Testimonials ────────────────────────────────── */
.testimonials-carousel { position: relative; max-width: 1100px; margin: 0 auto; }
.testimonials-track-container { overflow: hidden; border-radius: 8px; }
.testimonials-track { display: flex; transition: transform 0.55s var(--transition); }
.testimonial-slide { min-width: 33.333%; padding: 0 1rem; box-sizing: border-box; }
.testimonial-card-new {
  background: white; padding: 2.5rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(197,155,109,0.1);
  height: 100%; transition: all 0.4s var(--transition);
}
.testimonial-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 48px rgba(197,155,109,0.1);
  border-color: rgba(197,155,109,0.3);
}
.testimonial-quote {
  font-size: 1.05rem; line-height: 1.85;
  color: var(--text); margin-bottom: 2rem;
  font-style: italic;
}
.testimonial-quote i { color: var(--gold); opacity: 0.35; margin-right: 8px; font-size: 1.2rem; }
.testimonial-author {
  display: flex; align-items: center; gap: 1rem;
  border-top: 1px solid #f0e8e0; padding-top: 1.5rem;
}
.author-avatar {
  width: 52px; height: 52px;
  background: #f3ede7; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 600; font-size: 1.3rem;
}
.author-info h4 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.author-info p { color: var(--muted); font-size: 0.85rem; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: white; border: none;
  width: 50px; height: 50px; border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  cursor: pointer; color: var(--gold); font-size: 1.1rem;
  z-index: 5; transition: all 0.3s var(--transition);
}
.carousel-btn:hover { background: var(--gold); color: white; transform: translateY(-50%) scale(1.05); }
.carousel-prev { left: -28px; }
.carousel-next { right: -28px; }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 2.5rem; }
.carousel-dot {
  width: 10px; height: 10px;
  background: #e0d6cc; border-radius: 10px;
  cursor: pointer; transition: all 0.3s var(--transition);
}
.carousel-dot.active { background: var(--gold); width: 28px; }

/* ─── Partner Marquee ─────────────────────────────── */
.partner-marquee { overflow: hidden; padding: 3rem 0; }
.marquee-wrapper {
  display: flex; width: max-content;
  animation: scrollMarquee 25s linear infinite;
}
.partner-logo {
  width: 170px; margin: 0 2.5rem;
  filter: grayscale(1); opacity: 0.6;
  transition: all 0.4s;
  font-family: 'Playfair Display', serif;
  font-weight: 600; color: var(--dark);
  font-size: 0.95rem;
  display: flex; align-items: center; gap: 10px;
}
.partner-logo:hover { filter: grayscale(0); opacity: 1; color: var(--gold); }
@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Contact / Split ─────────────────────────────── */
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  background: #fefcf9; padding: 3.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(197,155,109,0.1);
}
.form-group { margin-bottom: 1.6rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 1rem 1.6rem;
  border: 1.5px solid #e8ddd4;
  border-radius: 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  background: white;
  color: var(--dark);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group textarea {
  min-height: 130px;
  border-radius: 20px;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,155,109,0.1);
}
.contact-info-list { list-style: none; margin: 1.5rem 0; }
.contact-info-list li {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 1.1rem; color: var(--text); font-size: 0.95rem;
}
.contact-info-list i { width: 22px; color: var(--gold); font-size: 1.1rem; }
.star-rating { color: var(--gold); letter-spacing: 4px; margin: 1.2rem 0; }
.star-rating i { font-size: 1.05rem; }

/* ─── FAQ ─────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: white; border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f0e8e0;
  transition: box-shadow 0.35s, border-color 0.35s, transform 0.35s var(--transition);
  overflow: hidden;
}
.faq-item:hover { box-shadow: 0 16px 32px rgba(197,155,109,0.09); border-color: rgba(197,155,109,0.3); }
.faq-item.active { transform: scale(1.01); }
.faq-question {
  padding: 1.5rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; font-size: 1.05rem;
  user-select: none;
}
.faq-question i {
  color: var(--gold);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 1.1rem; flex-shrink: 0;
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  padding: 0 2rem;
}
.faq-answer p { padding-bottom: 1.8rem; color: #555; line-height: 1.75; }
.faq-item.active .faq-answer { max-height: 320px; }
.faq-item.active .faq-question i { transform: rotate(45deg); }

/* ─── Footer ──────────────────────────────────────── */
footer { background: #111; color: #ccc; padding: 5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-brand h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem; color: white; margin-bottom: 1rem;
}
.footer-brand p { color: #aaa; line-height: 1.7; font-size: 0.9rem; }
.footer-links h4, .footer-contact h4 { color: white; margin-bottom: 1.5rem; font-size: 1.1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.9rem; }
.footer-links a { color: #aaa; text-decoration: none; font-size: 0.9rem; transition: all 0.3s; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact p { margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.footer-contact i { width: 18px; color: var(--gold); }
.copyright {
  text-align: center; padding-top: 3rem; margin-top: 2rem;
  border-top: 1px solid #2a2a2a; color: #555; font-size: 0.85rem;
}

/* ─── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-text h1 { font-size: 3.8rem; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .testimonial-slide { min-width: 50%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content, .about-grid, .split-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 2.8rem; }
  .hero-text p { max-width: 100%; }
  .services-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-slide { min-width: 100%; }
  .carousel-btn { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-title h2 { font-size: 2.4rem; }
  .split-grid { padding: 2rem; gap: 2.5rem; }
}

@media (max-width: 480px) {
  .services-grid, .gallery-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 2.2rem; }
  .gallery-tabs { gap: 0.4rem; }
  .tab-btn { padding: 0.55rem 1.2rem; font-size: 0.82rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
