@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Cinzel:wght@400;600;700&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9B7D35;
  --deep-red: #8B1A2D;
  --maroon: #5C0F1E;
  --cream: #FDF6EC;
  --off-white: #FAF3E8;
  --charcoal: #1A1410;
  --mid-gray: #4A3F38;
  --light-gray: #D4C8BE;
  --rose-blush: #F2D5D5;
  --bg-dark: #0F0A08;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cinzel', serif;
  --font-body: 'Jost', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--cream);
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── NAVIGATION ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 4%;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  background: linear-gradient(180deg, rgba(10,6,4,0.98) 0%, rgba(10,6,4,0.0) 100%);
  transition: background 0.4s ease, height 0.3s ease;
}

nav.scrolled {
  background: rgba(10,6,4,0.97);
  height: 65px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  backdrop-filter: blur(10px);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--charcoal);
  animation: pulse-logo 3s infinite;
}
@keyframes pulse-logo {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text span:first-child {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--gold); letter-spacing: 2px;
}
.nav-logo-text span:last-child {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 300;
  color: var(--light-gray); letter-spacing: 4px;
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 500;
  color: var(--light-gray);
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 8px 18px;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1px; background: var(--gold);
  transition: left 0.3s, right 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { left: 18px; right: 18px; }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 10px 24px !important;
  transition: background 0.3s, color 0.3s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--charcoal) !important; }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 1.5px; background: var(--gold); transition: 0.3s; display: block; }

/* ─── DROPDOWN NAVIGATION ─── */
.nav-links li { position: relative; }

.has-dropdown > a::before {
  content: '▾';
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 9px; color: var(--gold); opacity: 0.7;
  transition: transform 0.3s;
}
.has-dropdown:hover > a::before { transform: translateY(-50%) rotate(180deg); }

.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: rgba(10,6,4,0.98);
  border: 1px solid rgba(201,168,76,0.2);
  border-top: 2px solid var(--gold);
  min-width: 210px;
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 200;
  backdrop-filter: blur(12px);
  list-style: none;
}
.has-dropdown:hover .dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown li { border-bottom: 1px solid rgba(201,168,76,0.08); }
.dropdown li:last-child { border-bottom: none; }
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px !important;
  font-size: 11px !important;
  letter-spacing: 1.5px !important;
  color: rgba(212,200,190,0.75) !important;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s, padding-left 0.2s !important;
}
.dropdown a::after { display: none !important; }
.dropdown a:hover {
  color: var(--gold) !important;
  background: rgba(201,168,76,0.07);
  padding-left: 26px !important;
}
.dropdown a .dd-icon { font-size: 14px; flex-shrink: 0; }

/* Mobile dropdown */
@media (max-width: 768px) {
  .dropdown {
    position: static; transform: none !important;
    border: none; border-top: none;
    border-left: 2px solid rgba(201,168,76,0.3);
    background: rgba(201,168,76,0.04);
    opacity: 1; pointer-events: all;
    display: none; min-width: 0;
    backdrop-filter: none;
  }
  .has-dropdown.mob-open .dropdown { display: block; }
  .dropdown a { padding: 12px 24px !important; }
  .has-dropdown > a::before { right: 0; }
}

/* ─── HERO SECTION ─── */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,6,4,0.85) 0%, rgba(92,15,30,0.4) 50%, rgba(10,6,4,0.7) 100%);
}

.hero-slide-1 { background-image: url('../images/hero-bg.jpg'); }
.hero-slide-2 { background-image: url('../images/gallery1.jpg'); }
.hero-slide-3 { background-image: url('../images/gallery3.jpg'); }
.hero-slide-4 { background-image: url('../images/gallery7.jpg'); }

.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
  padding: 0 6%;
  animation: hero-fade-in 1.5s ease forwards;
}
@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 6px 18px; margin-bottom: 30px;
  font-size: 10px; letter-spacing: 4px;
  color: var(--gold-light); text-transform: uppercase;
  background: rgba(201,168,76,0.08);
  animation: hero-fade-in 1.5s 0.2s both;
}
.hero-badge .stars { color: var(--gold); font-size: 12px; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1; color: var(--cream);
  margin-bottom: 8px;
  animation: hero-fade-in 1.5s 0.4s both;
}
.hero-title span { color: var(--gold); }

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic; color: var(--light-gray);
  margin-bottom: 28px;
  animation: hero-fade-in 1.5s 0.6s both;
}

.hero-desc {
  font-size: 14px; line-height: 1.8;
  color: rgba(212,200,190,0.8);
  max-width: 500px; margin-bottom: 40px;
  font-weight: 300; letter-spacing: 0.5px;
  animation: hero-fade-in 1.5s 0.8s both;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: hero-fade-in 1.5s 1s both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--charcoal); border: none;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(201,168,76,0.35); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  background: transparent;
  border: 1px solid rgba(212,200,190,0.5);
  color: var(--cream);
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  cursor: pointer; transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-slider-dots {
  position: absolute; bottom: 40px; left: 6%;
  z-index: 3; display: flex; gap: 10px; align-items: center;
}
.dot {
  width: 24px; height: 2px; background: rgba(201,168,76,0.3);
  cursor: pointer; transition: width 0.3s, background 0.3s;
}
.dot.active { width: 50px; background: var(--gold); }

.hero-scroll {
  position: absolute; bottom: 40px; right: 6%;
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 3px; color: var(--gold);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-bounce 2s infinite;
}
@keyframes scroll-bounce { 0%,100% { transform: scaleY(1); } 50% { transform: scaleY(0.5); } }

/* ─── SECTION COMMON ─── */
section { padding: 100px 6%; }

.section-tag {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 18px;
}
.section-tag span {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.section-tag::before, .section-tag::after {
  content: ''; flex: 0 0 40px; height: 1px; background: var(--gold);
}
.section-tag::before { display: none; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 58px);
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.1;
}
.section-title span { color: var(--gold); }

.section-sub {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--light-gray); font-style: italic;
  margin-bottom: 60px;
}

/* ─── MARQUEE ─── */
.marquee-section {
  padding: 22px 0;
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  overflow: hidden;
}
.marquee-track { display: flex; gap: 0; animation: marquee 25s linear infinite; white-space: nowrap; }
.marquee-item {
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: 4px;
  color: var(--charcoal); text-transform: uppercase;
  padding: 0 40px;
}
.marquee-item::after { content: '✦'; margin-left: 40px; opacity: 0.6; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── ABOUT STRIP ─── */
.about-strip {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #150D0A 100%);
  padding: 100px 6%;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-images { position: relative; height: 580px; }
.about-img-main {
  position: absolute; top: 0; left: 0;
  width: 75%; height: 80%;
  object-fit: cover;
  border: 3px solid rgba(201,168,76,0.25);
}
.about-img-accent {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 50%;
  object-fit: cover;
  border: 3px solid rgba(201,168,76,0.4);
  outline: 1px solid rgba(201,168,76,0.15); outline-offset: 10px;
}
.about-img-badge {
  position: absolute; top: 50%; left: 58%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 3px var(--bg-dark), 0 0 0 4px var(--gold);
}
.about-img-badge span:first-child {
  font-family: var(--font-display); font-size: 28px; color: var(--charcoal); font-weight: 700;
}
.about-img-badge span:last-child {
  font-size: 10px; color: var(--charcoal); letter-spacing: 1.5px; text-align: center;
}

.about-text p {
  font-size: 15px; line-height: 1.9; color: rgba(212,200,190,0.75);
  font-weight: 300; margin-bottom: 20px;
}

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.stat-item { padding: 24px; border: 1px solid rgba(201,168,76,0.2); }
.stat-num {
  font-family: var(--font-display); font-size: 40px; color: var(--gold);
  line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: 11px; letter-spacing: 2px; color: var(--light-gray); text-transform: uppercase; }

/* ─── SERVICES ─── */
.services-section { background: #100B09; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2px; }

.service-card {
  position: relative; padding: 50px 36px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.08);
  overflow: hidden; cursor: pointer;
  transition: background 0.4s;
  group: true;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { background: rgba(201,168,76,0.04); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .sc-num { color: rgba(201,168,76,0.15); }

.sc-num {
  font-family: var(--font-display); font-size: 72px;
  color: rgba(201,168,76,0.05);
  position: absolute; top: 10px; right: 20px;
  line-height: 1; transition: color 0.4s;
}
.sc-icon {
  font-size: 38px; margin-bottom: 20px;
  display: block;
}
.sc-title {
  font-family: var(--font-display); font-size: 18px;
  color: var(--cream); margin-bottom: 12px; letter-spacing: 1px;
}
.sc-desc { font-size: 13px; line-height: 1.8; color: rgba(212,200,190,0.6); font-weight: 300; }
.sc-items {
  margin-top: 20px; list-style: none;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.sc-items li {
  font-size: 11px; letter-spacing: 1.5px;
  color: var(--gold); background: rgba(201,168,76,0.08);
  padding: 4px 12px; text-transform: uppercase;
}

/* ─── GALLERY ─── */
.gallery-section { background: var(--bg-dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 4px;
}
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s;
  filter: saturate(0.85);
}
.gallery-item:hover img { transform: scale(1.07); filter: saturate(1.1); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,6,4,0.6) 100%);
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 1; }

.gallery-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-overlay span {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(201,168,76,0.9);
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal); font-size: 22px;
  transform: scale(0.7); transition: transform 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay span { transform: scale(1); }

/* ─── TESTIMONIALS ─── */
.testimonials { background: linear-gradient(180deg, #120D0A 0%, var(--bg-dark) 100%); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testi-card {
  padding: 40px 32px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.12);
  position: relative;
  transition: border-color 0.3s;
}
.testi-card:hover { border-color: rgba(201,168,76,0.35); }
.testi-card::before {
  content: '"'; font-family: var(--font-serif);
  font-size: 100px; line-height: 0.8;
  color: rgba(201,168,76,0.1);
  position: absolute; top: 20px; left: 24px;
}

.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 20px; }
.testi-text {
  font-family: var(--font-serif); font-size: 16px; font-style: italic;
  line-height: 1.8; color: rgba(212,200,190,0.85); margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--maroon));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; color: var(--cream);
}
.testi-name { font-size: 13px; font-weight: 600; color: var(--cream); letter-spacing: 1px; }
.testi-service { font-size: 11px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }

/* ─── CTA ─── */
.cta-section {
  background: linear-gradient(135deg, var(--maroon) 0%, #3D0E1A 50%, var(--bg-dark) 100%);
  text-align: center; padding: 120px 6%;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section .section-title { font-size: clamp(36px, 5vw, 70px); margin-bottom: 20px; }
.cta-section p { font-size: 15px; color: rgba(212,200,190,0.7); margin-bottom: 50px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ─── CONTACT ─── */
.contact-section { background: #0D0907; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info-list { list-style: none; margin-top: 40px; }
.contact-info-list li {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid rgba(201,168,76,0.1);
}
.ci-icon { font-size: 22px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.ci-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.ci-value { font-size: 14px; color: var(--cream); font-weight: 300; }
.ci-value a { color: var(--cream); text-decoration: none; transition: color 0.3s; }
.ci-value a:hover { color: var(--gold); }

.contact-form { background: rgba(255,255,255,0.025); padding: 50px 40px; border: 1px solid rgba(201,168,76,0.12); }
.form-title {
  font-family: var(--font-display); font-size: 24px; color: var(--cream);
  margin-bottom: 32px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 14px 18px; color: var(--cream);
  font-family: var(--font-body); font-size: 13px;
  outline: none; transition: border-color 0.3s;
  appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(212,200,190,0.3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--bg-dark); }
.form-group textarea { height: 110px; resize: vertical; }

/* ─── MAP ─── */
.map-section { padding: 0; height: 400px; }
.map-section iframe { width: 100%; height: 100%; border: 0; filter: grayscale(30%) invert(5%); }

/* ─── FOOTER ─── */
footer {
  background: #080503; padding: 70px 6% 30px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand-desc { font-size: 13px; color: rgba(212,200,190,0.72); line-height: 1.85; margin: 16px 0 24px; font-weight: 400; }

/* Social buttons — real brand colours + SVG icons */
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  width: 40px; height: 40px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  flex-shrink: 0; overflow: hidden; border: none;
}
.social-btn svg { width: 20px; height: 20px; fill: #fff; display: block; }
.social-btn:hover { transform: translateY(-3px); opacity: 0.85; }
.social-btn.sb-instagram { background: linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.social-btn.sb-facebook  { background: #1877F2; }
.social-btn.sb-youtube   { background: #FF0000; }
.social-btn.sb-whatsapp  { background: #25D366; }
/* Legacy plain .social-btn fallback colour */
.social-btn:not(.sb-instagram):not(.sb-facebook):not(.sb-youtube):not(.sb-whatsapp) {
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); font-size: 16px;
}

.footer-col-title {
  font-family: var(--font-display); font-size: 13px;
  color: var(--gold); letter-spacing: 2px; margin-bottom: 22px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  text-decoration: none; font-size: 13px; color: rgba(212,200,190,0.72);
  font-weight: 400; transition: color 0.3s; line-height: 1.6;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 30px; border-top: 1px solid rgba(201,168,76,0.1);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 12px; color: rgba(212,200,190,0.45); font-weight: 400; }
.footer-bottom span { color: var(--gold); }

/* ─── FLOATING WHATSAPP — proper WA icon, no horizontal overflow ─── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 20px; z-index: 9990;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  animation: wa-pulse 2.5s infinite;
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }
/* SVG icon inside */
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; display: block; flex-shrink: 0; }
/* Hide any text/emoji content when SVG is present */
.whatsapp-float > *:not(svg) { display: none; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.3); }
  50%      { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0); }
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s, transform 0.8s; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s, transform 0.8s; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ─── PAGE SPECIFIC ─── */
.page-hero {
  height: 45vh; min-height: 320px;
  display: flex; align-items: flex-end;
  background: linear-gradient(135deg, var(--maroon) 0%, #200810 100%);
  position: relative; overflow: hidden;
  padding: 60px 6%;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.15) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-breadcrumb { font-size: 11px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; }
.page-hero-breadcrumb a { color: rgba(212,200,190,0.5); text-decoration: none; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); color: var(--cream); }

/* ─── SERVICES PAGE ─── */
.services-full { padding: 100px 6%; background: var(--bg-dark); }
.service-full-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 30px; }
.service-full-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(201,168,76,0.1);
  padding: 0; overflow: hidden; transition: transform 0.3s, border-color 0.3s;
}
.service-full-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.35); }
.sfc-header {
  padding: 36px 32px 24px; position: relative;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  background: linear-gradient(135deg, rgba(201,168,76,0.05), transparent);
}
.sfc-icon { font-size: 40px; margin-bottom: 16px; }
.sfc-title { font-family: var(--font-display); font-size: 20px; color: var(--cream); }
.sfc-items-grid { padding: 28px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sfc-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(212,200,190,0.75); letter-spacing: 0.5px;
}
.sfc-item::before { content: '◆'; color: var(--gold); font-size: 6px; }

/* ─── GALLERY PAGE ─── */
.gallery-full { padding: 100px 6%; background: var(--bg-dark); }
.gallery-full-grid { columns: 3; gap: 8px; }
.gallery-full-item { break-inside: avoid; margin-bottom: 8px; overflow: hidden; }
.gallery-full-item img { width: 100%; display: block; transition: transform 0.5s; }
.gallery-full-item:hover img { transform: scale(1.04); }

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lb-close {
  position: absolute; top: 24px; right: 30px;
  font-size: 30px; color: var(--gold); cursor: pointer;
  background: none; border: none; font-family: var(--font-body);
}

/* ─── PREVENT HORIZONTAL SCROLL ─── */
html { overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100vw; }

/* ─── WHATSAPP FLOAT — proper WA icon, no layout overflow ─── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 20px; z-index: 9990;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  animation: wa-pulse 2.5s infinite;
  transition: transform 0.3s;
  /* critical: keep inside viewport, never cause scroll */
  right: 20px;
  will-change: transform;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; display: block; flex-shrink: 0; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.3); }
  50%      { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0); }
}

/* ─── FOOTER — better readability ─── */
footer { background: #080503; padding: 70px 6% 30px; border-top: 1px solid rgba(201,168,76,0.15); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand-desc { font-size: 13px; color: rgba(212,200,190,0.7); line-height: 1.85; margin: 16px 0 24px; font-weight: 400; }

/* Social buttons with real brand colours */
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  width: 40px; height: 40px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 0; /* hide any text/emoji fallback */
  transition: transform 0.25s ease, opacity 0.25s ease;
  flex-shrink: 0; overflow: hidden;
}
.social-btn svg { width: 20px; height: 20px; fill: #fff; display: block; }
.social-btn:hover { transform: translateY(-3px); opacity: 0.88; }
.social-btn.sb-instagram { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-btn.sb-facebook  { background: #1877F2; }
.social-btn.sb-youtube   { background: #FF0000; }
.social-btn.sb-whatsapp  { background: #25D366; }

.footer-col-title {
  font-family: var(--font-display); font-size: 13px;
  color: var(--gold); letter-spacing: 2px; margin-bottom: 22px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  text-decoration: none; font-size: 13px; color: rgba(212,200,190,0.72);
  font-weight: 400; transition: color 0.3s; line-height: 1.5;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 30px; border-top: 1px solid rgba(201,168,76,0.1);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 12px; color: rgba(212,200,190,0.45); font-weight: 400; }
.footer-bottom span { color: var(--gold); }

/* ─── DESKTOP DROPDOWN — compact so nav doesn't overflow ─── */
@media (min-width: 769px) {
  .nav-links { flex-wrap: nowrap; align-items: center; }
  .nav-links > li > a {
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 1.6px;
    white-space: nowrap;
  }
  .has-dropdown > a { padding-right: 22px !important; }
  .nav-cta { padding: 8px 18px !important; margin-left: 4px; }
}

@media (min-width: 1200px) {
  .nav-links > li > a { padding: 8px 16px; font-size: 12px; letter-spacing: 2.5px; }
  .nav-cta { padding: 10px 24px !important; }
}

/* ─── RESPONSIVE 1024px ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-images { height: 400px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(4, 200px); }
  .gallery-item:nth-child(6) { grid-column: span 1; }
}

/* ─── MOBILE NAV — slide-in drawer from right ─── */
@media (max-width: 768px) {
  /* Show hamburger, hide desktop links by default */
  .hamburger { display: flex; }

  .nav-links {
    /* Base state: off-screen to the right */
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 88vw);
    height: 100vh;
    background: #0a0604;
    border-left: 1px solid rgba(201,168,76,0.2);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding-top: 90px; /* below nav bar */
    gap: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 990;
    /* Never set display:none — use transform so transition works */
    visibility: hidden;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: all;
  }

  /* Overlay behind drawer */
  .nav-links.open::before {
    content: '';
    position: fixed;
    inset: 0;
    right: min(320px, 88vw); /* covers everything left of drawer */
    background: rgba(0,0,0,0.55);
    z-index: -1;
  }

  /* Top-level mobile items */
  .nav-links > li {
    border-bottom: 1px solid rgba(201,168,76,0.09);
  }
  .nav-links > li > a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px !important;
    font-size: 12px !important;
    letter-spacing: 2px !important;
    color: rgba(212,200,190,0.85) !important;
    white-space: normal;
  }
  .nav-links > li > a::after { display: none !important; }

  /* Chevron moves to right side */
  .has-dropdown > a::before {
    position: static !important;
    transform: none !important;
    margin-left: auto;
    display: inline-block;
    transition: transform 0.3s !important;
  }
  .has-dropdown.mob-open > a::before { transform: rotate(180deg) !important; }

  /* Mobile dropdown accordion — smooth max-height reveal */
  .dropdown {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: none !important;
    background: rgba(201,168,76,0.04);
    border: none !important;
    border-left: 3px solid rgba(201,168,76,0.3) !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    min-width: 0 !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease !important;
    list-style: none;
    visibility: visible !important;
  }
  .has-dropdown.mob-open .dropdown {
    max-height: 300px;
    pointer-events: all !important;
  }
  .dropdown li { border-bottom: 1px solid rgba(201,168,76,0.07) !important; }
  .dropdown a {
    padding: 12px 32px !important;
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
    color: rgba(212,200,190,0.68) !important;
  }
  .dropdown a:hover { padding-left: 40px !important; }

  /* Book Now in drawer */
  .nav-links > li:last-child {
    border-bottom: none;
    padding: 18px 24px;
  }
  .nav-cta {
    display: inline-block !important;
    width: auto !important;
    margin: 0 !important;
    padding: 11px 24px !important;
    font-size: 11px !important;
    letter-spacing: 2px !important;
    text-align: center;
  }

  /* Desktop hover dropdown disabled on mobile */
  .has-dropdown:hover .dropdown { opacity: 0 !important; pointer-events: none !important; max-height: 0 !important; }
  .has-dropdown.mob-open .dropdown { opacity: 1 !important; pointer-events: all !important; max-height: 300px !important; }

  /* Rest of mobile layout */
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-full-grid { columns: 2; }
  .service-full-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 70px 5%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-links a { font-size: 13px; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links a { font-size: 14px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .gallery-full-grid { columns: 1; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* ── Form Validation Styles ─────────────────────────────────────────────── */
.input-error {
  border-color: #e53935 !important;
  box-shadow: 0 0 0 2px rgba(229,57,53,.18) !important;
  outline: none !important;
}

.field-error {
  display: block;
  color: #ff6b6b;
  font-size: 11px;
  letter-spacing: 0.5px;
  margin-top: 5px;
  padding-left: 2px;
  font-family: var(--font-body, sans-serif);
  animation: errSlide .2s ease;
}

@keyframes errSlide {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* shake animation on invalid submit attempt */
.input-error {
  animation: errShake .35s ease;
}

@keyframes errShake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-5px); }
  40%      { transform: translateX(5px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}
