/* ===== VARIABLES ===== */
:root {
  --navy: #1a2f5e;
  --navy-dark: #0e1e3f;
  --blue-accent: #2d4a9e;
  --gold: #c8a45a;
  --gold-light: #e8c87a;
  --white: #ffffff;
  --off-white: #f4f6fb;
  --gray-light: #e8ecf4;
  --gray: #8898aa;
  --text-dark: #1a1a2e;
  --text-body: #3d4566;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(26,47,94,0.12);
  --shadow-lg: 0 20px 60px rgba(26,47,94,0.20);
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text-body); background: #fff; overflow-x: hidden; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===== PAGE LOADER ===== */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow: hidden;
}
#page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  width: 140px; height: auto;
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
}
.loader-bar {
  width: 160px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px; margin-top: 28px; overflow: hidden;
}
.loader-bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  animation: loaderFill 1.4s ease forwards;
}
@keyframes loaderPulse {
  from { opacity: 0.6; transform: scale(0.96); }
  to   { opacity: 1;   transform: scale(1); }
}
@keyframes loaderFill {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; color: var(--navy-dark); line-height: 1.2; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.section-title { font-size: clamp(1.9rem,4vw,3rem); font-weight: 700; margin-bottom: 20px; }
.section-desc { font-size: 1.05rem; color: var(--gray); max-width: 580px; line-height: 1.8; }

/* ===== NAVBAR — WHITE ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--gray-light);
  padding: 0;
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(26,47,94,0.12); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 54px; width: auto; display: block; object-fit: contain; }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--text-dark);
  letter-spacing: 0.3px; transition: color 0.25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--navy) !important; color: #fff !important;
  padding: 10px 22px; border-radius: 50px; font-weight: 700 !important;
  transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--navy-dark) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,47,94,0.3); }

/* Dark toggle */
.dark-toggle {
  background: var(--off-white); border: 1px solid var(--gray-light);
  border-radius: 50%; width: 38px; height: 38px;
  cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0;
}
.dark-toggle:hover { background: var(--gray-light); transform: scale(1.1); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy-dark); z-index: 998;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 28px;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.mobile-nav.open { transform: translateX(0); pointer-events: all; }
.mobile-nav a { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: white; font-weight: 700; transition: color 0.2s; }
.mobile-nav a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; padding-top: 72px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 45%, var(--blue-accent) 100%);
  position: relative; display: flex; align-items: center; overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(200,164,90,0.1) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.04) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid-line { position: absolute; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,0.04); }
.hero-grid-line:nth-child(1) { left: 25%; }
.hero-grid-line:nth-child(2) { left: 50%; }
.hero-grid-line:nth-child(3) { left: 75%; }

.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding: 60px 0 80px; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,164,90,0.15); border: 1px solid rgba(200,164,90,0.3);
  color: var(--gold-light); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 28px; backdrop-filter: blur(8px);
}
.hero-badge span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

.hero h1 { font-size: clamp(2.4rem,5vw,4rem); color: #fff; margin-bottom: 22px; font-weight: 700; line-height: 1.1; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-desc { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.8; margin-bottom: 38px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy-dark); font-weight: 700; font-size: 15px;
  padding: 15px 30px; border-radius: 50px; transition: var(--transition);
  box-shadow: 0 8px 28px rgba(200,164,90,0.35);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(200,164,90,0.45); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff; font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 50px; border: 1.5px solid rgba(255,255,255,0.35); transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }

/* Hero stats */
.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px); border-radius: var(--radius); padding: 26px 22px; transition: var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.stat-card.featured {
  background: var(--gold); border-color: var(--gold); grid-column: span 2;
  display: flex; align-items: center; gap: 18px;
}
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; color: #fff; line-height: 1; }
.stat-card.featured .stat-number { color: var(--navy-dark); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 4px; }
.stat-card.featured .stat-label { color: rgba(14,30,63,0.8); }
.stat-icon { font-size: 2.2rem; }

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  animation: bob 2.5s infinite;
}
.scroll-arrow { width: 30px; height: 30px; border: 1.5px solid rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.scroll-arrow svg { width: 13px; opacity: 0.5; }
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: #fff; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-stack { position: relative; height: 460px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 75%; height: 320px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-img-secondary { position: absolute; bottom: 0; right: 0; width: 55%; height: 210px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 6px solid #fff; }
.about-badge-float { position: absolute; top: 30%; right: -20px; background: var(--navy); color: #fff; padding: 18px 22px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-lg); z-index: 2; }
.about-badge-float strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); }
.about-badge-float span { font-size: 12px; opacity: .8; line-height: 1.3; display: block; margin-top: 4px; }
.about-text .section-desc { margin-bottom: 32px; }
.about-highlights { display: flex; flex-direction: column; gap: 14px; }
.highlight-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px; background: var(--off-white); border-radius: var(--radius-sm); border-left: 3px solid var(--gold); transition: var(--transition); }
.highlight-item:hover { background: var(--gray-light); transform: translateX(4px); }
.highlight-icon { width: 38px; height: 38px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 17px; }
.highlight-text strong { display: block; font-weight: 700; color: var(--navy-dark); margin-bottom: 2px; font-size: 15px; }
.highlight-text span { font-size: 13px; color: var(--gray); }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--off-white); position: relative; overflow: hidden; }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; flex-wrap: wrap; gap: 20px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-card {
  background: #fff; border-radius: var(--radius); padding: 34px 28px;
  box-shadow: 0 4px 20px rgba(26,47,94,0.06); transition: var(--transition);
  position: relative; overflow: hidden; border: 1px solid transparent; display: block;
}
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--navy),var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(26,47,94,.08); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { background: var(--navy); }
.service-card.featured .service-title { color: #fff; }
.service-card.featured .service-desc { color: rgba(255,255,255,.7); }
.service-card.featured .service-icon-wrap { background: rgba(255,255,255,.1); }
.service-icon-wrap { width: 52px; height: 52px; background: var(--off-white); border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 22px; transition: var(--transition); }
.service-card:hover .service-icon-wrap { background: var(--navy); transform: scale(1.05); }
.service-card.featured:hover .service-icon-wrap { background: rgba(255,255,255,.2); }
.service-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 9px; }
.service-desc { font-size: 14px; color: var(--gray); line-height: 1.7; }
.service-arrow { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--gold); transition: var(--transition); }
.service-card:hover .service-arrow { gap: 10px; }
.service-card.featured .service-arrow { color: var(--gold-light); }

/* ===== GALLERY ===== */
.gallery-section { padding: 80px 0; background: var(--off-white); overflow: hidden; }
.gallery-slider-wrap { position: relative; overflow: hidden; margin-top: 40px; }
.gallery-slider { display: flex; gap: 20px; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.gallery-slide { flex: 0 0 calc(33.333% - 14px); border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3; background: var(--gray-light); box-shadow: var(--shadow); cursor: pointer; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gallery-slide:hover img { transform: scale(1.05); }
.gallery-slide-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(135deg,var(--navy),var(--blue-accent)); color: rgba(255,255,255,.6); font-size: 42px; gap: 10px; }
.gallery-slide-placeholder span { font-size: 13px; font-weight: 500; }
.gallery-slide-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(14,30,63,0.92) 0%, transparent 100%);
  padding: 32px 18px 16px;
  transform: translateY(100%); transition: transform 0.35s ease;
}
.gallery-slide:hover .gallery-slide-info { transform: translateY(0); }
.gallery-slide-info .title { font-size: 14px; font-weight: 700; color: #fff; }
.gallery-slide-info .cat { font-size: 11px; color: var(--gold); font-weight: 700; letter-spacing: 1px; margin-top: 3px; }
.gallery-slide-info .meta { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 2px; }

.gallery-controls { display: flex; justify-content: center; align-items: center; gap: 14px; margin-top: 28px; }
.gallery-btn { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--navy); background: #fff; color: var(--navy); font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.gallery-btn:hover:not(:disabled) { background: var(--navy); color: #fff; }
.gallery-btn:disabled { opacity: .3; cursor: not-allowed; }
.gallery-dots { display: flex; gap: 8px; }
.gallery-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-light); cursor: pointer; transition: var(--transition); border: none; }
.gallery-dot.active { background: var(--navy); width: 24px; border-radius: 4px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 88vw; max-height: 80vh; border-radius: 12px; box-shadow: 0 0 60px rgba(0,0,0,.5); }
.lightbox-close { position: absolute; top: 18px; right: 22px; color: #fff; font-size: 30px; cursor: pointer; background: none; border: none; opacity: .7; transition: opacity .2s; }
.lightbox-close:hover { opacity: 1; }
.lightbox-caption { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 14px; background: rgba(255,255,255,.1); padding: 8px 20px; border-radius: 50px; backdrop-filter: blur(8px); text-align: center; max-width: 80vw; }

/* ===== MISSION ===== */
.mission { padding: 100px 0; background: linear-gradient(135deg,var(--navy-dark) 0%,var(--navy) 60%,var(--blue-accent) 100%); position: relative; overflow: hidden; }
.mission::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/svg%3E"); }
.mission-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mission-text .section-label { color: var(--gold-light); }
.mission-text .section-title { color: #fff; }
.mission-desc { color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.85; margin-bottom: 38px; }
.mission-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pillar { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); padding: 22px 18px; transition: var(--transition); }
.pillar:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.pillar-icon { font-size: 26px; margin-bottom: 10px; }
.pillar-title { font-weight: 700; color: #fff; margin-bottom: 5px; font-size: 14px; }
.pillar-text { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; }
.mission-quote-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(10px); border-radius: var(--radius); padding: 38px; }
.quote-icon { font-family: 'Playfair Display', serif; font-size: 4.5rem; color: var(--gold); line-height: 1; margin-bottom: 14px; opacity: .6; }
.quote-text { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #fff; line-height: 1.6; font-style: italic; margin-bottom: 26px; }
.quote-divider { height: 1px; background: rgba(255,255,255,.15); margin-bottom: 22px; }
.quote-values { display: flex; gap: 18px; flex-wrap: wrap; }
.value-tag { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.8); }
.value-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ===== WHY US ===== */
.why-us { padding: 100px 0; background: #fff; }
.why-us-header { text-align: center; margin-bottom: 56px; }
.why-us-header .section-desc { margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.why-card { text-align: center; padding: 38px 22px; border-radius: var(--radius); border: 1px solid var(--gray-light); transition: var(--transition); position: relative; }
.why-card:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-4px); }
.why-card:hover .why-icon-wrap { background: var(--navy); }
.why-number { position: absolute; top: 14px; right: 18px; font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; color: var(--gray-light); line-height: 1; }
.why-icon-wrap { width: 60px; height: 60px; background: var(--off-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 18px; transition: var(--transition); }
.why-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy-dark); margin-bottom: 9px; font-weight: 700; }
.why-text { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--off-white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info .section-title { margin-bottom: 14px; }
.contact-info .section-desc { margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 20px 18px; background: #fff; border-radius: var(--radius-sm); box-shadow: 0 2px 12px rgba(26,47,94,.05); transition: var(--transition); }
.contact-item:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.contact-icon { width: 42px; height: 42px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.contact-item-label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); font-weight: 700; margin-bottom: 3px; }
.contact-item-value { font-weight: 600; color: var(--navy-dark); font-size: 15px; }
.contact-form-wrap { background: #fff; border-radius: var(--radius); padding: 44px 38px; box-shadow: var(--shadow); }
.form-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy-dark); margin-bottom: 26px; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 13px 16px; border: 1.5px solid var(--gray-light); border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-dark); background: var(--off-white); transition: var(--transition); outline: none; appearance: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--navy); background: #fff; box-shadow: 0 0 0 3px rgba(26,47,94,.07); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit { width: 100%; padding: 15px; background: var(--navy); color: #fff; border: none; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-submit:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,47,94,.3); }
.form-success { display: none; background: #d4edda; color: #155724; border: 1px solid #c3e6cb; border-radius: var(--radius-sm); padding: 14px 18px; margin-top: 14px; font-weight: 600; font-size: 14px; }

/* ===== FOOTER ===== */
footer { background: var(--navy-dark); color: rgba(255,255,255,.7); padding: 60px 0 30px; }
.footer-inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.8; max-width: 300px; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; transition: var(--transition); }
.social-link:hover { background: var(--gold); transform: translateY(-2px); }
.footer-col h4 { color: #fff; font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 18px; font-weight: 700; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--gold-light); transform: translateX(4px); }
.footer-links a::before { content: '→'; font-size: 11px; color: var(--gold); opacity: 0; transition: opacity .3s; }
.footer-links a:hover::before { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 13px; }
.gold-text { color: var(--gold); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > .footer-brand { grid-column: span 2; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; padding: 40px 0 60px; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .about-inner, .mission-inner, .contact-inner { grid-template-columns: 1fr; gap: 44px; }
  .about-img-stack { height: 280px; }
  .about-badge-float { right: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner > .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .mission-pillars { grid-template-columns: 1fr; }
  .gallery-slide { flex: 0 0 calc(85% - 10px); }
  .dark-toggle { display: none; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
}
