/* ===== CSS VARIABLES ===== */
:root {
  --gold: #C9A646;
  --gold-light: #e8c96a;
  --gold-dark: #a07c20;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1a1a1a;
  --ivory: #F8F6F0;
  --ivory2: #ede9df;
  --maroon: #5A0F1C;
  --white: #ffffff;
  --text-muted: #888;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', sans-serif;
  --shadow: 0 8px 32px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 24px rgba(201,166,70,0.18);
  --radius: 12px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); background: var(--ivory); color: var(--black); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 5rem 0; }
.section-pad-top { padding-top: 0; padding-bottom: 5rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: 1.5rem; }
.mt-2 { margin-top: 2rem; }
.gold { color: var(--gold); }
.bg-dark { background: var(--dark); color: var(--ivory); }
.bg-gold { background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light)); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  color: inherit;
}
.section-desc {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.bg-dark .section-title { color: var(--ivory); }
.bg-dark .section-desc { color: #aaa; }

.glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201,166,70,0.15);
  border-radius: var(--radius);
}
.bg-dark .glass { background: rgba(255,255,255,0.04); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,166,70,0.35); }
.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-dark { background: var(--black); color: var(--ivory); border-color: var(--black); }
.btn-dark:hover { background: var(--dark2); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; border-color: var(--black); color: var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--ivory); }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.875rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(16px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.2;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  color: rgba(248,246,240,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { left: 0.9rem; right: 0.9rem; }
.nav-social {
  display: flex;
  gap: 0.5rem;
}
.nav-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(201,166,70,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  transition: var(--transition);
}
.nav-social a:hover { background: var(--gold); color: var(--black); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ivory);
  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; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1600&q=80') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(90,15,28,0.6) 50%, rgba(10,10,10,0.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem 1.5rem;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  animation: fadeUp 1s 0.2s ease both;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  animation: fadeUp 1s 0.4s ease both;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(248,246,240,0.8);
  max-width: 600px;
  margin: 0 auto 2rem;
  animation: fadeUp 1s 0.6s ease both;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.8s ease both;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 24px; height: 40px;
  border: 2px solid rgba(201,166,70,0.6);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100% { top: 6px; opacity: 1; } 50% { top: 18px; opacity: 0.3; } }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://images.unsplash.com/photo-1509099836639-18ba1795216d?w=1400&q=80') center/cover no-repeat;
  margin-top: 0;
  padding-top: 80px;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.9), rgba(90,15,28,0.7));
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 1.5rem;
  animation: fadeUp 0.8s ease both;
}
.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}
.page-hero-content p {
  color: rgba(248,246,240,0.8);
  font-size: 1.05rem;
}

/* ===== INTRO SECTION ===== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-grid.reverse { direction: rtl; }
.intro-grid.reverse > * { direction: ltr; }
.intro-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.intro-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.intro-img:hover img { transform: scale(1.04); }
.intro-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.badge-num { display: block; font-size: 1.4rem; font-family: var(--font-serif); }
.badge-label { font-size: 0.75rem; letter-spacing: 0.05em; }
.intro-text p { color: #555; margin-bottom: 1rem; font-size: 1.02rem; }
.bg-dark .intro-text p { color: #bbb; }

/* ===== MISSION CARDS ===== */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.mission-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}
.mission-card:hover { transform: translateY(-6px); border-color: rgba(201,166,70,0.4); box-shadow: var(--shadow-gold); }
.mission-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.mission-card h3 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--ivory); margin-bottom: 0.75rem; }
.mission-card p { color: #aaa; font-size: 0.95rem; }

/* ===== STATS ===== */
.stats { background: var(--maroon); overflow: hidden; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 1.5rem 0.5rem; }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-plus { font-size: clamp(1.2rem, 3vw, 2rem); color: var(--gold); font-weight: 700; vertical-align: super; }
.stat-item p { color: rgba(248,246,240,0.8); font-size: 0.85rem; margin-top: 0.5rem; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 500; }

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  padding: 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(201,166,70,0.3); }
.stars { color: var(--gold); margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial-card p { color: #bbb; font-style: italic; margin-bottom: 1.5rem; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.avatar-placeholder {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(201,166,70,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.2rem;
}
.testimonial-author strong { display: block; color: var(--ivory); font-size: 0.95rem; }
.testimonial-author span { color: var(--gold); font-size: 0.8rem; }

/* ===== FAQ ===== */
.faq-container { max-width: 800px; }
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid rgba(201,166,70,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  gap: 1rem;
  transition: var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-q[aria-expanded="true"] { color: var(--gold); }
.faq-q i { transition: transform 0.3s ease; flex-shrink: 0; color: var(--gold); }
.faq-q[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a.open { max-height: 200px; }
.faq-a p { padding: 0 1.5rem 1.25rem; color: #555; font-size: 0.97rem; line-height: 1.7; }

/* ===== CTA ===== */
.cta { text-align: center; }
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 1rem;
}
.cta p { color: rgba(10,10,10,0.75); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

/* ===== VALUES GRID ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid rgba(201,166,70,0.15);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); border-color: var(--gold); }
.value-card i { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.value-card h3 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--black); }
.value-card p { color: #666; font-size: 0.95rem; }

/* ===== ACHIEVEMENTS ===== */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.achievement-item {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201,166,70,0.15);
  background: rgba(255,255,255,0.04);
  transition: var(--transition);
}
.achievement-item:hover { border-color: var(--gold); transform: translateY(-4px); }
.achievement-item i { font-size: 1.75rem; color: var(--gold); margin-bottom: 1rem; }
.achievement-item h4 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--ivory); margin-bottom: 0.5rem; }
.achievement-item p { color: #aaa; font-size: 0.93rem; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(201,166,70,0.1);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,0.15); border-color: var(--gold); }
.service-img { position: relative; overflow: hidden; height: 220px; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-icon-overlay {
  position: absolute;
  bottom: -20px; right: 1.5rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--black);
  box-shadow: var(--shadow-gold);
  z-index: 2;
}
.service-body { padding: 2rem 1.5rem 1.5rem; }
.service-body h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--black); margin-bottom: 0.75rem; }
.service-body p { color: #666; font-size: 0.95rem; margin-bottom: 1.25rem; }
.service-list { display: flex; flex-direction: column; gap: 0.4rem; }
.service-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: #555; }
.service-list i { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; }

/* ===== GALLERY ===== */
.gallery-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(201,166,70,0.3);
  color: #666;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  background: var(--white);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8), transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  gap: 0.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 1.5rem; color: var(--gold); }
.gallery-overlay span { color: var(--ivory); font-size: 0.9rem; font-weight: 500; }
.gallery-item.hidden { display: none; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-content { text-align: center; max-width: 90vw; max-height: 90vh; }
.lightbox-content img { max-width: 100%; max-height: 80vh; border-radius: 8px; object-fit: contain; }
.lightbox-content p { color: var(--ivory); margin-top: 1rem; font-size: 0.95rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(201,166,70,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--black); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ===== YOUTUBE CHANNEL CARD ===== */
.yt-channel-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem;
  border-radius: var(--radius);
  margin-top: 3rem;
  border: 1px solid rgba(255,0,0,0.2);
  transition: var(--transition);
}
.yt-channel-card:hover { border-color: rgba(255,0,0,0.5); transform: translateY(-4px); }
.yt-channel-icon {
  flex-shrink: 0;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #FF0000;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 4px 20px rgba(255,0,0,0.3);
}
.yt-channel-info h3 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--ivory); margin-bottom: 0.75rem; }
.yt-channel-info p { color: #aaa; font-size: 0.97rem; margin-bottom: 1rem; line-height: 1.7; }
.yt-channel-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.yt-channel-meta span { color: #888; font-size: 0.875rem; display: flex; align-items: center; gap: 0.4rem; }
.yt-channel-meta i { color: var(--gold); }
@media (max-width: 600px) {
  .yt-channel-card { flex-direction: column; align-items: center; text-align: center; padding: 1.75rem; }
  .yt-channel-meta { justify-content: center; }
}

/* ===== SOCIAL PREVIEW ===== */
.social-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.social-preview-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(201,166,70,0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: var(--transition);
}
.social-preview-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.social-preview-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.social-preview-header div strong { display: block; font-size: 1rem; color: var(--black); }
.social-preview-header div span { font-size: 0.85rem; color: var(--text-muted); }
.social-preview-card p { color: #666; font-size: 0.95rem; margin-bottom: 1.25rem; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 1rem; }
.contact-info > p { color: #666; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-detail-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-detail-item h4 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 0.25rem; }
.contact-detail-item p { color: #555; font-size: 0.95rem; }
.contact-detail-item a { color: #555; }
.contact-detail-item a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
}
.social-btn.fb { background: #1877F2; color: white; }
.social-btn.fb:hover { background: #0d65d9; transform: translateY(-2px); }
.social-btn.yt { background: #FF0000; color: white; }
.social-btn.yt:hover { background: #cc0000; transform: translateY(-2px); }
.social-btn.wa { background: #25D366; color: white; }
.social-btn.wa:hover { background: #1da851; transform: translateY(-2px); }

/* FORM */
.contact-form-wrap { padding: 2.5rem; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); border: 1px solid rgba(201,166,70,0.15); }
.contact-form-wrap h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--black); margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: #444; }
.form-group label span { color: var(--gold); }
.form-group input, .form-group textarea, .form-group select {
  padding: 0.85rem 1rem;
  border: 1.5px solid #e0ddd5;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--black);
  background: var(--ivory);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,166,70,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error { color: #e53e3e; font-size: 0.8rem; min-height: 1rem; }
.form-success { color: #38a169; font-size: 0.95rem; text-align: center; padding: 0.75rem; background: #f0fff4; border-radius: 8px; border: 1px solid #9ae6b4; display: none; }
.form-success.show { display: block; }

/* MAP */
.map-section { padding-bottom: 5rem; }
.map-section .container { padding-bottom: 1.5rem; }
.map-wrapper { margin-top: 2rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 2px solid rgba(201,166,70,0.2); }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--ivory);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(201,166,70,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); margin-bottom: 1rem; }
.footer-brand p { color: #aaa; font-size: 0.9rem; line-height: 1.6; margin-bottom: 0.5rem; }
.footer-addr { display: flex; align-items: flex-start; gap: 0.5rem; color: #888 !important; font-size: 0.85rem !important; margin-top: 0.75rem !important; }
.footer-addr i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-social { display: flex; gap: 0.5rem; margin-top: 1.25rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,166,70,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ivory);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-links h4::after, .footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--gold);
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: #aaa; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact p { display: flex; align-items: center; gap: 0.6rem; color: #aaa; font-size: 0.9rem; margin-bottom: 0.6rem; }
.footer-contact i { color: var(--gold); width: 16px; }
.footer-contact a { color: #aaa; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
  color: #666;
  font-size: 0.85rem;
}

/* ===== FLOATING BUTTONS ===== */
.float-call, .float-whatsapp {
  position: fixed;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
}
.float-call { bottom: 7rem; right: 1.5rem; background: var(--gold); color: var(--black); }
.float-call:hover { background: var(--gold-light); transform: scale(1.1); }
.float-whatsapp { bottom: 4rem; right: 1.5rem; background: #25D366; color: white; }
.float-whatsapp:hover { background: #1da851; transform: scale(1.1); }
.scroll-top {
  position: fixed;
  bottom: 1rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  z-index: 999;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--gold); color: var(--black); transform: translateY(-3px); }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .intro-grid.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: #0d0d0d;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 1001;
    margin-left: 0;
    box-shadow: -8px 0 32px rgba(0,0,0,0.7);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links a {
    font-size: 1.15rem;
    font-weight: 700;
    padding: 0.9rem 0.5rem;
    width: 100%;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #f0ece0 !important;
    letter-spacing: 0.03em;
    opacity: 1 !important;
    -webkit-text-fill-color: #f0ece0;
    pointer-events: auto;
    position: relative;
    z-index: 1002;
    cursor: pointer;
  }
  .nav-links a:hover { color: var(--gold) !important; -webkit-text-fill-color: var(--gold); padding-left: 0.75rem; }
  .nav-links a.active { color: var(--gold) !important; -webkit-text-fill-color: var(--gold); }
  .nav-links a::after { display: none; }
  /* Backdrop overlay when menu is open */
  .nav-backdrop {
    display: none;
    position: fixed;
    top: 0; left: 0;
    right: 280px;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
  }
  .nav-backdrop.open { display: block; }
  .hamburger { display: flex; z-index: 1002; }
  .nav-social { display: none; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .section-pad { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { padding: 1.5rem 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .mission-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .achievements-grid { grid-template-columns: 1fr; }
  .social-preview-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .float-call { bottom: 8rem; right: 1rem; width: 46px; height: 46px; }
  .float-whatsapp { bottom: 5rem; right: 1rem; width: 46px; height: 46px; }
  .scroll-top { right: 1rem; }
}
