/* ----------------------------------------------
   LOADING SCREEN - Slide Up Exit
---------------------------------------------- */
.loader-wrap {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0A0A0A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  transform: translateY(0);
  transition: transform 0.75s cubic-bezier(0.76, 0, 0.24, 1), visibility 0.75s ease;
}

.loader-wrap.loader-hide {
  transform: translateY(-105%);
  visibility: hidden;
}

/* Logo pulse ring */
.loader-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo-wrap::before,
.loader-logo-wrap::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(183, 180, 174, 0.2);
  animation: ringPulse 2s ease-out infinite;
}

.loader-logo-wrap::before {
  width: 110px; height: 110px;
  animation-delay: 0s;
}
.loader-logo-wrap::after {
  width: 140px; height: 140px;
  animation-delay: 0.6s;
}

@keyframes ringPulse {
  0%   { transform: scale(0.85); opacity: 0.6; }
  60%  { transform: scale(1.1);  opacity: 0.2; }
  100% { transform: scale(1.2);  opacity: 0; }
}

.loader-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(183,180,174,0.3);
  box-shadow: 0 0 35px rgba(55,30,30,0.8), 0 0 70px rgba(55,30,30,0.3);
  animation: logoFloat 2s ease-in-out infinite alternate;
  position: relative;
  z-index: 1;
}

@keyframes logoFloat {
  from { transform: translateY(-5px); filter: brightness(0.9); }
  to   { transform: translateY(5px);  filter: brightness(1.15); }
}

/* Brand text */
.loader-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: #B7B4AE;
  letter-spacing: 5px;
  text-transform: uppercase;
  animation: textGlow 1.8s ease-in-out infinite alternate;
}

.loader-text span {
  background: linear-gradient(135deg, #B7B4AE, #726E68);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes textGlow {
  from { opacity: 0.6; letter-spacing: 4px; }
  to   { opacity: 1;   letter-spacing: 6px; }
}

/* Progress bar */
.loader-bar-wrap {
  width: 220px;
  height: 2px;
  background: rgba(183,180,174,0.08);
  border-radius: 10px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #371E1E, #726E68, #B7B4AE);
  border-radius: 10px;
  animation: loadProgress 1.8s ease-in-out forwards;
}

@keyframes loadProgress {
  0%   { width: 0%; }
  30%  { width: 40%; }
  70%  { width: 80%; }
  100% { width: 100%; }
}
:root {
  --primary-color: #0A0A0A;
  --secondary-color: #33312F;
  --accent-color: #371E1E;
  --accent-glow: #726E68;
  --text-main: #B7B4AE;
  --text-muted: #726E68;
  --whatsapp-color: #25D366;
  --whatsapp-hover: #128C7E;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  background-color: var(--primary-color);
  color: var(--text-main);
  overflow-x: hidden;
}

/* 3D Scene wrapper */
.scene {
  transform-style: preserve-3d;
}

/* Floating orbs for depth */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: floatOrb 12s ease-in-out infinite alternate;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(55,30,30,0.45), transparent 70%);
  top: -100px; left: -150px;
  animation-duration: 14s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(114,110,104,0.25), transparent 70%);
  top: 10%; right: -100px;
  animation-duration: 18s;
  animation-delay: -6s;
}
.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(55,30,30,0.3), transparent 70%);
  bottom: 5%; left: 30%;
  animation-duration: 20s;
  animation-delay: -3s;
}

/* ── Text selection color ───────────────── */
::selection { background: rgba(55,30,30,0.55); color: #fff; }

/* ── Smooth focus rings for accessibility ── */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent-glow);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Glassmorphism utility */
.glass {
  background: rgba(40, 38, 36, 0.72);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(183, 180, 174, 0.14);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(183,180,174,0.10),
    0 0 0 0.5px rgba(183,180,174,0.06);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass:hover {
  border-color: rgba(183,180,174,0.22);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(183,180,174,0.14),
    0 0 0 0.5px rgba(183,180,174,0.08);
}

/* Scroll Reveal */
[sr] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
[sr].sr-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Hero content always visible */
.hero-content, .hero h1, .hero p, .badge, .cta-group {
  opacity: 1 !important;
  transform: none !important;
}

/* Stagger children reveal */
[sr]:nth-child(2) { transition-delay: 0.1s; }
[sr]:nth-child(3) { transition-delay: 0.2s; }
[sr]:nth-child(4) { transition-delay: 0.3s; }
[sr]:nth-child(5) { transition-delay: 0.4s; }

/* ── Gradient text utility ───────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--text-main), var(--accent-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 0.5rem 5%;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(183,180,174,0.2);
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 6px 20px rgba(55,30,30,0.5);
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-main), var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.5px;
  display: block;
  -webkit-text-fill-color: var(--text-muted);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-glow);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.contact-btn {
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  border-radius: 8px;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(55, 30, 30, 0.4);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
  transform-origin: center center;
  will-change: transform;
  animation: immersiveZoom 25s infinite alternate ease-in-out;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.6);
  z-index: -1;
}

.hero-content {
  max-width: 1000px;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: 5.5rem;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -2px;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 2px;
}

.btn-glow {
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 0 20px rgba(46, 204, 113, 0.4);
}

.btn-glow:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 35px rgba(46, 204, 113, 0.7);
}

.btn-glass {
  padding: 1.2rem 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounceScroll 2s infinite;
  z-index: 2;
}

@keyframes bounceScroll {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-15px) translateX(-50%); }
  60% { transform: translateY(-7px) translateX(-50%); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-badge span {
  background: linear-gradient(135deg, #fff, #aaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(55, 30, 30, 0.2);
  border: 1px solid rgba(114, 110, 104, 0.3);
  border-radius: 20px;
  color: var(--accent-glow);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  color: var(--text-main);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(55, 30, 30, 0.5);
}

.btn-secondary {
  padding: 1rem 2rem;
  background: rgba(183, 180, 174, 0.05);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(183, 180, 174, 0.1);
}

.btn-secondary:hover {
  background: rgba(183, 180, 174, 0.1);
  transform: translateY(-3px);
}

/* Features Section */
.features {
  padding: 8rem 5%;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2.5rem;
  border-radius: 20px;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: pointer;
}

/* Top edge glare — reflects like real 3D glass */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183,180,174,0.4), transparent);
  z-index: 2;
}

/* Bottom depth shadow layer */
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(55,30,30,0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover {
  box-shadow:
    0 30px 60px rgba(0,0,0,0.6),
    0 10px 25px rgba(55,30,30,0.3),
    inset 0 1px 0 rgba(183,180,174,0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(55,30,30,0.6), rgba(51,49,47,0.4));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  box-shadow:
    0 8px 20px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(183,180,174,0.15);
  transform: translateZ(20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: translateZ(40px) scale(1.1);
  box-shadow:
    0 15px 30px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(183,180,174,0.2);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transform: translateZ(10px);
  transition: transform 0.3s ease;
}

.feature-card:hover h3 {
  transform: translateZ(25px);
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
  transform: translateZ(5px);
  transition: transform 0.3s ease;
}

.feature-card:hover p {
  transform: translateZ(15px);
}

/* About Section */
.about {
  padding: 8rem 5%;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-content {
  flex: 1;
}

.about-image {
  flex: 0 0 420px;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  display: block;
}

.about-image:hover img {
  transform: scale(1.02);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.7);
}

.about-image::after {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  z-index: -1;
}

/* Trophy badge on about photo */
.about-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(183, 180, 174, 0.15);
  border-radius: 12px;
  padding: 0.6rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  letter-spacing: 0.3px;
}

.about-image-badge i {
  color: #d4af37;
  font-size: 1rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: var(--whatsapp-color);
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  animation: bounce 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: var(--whatsapp-hover);
  box-shadow: 0px 6px 25px rgba(37, 211, 102, 0.6);
  animation: none;
}

/* ── Premium Footer ──────────────────────────────────────────────── */
footer {
  background: linear-gradient(180deg, var(--secondary-color) 0%, #0A0A0A 100%);
  border-top: 1px solid rgba(183, 180, 174, 0.1);
  padding: 5rem 5% 2rem;
  position: relative;
  overflow: hidden;
}

/* subtle background grid texture */
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(183,180,174,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183,180,174,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

/* Brand Column */
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  text-decoration: none;
}

.footer-logo-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(183,180,174,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.footer-brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-main), var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.footer-brand-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  -webkit-text-fill-color: var(--text-muted);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item i {
  color: var(--accent-glow);
  width: 16px;
}

.footer-contact-item:hover {
  color: var(--text-main);
}

/* Footer Columns */
.footer-col h4 {
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-glow);
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-col ul li a:hover {
  color: var(--text-main);
  padding-left: 6px;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(183,180,174,0.08);
  border: 1px solid rgba(183,180,174,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent-color);
  border-color: var(--accent-glow);
  color: var(--text-main);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(55,30,30,0.4);
}

/* Footer Bottom Bar */
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(183,180,174,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--text-main);
}

/* Social Links (old selector kept for compatibility) */
.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: var(--text-muted);
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: var(--accent-glow);
  transform: translateY(-3px);
}

/* Responsive footer */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Animations */
@keyframes immersiveZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.2); }
}
@keyframes pulseBg {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-15px); }
  60% { transform: translateY(-7px); }
}

@keyframes floatOrb {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.05); }
  66%  { transform: translate(-20px, 20px) scale(0.97); }
  100% { transform: translate(30px, -10px) scale(1.02); }
}

@keyframes float3D {
  0%   { transform: translateY(0px) rotateX(0deg); }
  50%  { transform: translateY(-18px) rotateX(3deg); }
  100% { transform: translateY(0px) rotateX(0deg); }
}

/* 3D Hero depth */
.hero-content {
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.hero h1 {
  text-shadow:
    0 2px 4px rgba(0,0,0,0.5),
    0 8px 20px rgba(55,30,30,0.3);
}

/* Section depth dividers */
section {
  position: relative;
}

/* 3D about image depth glow */
.about-image img {
  transform: perspective(800px) rotateY(-5deg) scale(1.02);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.about-image:hover img {
  transform: perspective(800px) rotateY(0deg) scale(1.05);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(55,30,30,0.3);
}

/* 3D stat counters */
.stat-block {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.stat-block:hover {
  transform: translateZ(20px) scale(1.05);
}

.stat-block .stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-main), var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-block .stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

/* nav-enroll only shows inside the mobile menu overlay */
.nav-enroll { display: none; }

/* ==============================================
   RESPONSIVE DESIGN — Full Device Coverage
   ============================================== */

/* Hamburger Button (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.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); }

/* ── Tablet: 993px – 1199px ─────────────────── */
@media (max-width: 1199px) {
  .hero-title { font-size: 4rem; }
  .about { gap: 3rem; }
  .about-image { flex: 0 0 360px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* ── Small Tablet: 769px – 992px ───────────── */
@media (max-width: 992px) {
  .hero-title { font-size: 3.5rem; }
  .about { flex-direction: column; align-items: center; }
  .about-image { flex: 0 0 auto; width: 100%; max-width: 440px; }
  .about-image img { height: 420px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ── Mobile: ≤ 768px ────────────────────────── */
@media (max-width: 768px) {
  /* Header & Nav */
  header { padding: 0.9rem 5%; }
  .hamburger { display: flex; }
  .contact-btn { display: none; }
  nav {
    display: flex;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: 1000;
  }
  nav.nav-open { transform: translateX(0); }
  nav ul { flex-direction: column; gap: 2rem; text-align: center; }
  nav a { font-size: 1.5rem; }
  .nav-enroll {
    display: inline-flex;
    margin-top: 1rem;
    padding: 0.9rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--text-main);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
  }

  /* Hero */
  .hero { padding: 0 5%; min-height: 100svh; }
  .hero-title { font-size: 2.8rem; line-height: 1.2; }
  .hero-subtitle { font-size: 1.2rem; margin-bottom: 2rem; }
  .cta-group { flex-direction: column; align-items: stretch; gap: 1rem; }
  .btn-primary, .btn-secondary, .btn-glow, .btn-glass {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
  }
  .badge { font-size: 0.75rem; }

  /* Sections */
  .features { padding: 4rem 5%; }
  .features-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-header h2 { font-size: 1.8rem; }
  .section-header p { font-size: 0.95rem; }

  /* About */
  .about { padding: 4rem 5%; flex-direction: column; gap: 2.5rem; }
  .about-image { width: 100%; max-width: 100%; flex: unset; }
  .about-image img { height: 320px; }
  .about-image::after { display: none; }
  .about-content h2 { font-size: 1.8rem !important; }

  /* FAQ */
  .faq-item { padding: 1.2rem !important; }
  .faq-item h3 { font-size: 1rem !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-brand-name { font-size: 1.1rem; }

  /* WhatsApp button */
  .whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; font-size: 24px; }
}

/* ── Small Mobile: ≤ 480px ──────────────────── */
@media (max-width: 480px) {
  .hero-title { font-size: 2.3rem; }
  .logo-text { font-size: 1rem; }
  .logo-sub { font-size: 0.55rem; }
  .logo-img { width: 32px; height: 32px; }
  .about-image img { height: 260px; }
  .loader-text { font-size: 1.3rem; }
  .loader-bar-wrap { width: 160px; }
  .section-header h2 { font-size: 1.6rem; }
  .footer-logo-img { width: 30px; height: 30px; }
}


/* ================================================
   GALLERY SECTION
   ================================================ */
.gallery-section {
  padding: 8rem 5%;
  position: relative;
  overflow: hidden;
  background: var(--primary-color);
}

/* Depth orbs specific to gallery */
.orb-gallery-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(55,30,30,0.35), transparent 70%);
  top: 0; right: -200px;
  animation-duration: 16s;
}
.orb-gallery-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(114,110,104,0.18), transparent 70%);
  bottom: 5%; left: -150px;
  animation-duration: 22s;
  animation-delay: -8s;
}

/* ── Masonry-style CSS grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 1.2rem;
  max-width: 1300px;
  margin: 0 auto;
}

/* Base gallery item */
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.35s cubic-bezier(0.22,1,0.36,1);
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 30px 60px rgba(0,0,0,0.65),
              0 0 40px rgba(55,30,30,0.3);
  z-index: 2;
}

/* Span variants */
.gallery-item--tall  { grid-row: span 2; }
.gallery-item--wide  { grid-column: span 2; }

/* ── Placeholder / upload zone ── */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.gallery-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border: 2px dashed rgba(183,180,174,0.2);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
  pointer-events: none;
  user-select: none;
  text-align: center;
  padding: 1rem;
}

.gallery-item:hover .gallery-upload-label,
.gallery-item:focus-within .gallery-upload-label {
  border-color: rgba(183,180,174,0.45);
  color: var(--text-main);
  background: rgba(183,180,174,0.04);
}

.gallery-upload-label i {
  font-size: 2rem;
  color: rgba(114,110,104,0.6);
  transition: color 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-upload-label i {
  color: var(--accent-glow);
  transform: scale(1.12);
}

.gallery-upload-label span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.gallery-upload-label small {
  font-size: 0.72rem;
  color: rgba(114,110,104,0.55);
  letter-spacing: 1px;
}

/* Loaded image preview */
.gallery-preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  z-index: 1;
  transition: transform 0.45s ease;
}

.gallery-item:hover .gallery-preview-img {
  transform: scale(1.06);
}

/* ── Hover overlay with caption + expand button ── */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(10,10,10,0.82) 0%,
    rgba(10,10,10,0.15) 50%,
    transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
  border-radius: 16px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption-text {
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  max-width: 80%;
  line-height: 1.3;
}

.gallery-expand-btn {
  width: 36px;
  height: 36px;
  background: rgba(183,180,174,0.15);
  border: 1px solid rgba(183,180,174,0.2);
  border-radius: 50%;
  color: var(--text-main);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}

.gallery-expand-btn:hover {
  background: var(--accent-color);
  transform: scale(1.15);
}

/* Top shimmer edge */
.gallery-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183,180,174,0.35), transparent);
  z-index: 4;
}

/* ================================================
   LIGHTBOX
   ================================================ */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99000;
  background: rgba(5,5,5,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 85vw;
  max-height: 90vh;
}

#lightboxImg {
  max-width: 85vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8),
              0 0 60px rgba(55,30,30,0.3);
  border: 1px solid rgba(183,180,174,0.15);
}

.lightbox-caption {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(183,180,174,0.1);
  border: 1px solid rgba(183,180,174,0.18);
  border-radius: 50%;
  color: var(--text-main);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  z-index: 2;
}

.lightbox-close:hover {
  background: var(--accent-color);
  transform: scale(1.1) rotate(90deg);
}

.lightbox-nav {
  width: 50px;
  height: 50px;
  background: rgba(183,180,174,0.1);
  border: 1px solid rgba(183,180,174,0.18);
  border-radius: 50%;
  color: var(--text-main);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}

.lightbox-nav:hover {
  background: rgba(55,30,30,0.5);
  transform: scale(1.1);
}

/* ── Gallery responsive ── */
@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 768px) {
  .gallery-section { padding: 4rem 5%; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 0.9rem;
  }
  .gallery-item--wide  { grid-column: span 2; }
  .gallery-item--tall  { grid-row: span 1; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-item--wide,
  .gallery-item--tall { grid-column: span 1; grid-row: span 1; }
  .lightbox-nav { display: none; }
}






