:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7830;
  --cream: #F9F3E8;
  --cream-deep: #EDE0C8;
  --green-dark: #1A3028;
  --green-mid: #243D30;
  --green-light: #2E5040;
  --white: #FFFFFF;
  --black: #0D0D0D;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #888;
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(201,168,76,0.2);
  --shadow-gold: 0 8px 40px rgba(201,168,76,0.18);
  --transition: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-ui: 'Jost', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  cursor: default;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; height: auto; }
ul { list-style: none; }

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0;
  background: var(--green-dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 99999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold);
  letter-spacing: 0.08em;
  text-align: center;
  animation: loaderPulse 1.8s ease-in-out infinite;
}
.loader-logo span { color: var(--cream); font-style: italic; font-weight: 300; }
.loader-line {
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-top: 1.5rem;
  animation: loaderLine 2.2s ease forwards;
}
.loader-text {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 0.3em;
  margin-top: 1rem;
  opacity: 0;
  animation: fadeIn 0.6s 0.8s forwards;
  text-transform: uppercase;
}
@keyframes loaderPulse { 0%,100%{opacity:0.6} 50%{opacity:1} }
@keyframes loaderLine { 0%{width:0} 100%{width:220px} }
@keyframes fadeIn { to{opacity:1} }

/* ===== FIXED PREMIUM BUTTONS ===== */
.btn-primary {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 2.4rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center; /* Ensures text & icon stay centered */
  gap: 0.5rem;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.93rem 2.4rem;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center; /* Ensures text & arrow stay centered */
  gap: 0.5rem;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
/* ===== NAVBAR ===== */
/* ===== NAVBAR FIXED WITH PROPER SPACING ===== */
#navbar {
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 1000;
  padding: 1.5rem 5%; /* Increased top/bottom padding for more initial breathing room */
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  gap: 3rem; /* Forces physical space between the logo group and the link group */
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 5%; /* Kept elegant but spacious when scrolling */
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--glass-border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.nav-logo span { display: block; font-size: 0.68rem; font-style: italic; color: var(--cream-deep); font-weight: 300; letter-spacing: 0.12em; font-family: var(--font-ui); }
.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold); color: var(--black) !important;
  padding: 0.55rem 1.4rem; border-radius: 2px;
  font-weight: 600 !important;
  transition: background var(--transition), transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream); transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(13,13,13,0.98);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem; color: var(--cream);
  font-style: italic;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ===== HERO ===== */
#hero {
  position: relative; height: 100vh; min-height: 650px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?w=1600&q=80') center/cover no-repeat;
  transform: scale(1.06);
  
  z-index: 0;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(13,13,13,0.7) 0%, rgba(26,48,40,0.55) 40%, rgba(13,13,13,0.8) 100%);
}
.hero-pattern {
  position: absolute; inset: 0; z-index: 2; opacity: 0.06;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 18px 18px;
}
.hero-content { position: relative; z-index: 3; text-align: center; padding: 0 1.5rem; max-width: 900px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(201,168,76,0.12); border: 1px solid var(--glass-border);
  padding: 0.4rem 1.2rem; border-radius: 30px;
  font-family: var(--font-ui); font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 1.8rem; opacity: 0; animation: slideDown 0.8s 0.3s forwards;
}
.hero-badge::before { content: '✦'; font-size: 0.6rem; }
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700; line-height: 1.08; color: var(--white);
  margin-bottom: 0.4rem; opacity: 0; animation: slideUp 0.9s 0.5s forwards;
}
.hero-title em { color: var(--gold); font-style: italic; display: block; font-weight: 400; }
.hero-tagline {
  font-family: var(--font-body); font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(249,243,232,0.85); font-style: italic; font-weight: 300;
  margin: 1.4rem 0 2.6rem; opacity: 0; animation: slideUp 0.9s 0.7s forwards;
}
.hero-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.6rem; opacity: 0; animation: fadeIn 0.8s 0.9s forwards;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; opacity: 0; animation: slideUp 0.9s 1s forwards; }
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem; opacity: 0; animation: fadeIn 1s 1.5s forwards;
}
.hero-scroll-hint span { font-family: var(--font-ui); font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-light); }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.4;transform:scaleY(0.8)} 50%{opacity:1;transform:scaleY(1)} }
@keyframes slideUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes slideDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }

/* ===== SECTION COMMONS ===== */
section { padding: 7rem 5%; }
.section-label {
  font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.8rem;
}
.section-label::before, .section-label::after { content: ''; flex: 0 0 30px; height: 1px; background: var(--gold); }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; line-height: 1.15; margin-bottom: 1rem; }
.section-title em { color: var(--gold); font-style: italic; }
.section-subtitle { font-size: 1.1rem; color: rgba(249,243,232,0.7); font-weight: 300; max-width: 560px; line-height: 1.7; }
.section-center { text-align: center; }
.section-center .section-label { justify-content: center; }
.section-center .section-subtitle { margin: 0 auto; }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== ABOUT ===== */
#about { background: var(--green-dark); position: relative; overflow: hidden; }
#about::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%); border-radius: 50%; pointer-events: none;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 4px; filter: brightness(0.92) saturate(1.1); }
.about-img-accent { position: absolute; bottom: -2rem; right: -2rem; width: 55%; aspect-ratio: 1; object-fit: cover; border-radius: 4px; border: 4px solid var(--green-dark); filter: brightness(0.9); }
.about-badge { position: absolute; top: 2rem; left: -1.5rem; background: var(--gold); color: var(--black); padding: 1.2rem 1.4rem; border-radius: 4px; text-align: center; line-height: 1.2; box-shadow: 0 8px 30px rgba(201,168,76,0.3); }
.about-badge .num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; display: block; }
.about-badge .lbl { font-family: var(--font-ui); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }
.about-specialty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.about-card { background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border); border-radius: 4px; padding: 1.2rem; display: flex; align-items: flex-start; gap: 0.8rem; transition: background var(--transition), border-color var(--transition); }
.about-card:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.4); }
.about-card-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.about-card h3 { font-family: var(--font-ui); font-size: 0.82rem; font-weight: 600; color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.2rem; }
.about-card p { font-size: 0.88rem; color: rgba(249,243,232,0.6); line-height: 1.5; }

/* ===== SERVICES ===== */
#services { background: var(--black); position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 4rem; }
.service-card { position: relative; overflow: hidden; border-radius: 4px; background: var(--green-dark); border: 1px solid var(--glass-border); padding: 2.5rem 2rem; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); cursor: default; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: scaleX(0); transform-origin: center; transition: transform var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); border-color: rgba(201,168,76,0.4); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-img { width: 100%; height: 160px; object-fit: cover; border-radius: 2px; margin-bottom: 1.5rem; filter: brightness(0.8) saturate(1.1); transition: filter var(--transition); }
.service-card:hover .service-card-img { filter: brightness(0.95) saturate(1.2); }
.service-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.service-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 0.7rem; color: var(--cream); }
.service-card p { font-size: 0.95rem; color: rgba(249,243,232,0.6); line-height: 1.65; }
.service-card .service-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.3rem; font-family: var(--font-ui); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); transition: gap var(--transition); }
.service-card:hover .service-link { gap: 0.7rem; }

/* ===== MENU PREVIEW ===== */
#menu { background: var(--green-mid); position: relative; }
.menu-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin: 2.5rem 0; }
.menu-tab { font-family: var(--font-ui); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.6rem 1.5rem; border-radius: 2px; border: 1px solid var(--glass-border); color: var(--cream-deep); background: transparent; cursor: pointer; transition: all 0.3s; }
.menu-tab.active, .menu-tab:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.menu-item { background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border); border-radius: 4px; padding: 1.4rem; display: flex; align-items: center; gap: 1rem; transition: background 0.3s, border-color 0.3s; }
.menu-item:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.35); }
.menu-item-icon { font-size: 1.8rem; }
.menu-item-name { font-family: var(--font-body); font-size: 1rem; color: var(--cream); }
.menu-item-tag { font-family: var(--font-ui); font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-top: 0.2rem; }
.menu-panel { display: none; }
.menu-panel.active { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }

/* ===== STATS ===== */
#stats { background: var(--gold); padding: 5rem 5%; position: relative; overflow: hidden; }
#stats::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=60') center/cover; opacity: 0.12; }
.stats-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 900; color: var(--black); line-height: 1; }
.stat-suffix { color: var(--green-dark); }
.stat-label { font-family: var(--font-ui); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--black); margin-top: 0.5rem; opacity: 0.75; }

/* ===== GALLERY ===== */
#gallery { background: var(--black); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 0.8rem; margin-top: 3.5rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: 3px; cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; transition: transform 0.6s ease, filter 0.4s; filter: brightness(0.85) saturate(1.1); }
.gallery-item:hover .gallery-img { transform: scale(1.06); filter: brightness(0.95) saturate(1.2); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,13,0.7) 0%, transparent 60%); opacity: 0; transition: opacity 0.4s; display: flex; align-items: flex-end; padding: 1.4rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { font-family: var(--font-body); font-style: italic; font-size: 1rem; color: var(--cream); }
.gallery-zoom { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0.7); opacity: 0; transition: all 0.3s; background: rgba(201,168,76,0.9); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--black); }
.gallery-item:hover .gallery-zoom { opacity: 1; transform: translate(-50%,-50%) scale(1); }

#lightbox { display: none; position: fixed; inset: 0; z-index: 9000; background: rgba(0,0,0,0.95); align-items: center; justify-content: center; }
#lightbox.open { display: flex; }
#lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 4px; object-fit: contain; }
#lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(255,255,255,0.1); border: none; color: white; font-size: 1.5rem; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
#lightbox-close:hover { background: var(--gold); color: var(--black); }

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--black); position: relative; overflow: hidden; }
#testimonials::before { content: '"'; position: absolute; top: -2rem; left: 3%; font-family: var(--font-display); font-size: 20rem; color: rgba(201,168,76,0.04); line-height: 1; pointer-events: none; }
.testimonials-slider { margin-top: 3.5rem; position: relative; overflow: hidden; }
.testimonials-track { display: flex; gap: 1.5rem; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.testimonial-card { flex: 0 0 calc(33.33% - 1rem); background: var(--green-dark); border: 1px solid var(--glass-border); border-radius: 4px; padding: 2.5rem; position: relative; }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 1.2rem; }
.testimonial-text { font-family: var(--font-body); font-style: italic; font-size: 1.05rem; color: rgba(249,243,232,0.8); line-height: 1.8; margin-bottom: 1.8rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.9rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testimonial-name { font-family: var(--font-ui); font-weight: 600; font-size: 0.88rem; color: var(--cream); }
.testimonial-event { font-family: var(--font-ui); font-size: 0.72rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.15rem; }
.slider-nav { display: flex; gap: 0.7rem; margin-top: 2rem; justify-content: center; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(201,168,76,0.3); cursor: pointer; transition: background 0.3s, transform 0.3s; border: none; }
.slider-dot.active { background: var(--gold); transform: scale(1.3); }

/* ===== CONTACT FORM & COMPONENTS ===== */
#contact { background: var(--green-dark); position: relative; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; margin-top: 4rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
.contact-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(201,168,76,0.12); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; color: var(--gold); }
.contact-info-title { font-family: var(--font-ui); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.contact-info-text { font-family: var(--font-body); font-size: 1rem; color: rgba(249,243,232,0.7); line-height: 1.5; }
.contact-social { display: flex; gap: 0.8rem; margin-top: 2.5rem; }
.social-btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--cream); transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.2s; }
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); transform: translateY(-3px); }
.contact-form .form-group { margin-bottom: 1.2rem; }
.contact-form label { display: block; font-family: var(--font-ui); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(249,243,232,0.6); margin-bottom: 0.5rem; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); border-radius: 3px; padding: 0.85rem 1rem; color: var(--cream); font-family: var(--font-body); font-size: 1rem; outline: none; transition: border-color 0.3s, background 0.3s; appearance: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.contact-form select option { background: var(--green-dark); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===== FOOTER ===== */
footer { background: var(--black); padding: 4rem 5% 2rem; border-top: 1px solid var(--glass-border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--glass-border); margin-bottom: 2rem; }
.footer-brand p { font-size: 0.95rem; color: rgba(249,243,232,0.5); line-height: 1.7; margin-top: 1rem; max-width: 280px; }
.footer-col-title { font-family: var(--font-ui); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a { font-family: var(--font-body); font-size: 0.95rem; color: rgba(249,243,232,0.55); transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; text-align: center; }
.footer-copyright { font-family: var(--font-ui); font-size: 0.95rem; color: rgb(247, 247, 247); letter-spacing: 0.05em; }
.footer-gold { color: var(--gold); font-weight: 600; }
.footer-link { color: var(--gold-light); transition: color 0.3s; font-weight: 500; }
.footer-link:hover { color: var(--white); text-decoration: underline; }

/* ===== FLOATING INTERACTION ELEMENTS ===== */
.float-btns { position: fixed; right: 1.5rem; bottom: 2rem; display: flex; flex-direction: column; gap: 0.8rem; z-index: 500; }
.float-wa { width: 52px; height: 52px; border-radius: 50%; background: #25D366; color: white; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37,211,102,0.35); transition: transform 0.3s, box-shadow 0.3s; }
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.float-call { width: 52px; height: 52px; border-radius: 50%; background: var(--gold); color: var(--black); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; box-shadow: 0 4px 20px rgba(201,168,76,0.35); transition: transform 0.3s; }
.float-call:hover { transform: scale(1.1); }

/* ===== MODAL BASE STRUCTURE ===== */
#modal-overlay { display: none; position: fixed; inset: 0; z-index: 8000; background: rgba(0,0,0,0.85); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 1rem; }
#modal-overlay.open { display: flex; }
.modal { background: var(--green-dark); border: 1px solid var(--glass-border); border-radius: 6px; padding: 3rem; max-width: 560px; width: 100%; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: rgba(255,255,255,0.08); border: none; color: var(--cream); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.modal-close:hover { background: var(--gold); color: var(--black); }
.modal h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--cream); margin-bottom: 0.4rem; }
.modal p { font-size: 0.9rem; color: rgba(249,243,232,0.55); margin-bottom: 2rem; }
.success-msg { display: none; text-align: center; padding: 2rem 0; }
.success-msg .tick { font-size: 3rem; margin-bottom: 1rem; }
.success-msg h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); }
.success-msg p { color: rgba(249,243,232,0.65); font-size: 1rem; }

/* ===== RESPONSIVE DISPLAYS ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 3rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .testimonial-card { flex: 0 0 calc(50% - 0.75rem); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .testimonial-card { flex: 0 0 100%; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  section { padding: 5rem 5%; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: 1; grid-row: 1; }
  .gallery-item:nth-child(4) { grid-column: 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-specialty-grid { grid-template-columns: 1fr; }
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::selection { background: var(--gold); color: var(--black); }