:root {
  --bg: #ffffff;
  --bg2: #f8fafb;
  --bg3: #f0f4f6;
  --emerald: #059669;
  --emerald2: #10b981;
  --emerald-light: #d1fae5;
  --emerald-glow: rgba(5, 150, 105, 0.12);
  --cyan: #06b6d4;
  --cyan2: #22d3ee;
  --cyan-glow: rgba(6, 182, 212, 0.10);
  --silver: #94a3b8;
  --silver2: #cbd5e1;
  --black: #0f172a;
  --gray: #64748b;
  --gray2: #94a3b8;
  --card: rgba(255, 255, 255, 0.65);
  --card-hover: rgba(255, 255, 255, 0.85);
  --border: rgba(5, 150, 105, 0.10);
  --border-light: rgba(0, 0, 0, 0.06);
  --glass: rgba(255, 255, 255, 0.45);
  --glass-border: rgba(255, 255, 255, 0.70);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08), 0 2px 10px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.10), 0 4px 20px rgba(0,0,0,0.05);
  --shadow-glow: 0 0 40px rgba(5, 150, 105, 0.10), 0 0 80px rgba(6, 182, 212, 0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--bg); color: var(--black); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
body.loading { overflow: hidden; }
::selection { background: rgba(5, 150, 105, 0.15); color: var(--black); }

/* LOADER */
#loader { position: fixed; inset: 0; z-index: 10000; background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity .8s ease, visibility .8s ease; }
#loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo-wrap { margin-bottom: 2rem; }
.loader-logo { width: 100px; height: 100px; }
.loader-logo img { width: 100%; height: 100%; object-fit: contain; }
.loader-title { font-family: 'Playfair Display', serif; font-size: .85rem; font-weight: 600; letter-spacing: .2em; color: var(--gray); margin-bottom: 1.5rem; animation: fadeIn 1s .3s ease both; text-transform: uppercase; }
.loader-bar { width: 180px; height: 2px; background: var(--bg3); border-radius: 2px; overflow: hidden; }
.loader-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--emerald), var(--cyan)); border-radius: 2px; animation: loadFill 2s ease forwards; }
@keyframes loadFill { to { width: 100%; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* AMBIENT BACKGROUND */
.ambient-orb { position: fixed; border-radius: 50%; filter: blur(140px); pointer-events: none; z-index: 0; }
.orb-1 { width: 600px; height: 600px; background: var(--emerald-light); top: -200px; right: -150px; opacity: .5; animation: orbDrift1 25s ease-in-out infinite; }
.orb-2 { width: 500px; height: 500px; background: rgba(6, 182, 212, 0.08); bottom: -200px; left: -150px; opacity: .4; animation: orbDrift2 30s ease-in-out infinite; }
.orb-3 { width: 300px; height: 300px; background: rgba(5, 150, 105, 0.06); top: 50%; left: 50%; opacity: .3; animation: orbDrift3 35s ease-in-out infinite; }
@keyframes orbDrift1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-60px, 40px); } }
@keyframes orbDrift2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(40px, -60px); } }
@keyframes orbDrift3 { 0%, 100% { transform: translate(0, 0); } 33% { transform: translate(-40px, 30px); } 66% { transform: translate(30px, -40px); } }

/* CANVAS */
#bg-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }

/* TOP BAR */
.top-bar { background: var(--black); color: rgba(255,255,255,.7); padding: .45rem 2.5rem; display: flex; align-items: center; justify-content: space-between; font-size: .72rem; position: relative; z-index: 1000; }
.top-bar-left { display: flex; align-items: center; gap: 1.5rem; }
.top-bar-left a, .top-bar-left span { color: rgba(255,255,255,.7); text-decoration: none; display: inline-flex; align-items: center; gap: .35rem; transition: color .3s; }
.top-bar-left a:hover { color: var(--emerald2); }
.top-bar-right { display: flex; align-items: center; gap: .75rem; }
.top-bar-social { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 6px; transition: all .3s; text-decoration: none; }
.top-bar-social:hover { background: rgba(255,255,255,.1); }
.top-bar-social svg { width: 14px; height: 14px; fill: rgba(255,255,255,.6); transition: fill .3s; }
.top-bar-social:hover svg { fill: var(--emerald2); }

/* NAV */
nav { position: sticky; top: 0; left: 0; right: 0; z-index: 999; padding: .8rem 2.5rem; display: flex; align-items: center; justify-content: space-between; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-light); transition: all .4s ease; }
nav.scrolled { padding: .6rem 2.5rem; background: rgba(255, 255, 255, 0.95); box-shadow: var(--shadow-sm); }
.logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.logo-img { height: 56px; width: auto; object-fit: contain; transition: height .3s; }
nav.scrolled .logo-img { height: 46px; }
.nav-links { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
.nav-links a { color: var(--gray); text-decoration: none; font-size: .8rem; font-weight: 500; transition: color .3s; position: relative; padding-bottom: 4px; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px; background: linear-gradient(90deg, var(--emerald), var(--cyan)); transition: width .3s ease; border-radius: 2px; }
.nav-links a:hover, .nav-links a.active { color: var(--emerald); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-btn { background: linear-gradient(135deg, var(--emerald), var(--emerald2)) !important; color: #fff !important; padding: .5rem 1.3rem !important; border-radius: 8px; font-weight: 600 !important; box-shadow: 0 2px 16px rgba(5, 150, 105, 0.2); transition: all .3s !important; }
.nav-btn::after { display: none !important; }
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(5, 150, 105, 0.3) !important; }

/* Mobile Menu */
.menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 6px; z-index: 1001; }
.menu-btn span { display: block; width: 22px; height: 2px; background: var(--black); margin: 5px 0; border-radius: 2px; transition: all .3s; }
.menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-nav { display: none; position: fixed; inset: 0; background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); z-index: 998; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; opacity: 0; visibility: hidden; transition: all .4s; }
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a { color: var(--black); text-decoration: none; font-size: 1.2rem; font-weight: 500; transition: color .3s; }
.mobile-nav a:hover { color: var(--emerald); }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 2rem 2.5rem; position: relative; z-index: 1; overflow: hidden; }
.hero-bg-grid { position: absolute; inset: 0; background-image: radial-gradient(rgba(5, 150, 105, 0.06) 1px, transparent 1px); background-size: 40px 40px; opacity: .5; }
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.hero-content { }
.hero-pill { display: inline-flex; align-items: center; gap: .5rem; background: rgba(5, 150, 105, 0.05); border: 1px solid rgba(5, 150, 105, 0.12); padding: .4rem 1.1rem; border-radius: 50px; margin-bottom: 1.5rem; }
.hero-pill .dot { width: 6px; height: 6px; background: var(--emerald); border-radius: 50%; box-shadow: 0 0 8px var(--emerald); animation: blink 2s infinite; }
.hero-pill span { font-size: .7rem; color: var(--emerald); letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

.hero-reveal { animation: heroReveal .9s ease both; }
.hero-reveal:nth-child(1) { animation-delay: 0s; }
.hero-reveal:nth-child(2) { animation-delay: .15s; }
.hero-reveal:nth-child(3) { animation-delay: .3s; }
.hero-reveal:nth-child(4) { animation-delay: .45s; }
.hero-reveal:nth-child(5) { animation-delay: .6s; }
.hero-reveal:nth-child(6) { animation-delay: .75s; }
@keyframes heroReveal { from { opacity: 0; transform: translateY(30px); filter: blur(6px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }

h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; color: var(--black); }
h1 .g { background: linear-gradient(135deg, var(--emerald), var(--emerald2), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: clamp(.9rem, 1.4vw, 1.05rem); color: var(--gray); line-height: 1.7; margin-bottom: 2rem; max-width: 520px; font-weight: 400; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 2rem; background: linear-gradient(135deg, var(--emerald), var(--emerald2)); color: #fff; border: none; border-radius: 10px; font-size: .9rem; font-weight: 600; cursor: pointer; transition: all .3s; box-shadow: 0 4px 20px rgba(5, 150, 105, 0.25); text-decoration: none; font-family: inherit; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(5, 150, 105, 0.35); }
.btn-secondary { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 2rem; background: rgba(255, 255, 255, 0.7); color: var(--black); border: 1px solid var(--border-light); border-radius: 10px; font-size: .9rem; font-weight: 600; cursor: pointer; transition: all .3s; backdrop-filter: blur(12px); text-decoration: none; font-family: inherit; }
.btn-secondary:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(5, 150, 105, 0.2); }

/* HERO VISUAL */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 480px; }
.hero-logo-podium { position: relative; width: 360px; height: 360px; display: flex; align-items: center; justify-content: center; }
.hero-podium-base { position: absolute; bottom: 0; width: 320px; height: 40px; background: radial-gradient(ellipse at center, rgba(5,150,105,0.08) 0%, transparent 70%); border-radius: 50%; filter: blur(8px); }
.hero-logo-3d { width: 280px; height: 280px; position: relative; z-index: 2; animation: logoFloat 6s ease-in-out infinite; filter: drop-shadow(0 20px 40px rgba(5,150,105,0.15)); }
.hero-logo-3d img { width: 100%; height: 100%; object-fit: contain; }
@keyframes logoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

.floating-box { position: absolute; border-radius: 12px; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.5); box-shadow: var(--shadow-lg); z-index: 3; }
.box-1 { width: 70px; height: 70px; background: linear-gradient(135deg, rgba(5,150,105,0.1), rgba(6,182,212,0.06)); top: 10%; right: 0; animation: boxFloat1 7s ease-in-out infinite; }
.box-2 { width: 55px; height: 55px; background: linear-gradient(135deg, rgba(6,182,212,0.08), rgba(5,150,105,0.05)); bottom: 20%; left: 0; animation: boxFloat2 9s ease-in-out infinite; }
.box-3 { width: 45px; height: 45px; background: linear-gradient(135deg, rgba(5,150,105,0.07), rgba(6,182,212,0.04)); top: 30%; left: 10%; animation: boxFloat3 8s ease-in-out infinite; }
.box-4 { width: 60px; height: 60px; background: linear-gradient(135deg, rgba(6,182,212,0.06), rgba(5,150,105,0.08)); bottom: 10%; right: 10%; animation: boxFloat1 10s ease-in-out infinite reverse; }
@keyframes boxFloat1 { 0%, 100% { transform: translateY(0) rotate(12deg); } 50% { transform: translateY(-18px) rotate(18deg); } }
@keyframes boxFloat2 { 0%, 100% { transform: translateY(0) rotate(-8deg); } 50% { transform: translateY(-22px) rotate(-4deg); } }
@keyframes boxFloat3 { 0%, 100% { transform: translateY(0) rotate(5deg); } 50% { transform: translateY(-15px) rotate(10deg); } }

/* HERO FLOATING SHAPES */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.floating-shape { position: absolute; border-radius: 16px; backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.5); }
.shape-1 { width: 80px; height: 80px; top: 15%; left: 8%; background: rgba(5, 150, 105, 0.06); animation: float1 8s ease-in-out infinite; transform: rotate(15deg); box-shadow: 0 8px 32px rgba(5, 150, 105, 0.08); }
.shape-2 { width: 60px; height: 60px; top: 25%; right: 12%; background: rgba(6, 182, 212, 0.06); animation: float2 10s ease-in-out infinite; border-radius: 50%; box-shadow: 0 8px 32px rgba(6, 182, 212, 0.08); }
.shape-3 { width: 100px; height: 100px; bottom: 20%; left: 5%; background: rgba(5, 150, 105, 0.04); animation: float3 12s ease-in-out infinite; transform: rotate(-10deg); box-shadow: 0 8px 32px rgba(5, 150, 105, 0.06); }
.shape-4 { width: 50px; height: 50px; bottom: 30%; right: 8%; background: rgba(6, 182, 212, 0.05); animation: float1 9s ease-in-out infinite reverse; border-radius: 50%; box-shadow: 0 8px 32px rgba(6, 182, 212, 0.06); }
@keyframes float1 { 0%, 100% { transform: translateY(0) rotate(15deg); } 50% { transform: translateY(-25px) rotate(20deg); } }
@keyframes float2 { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(5deg); } }
@keyframes float3 { 0%, 100% { transform: translateY(0) rotate(-10deg); } 50% { transform: translateY(-30px) rotate(-5deg); } }

/* HERO TRUST BADGES */
.hero-trust { display: flex; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; align-items: center; }
.hero-trust-item { display: flex; align-items: center; gap: .5rem; font-size: .75rem; color: var(--gray); font-weight: 500; }
.hero-trust-item .trust-icon { width: 28px; height: 28px; background: rgba(5, 150, 105, 0.06); border: 1px solid rgba(5, 150, 105, 0.10); border-radius: 8px; display: grid; place-items: center; font-size: .75rem; color: var(--emerald); flex-shrink: 0; }

/* SECTIONS */
section { position: relative; z-index: 1; padding: 6rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { display: inline-flex; align-items: center; gap: .5rem; font-size: .7rem; color: var(--emerald); letter-spacing: .15em; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; }
.section-label .line { width: 24px; height: 1.5px; background: linear-gradient(90deg, var(--emerald), var(--cyan)); border-radius: 2px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; line-height: 1.15; margin-bottom: 1rem; color: var(--black); }
.section-desc { color: var(--gray); font-size: 1rem; line-height: 1.7; max-width: 600px; }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: all .8s cubic-bezier(.16, 1, .3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* SERVICES */
.services-section { background: var(--bg2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.service-card { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.8); border-radius: 20px; padding: 2rem; transition: all .4s cubic-bezier(.16, 1, .3, 1); cursor: default; position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--emerald), var(--cyan)); opacity: 0; transition: opacity .4s; border-radius: 20px 20px 0 0; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl), var(--shadow-glow); border-color: rgba(5, 150, 105, 0.15); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--emerald-glow), rgba(6, 182, 212, 0.08)); border-radius: 14px; display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 1.2rem; border: 1px solid rgba(5, 150, 105, 0.10); transition: all .4s; }
.service-card:hover .service-icon { box-shadow: 0 0 24px rgba(5, 150, 105, 0.15); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; color: var(--black); }
.service-card p { font-size: .82rem; color: var(--gray); line-height: 1.65; }

/* WHY CHOOSE US */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.why-card { text-align: center; padding: 2rem 1.5rem; background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(12px); border: 1px solid var(--border-light); border-radius: 20px; transition: all .4s; box-shadow: var(--shadow-sm); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(5, 150, 105, 0.12); }
.why-icon { width: 60px; height: 60px; margin: 0 auto 1.2rem; background: linear-gradient(135deg, var(--emerald-glow), var(--cyan-glow)); border-radius: 16px; display: grid; place-items: center; font-size: 1.5rem; border: 1px solid rgba(5, 150, 105, 0.10); }
.why-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: .5rem; color: var(--black); }
.why-card p { font-size: .78rem; color: var(--gray); line-height: 1.6; }

/* PREMIUM GLASS CARDS */
.premium-glass-card { background: rgba(255, 255, 255, 0.55); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(255, 255, 255, 0.8); border-radius: 24px; padding: 2.2rem 1.8rem; transition: all .5s cubic-bezier(.16, 1, .3, 1); position: relative; overflow: hidden; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02); cursor: default; }
.premium-glass-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--emerald), var(--cyan), transparent); opacity: 0; transition: opacity .5s; }
.premium-glass-card::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(5, 150, 105, 0.04), transparent 70%); opacity: 0; transition: opacity .5s; pointer-events: none; }
.premium-glass-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 20px 60px rgba(5, 150, 105, 0.10), 0 8px 30px rgba(0, 0, 0, 0.06), 0 0 80px rgba(5, 150, 105, 0.05); border-color: rgba(5, 150, 105, 0.15); }
.premium-glass-card:hover::before { opacity: 1; }
.premium-glass-card:hover::after { opacity: 1; }
.premium-card-icon { width: 64px; height: 64px; background: linear-gradient(135deg, rgba(5, 150, 105, 0.08), rgba(6, 182, 212, 0.06)); border: 1px solid rgba(5, 150, 105, 0.12); border-radius: 18px; display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 1.4rem; transition: all .5s; position: relative; }
.premium-card-icon::after { content: ''; position: absolute; inset: -3px; border-radius: 20px; background: linear-gradient(135deg, rgba(5, 150, 105, 0.15), rgba(6, 182, 212, 0.1)); z-index: -1; opacity: 0; transition: opacity .5s; filter: blur(8px); }
.premium-glass-card:hover .premium-card-icon { transform: scale(1.08); box-shadow: 0 0 30px rgba(5, 150, 105, 0.12); }
.premium-glass-card:hover .premium-card-icon::after { opacity: 1; }
.premium-glass-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; color: var(--black); }
.premium-glass-card p { font-size: .82rem; color: var(--gray); line-height: 1.7; }

/* CTA SECTION */
.cta-section { background: linear-gradient(135deg, var(--emerald), var(--emerald2), #0d9488); padding: 5rem 2rem; text-align: center; position: relative; z-index: 1; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1), transparent 60%); }
.cta-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.85); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }
.btn-white { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 2.2rem; background: #fff; color: var(--emerald); border: none; border-radius: 10px; font-size: .9rem; font-weight: 700; cursor: pointer; transition: all .3s; box-shadow: 0 4px 20px rgba(0,0,0,0.1); text-decoration: none; font-family: inherit; }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.15); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.about-visual { position: relative; height: 420px; display: flex; align-items: center; justify-content: center; }
.about-glass-card { position: absolute; background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.7); border-radius: 20px; padding: 1.5rem; box-shadow: var(--shadow-lg); }
.about-card-1 { width: 240px; top: 10%; left: 5%; animation: aboutFloat1 6s ease-in-out infinite; z-index: 2; }
.about-card-2 { width: 200px; bottom: 10%; right: 5%; animation: aboutFloat2 8s ease-in-out infinite; z-index: 1; }
.about-card-3 { width: 160px; top: 50%; left: 45%; transform: translateY(-50%); animation: aboutFloat3 7s ease-in-out infinite; z-index: 3; }
@keyframes aboutFloat1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes aboutFloat2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes aboutFloat3 { 0%, 100% { transform: translateY(-50%); } 50% { transform: translateY(calc(-50% - 10px)); } }
.about-card-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--emerald-glow), rgba(6, 182, 212, 0.08)); border-radius: 12px; display: grid; place-items: center; font-size: 1.2rem; margin-bottom: .75rem; border: 1px solid rgba(5, 150, 105, 0.12); }
.about-card-title { font-weight: 700; font-size: .85rem; margin-bottom: .3rem; color: var(--black); }
.about-card-text { font-size: .72rem; color: var(--gray); line-height: 1.5; }
.about-sphere { position: absolute; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(5, 150, 105, 0.08), rgba(6, 182, 212, 0.04), transparent); top: 30%; left: 25%; animation: spherePulse 5s ease-in-out infinite; border: 1px solid rgba(5, 150, 105, 0.06); }
@keyframes spherePulse { 0%, 100% { transform: scale(1); opacity: .5; } 50% { transform: scale(1.08); opacity: .7; } }
.about-text p { color: var(--gray); line-height: 1.8; margin-bottom: 1.2rem; font-size: .95rem; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.about-highlight { display: flex; align-items: center; gap: .6rem; padding: .8rem 1rem; background: rgba(5, 150, 105, 0.03); border: 1px solid rgba(5, 150, 105, 0.08); border-radius: 10px; }
.about-highlight .icon { color: var(--emerald); font-size: .9rem; flex-shrink: 0; }
.about-highlight span { font-size: .78rem; font-weight: 500; color: var(--black); }

/* CONTACT */
.contact-section { background: var(--bg2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
.contact-info p { color: var(--gray); line-height: 1.8; margin-bottom: 1.5rem; font-size: .95rem; }
.contact-detail { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.contact-detail-icon { width: 40px; height: 40px; background: rgba(5, 150, 105, 0.06); border-radius: 10px; display: grid; place-items: center; font-size: 1rem; color: var(--emerald); border: 1px solid rgba(5, 150, 105, 0.10); flex-shrink: 0; }
.contact-detail span { font-size: .85rem; color: var(--black); font-weight: 500; }
.contact-detail a { color: inherit; text-decoration: none; }
.contact-form { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.8); border-radius: 20px; padding: 2rem; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .75rem; font-weight: 600; color: var(--black); margin-bottom: .4rem; text-transform: uppercase; letter-spacing: .06em; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: .75rem 1rem; background: rgba(255, 255, 255, 0.8); border: 1px solid var(--border-light); border-radius: 10px; font-size: .85rem; font-family: inherit; color: var(--black); transition: all .3s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: .85rem; background: linear-gradient(135deg, var(--emerald), var(--emerald2)); color: #fff; border: none; border-radius: 10px; font-size: .9rem; font-weight: 600; cursor: pointer; transition: all .3s; font-family: inherit; box-shadow: 0 4px 16px rgba(5, 150, 105, 0.2); }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3); }

/* MAP */
.map-section { padding: 6rem 2rem; background: var(--bg2); }
.map-section .section-inner { max-width: 1200px; margin: 0 auto; }
.map-container { position: relative; margin-top: 2.5rem; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-xl); border: 1px solid var(--glass-border); background: var(--card); }
.map-container iframe { width: 100%; height: 400px; border: 0; display: block; filter: saturate(0.85) contrast(1.05); }
.map-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 2.5rem; background: linear-gradient(0deg, rgba(255,255,255,0.95) 60%, rgba(255,255,255,0)); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); display: flex; align-items: center; gap: 1.5rem; }
.map-pin { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--emerald), var(--cyan)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 16px rgba(5,150,105,0.25); }
.map-pin svg { width: 22px; height: 22px; fill: #fff; }
.map-info h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--black); margin-bottom: .25rem; }
.map-info p { font-size: .9rem; color: var(--gray); line-height: 1.5; }

/* SOCIAL */
.social-section { text-align: center; padding: 5rem 2rem; position: relative; z-index: 1; }
.social-icons { display: flex; gap: 1.2rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.social-icon { width: 56px; height: 56px; background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(12px); border: 1px solid var(--border-light); border-radius: 14px; display: grid; place-items: center; transition: all .4s; cursor: pointer; box-shadow: var(--shadow-sm); text-decoration: none; }
.social-icon:hover { transform: translateY(-6px) scale(1.05); box-shadow: var(--shadow-lg), var(--shadow-glow); border-color: rgba(5, 150, 105, 0.15); }
.social-icon svg { width: 22px; height: 22px; fill: var(--gray); transition: fill .3s; }
.social-icon:hover svg { fill: var(--emerald); }

/* FOOTER */
footer { background: var(--black); color: rgba(255, 255, 255, 0.6); padding: 4rem 2rem 2rem; position: relative; z-index: 1; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.footer-brand .desc { font-size: .8rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255, 255, 255, 0.5); text-decoration: none; font-size: .82rem; margin-bottom: .6rem; transition: color .3s; }
.footer-col a:hover { color: var(--emerald2); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .75rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255, 255, 255, 0.4); text-decoration: none; font-size: .75rem; transition: color .3s; }
.footer-bottom-links a:hover { color: var(--emerald2); }

/* STICKY CALL */
.sticky-call { display: none; position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 997; width: 56px; height: 56px; background: linear-gradient(135deg, var(--emerald), var(--emerald2)); border-radius: 50%; box-shadow: 0 4px 20px rgba(5, 150, 105, 0.35), 0 0 40px rgba(5, 150, 105, 0.15); align-items: center; justify-content: center; text-decoration: none; transition: all .3s; animation: callPulse 2s ease-in-out infinite; }
.sticky-call:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(5, 150, 105, 0.45); }
.sticky-call svg { fill: #fff; width: 24px; height: 24px; }
@keyframes callPulse { 0%, 100% { box-shadow: 0 4px 20px rgba(5, 150, 105, 0.35), 0 0 40px rgba(5, 150, 105, 0.15); } 50% { box-shadow: 0 4px 20px rgba(5, 150, 105, 0.45), 0 0 60px rgba(5, 150, 105, 0.25); } }

/* CONTACT CALL CARD */
.contact-call-card { display: flex; align-items: center; gap: 1rem; padding: 1.2rem 1.5rem; background: rgba(5, 150, 105, 0.04); border: 1px solid rgba(5, 150, 105, 0.12); border-radius: 16px; margin-top: 1.5rem; transition: all .3s; text-decoration: none; }
.contact-call-card:hover { background: rgba(5, 150, 105, 0.07); box-shadow: 0 4px 20px rgba(5, 150, 105, 0.08); transform: translateY(-2px); }
.contact-call-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--emerald), var(--emerald2)); border-radius: 14px; display: grid; place-items: center; flex-shrink: 0; box-shadow: 0 4px 16px rgba(5, 150, 105, 0.2); }
.contact-call-icon svg { fill: #fff; width: 22px; height: 22px; }
.contact-call-text .call-label { font-size: .7rem; color: var(--gray); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; margin-bottom: .15rem; }
.contact-call-text .call-number { font-size: 1.1rem; font-weight: 700; color: var(--black); font-family: 'Playfair Display', serif; }

/* PAGE HEADER */
.page-header { padding: 8rem 2rem 4rem; text-align: center; background: var(--bg); position: relative; z-index: 1; overflow: hidden; }
.page-header .hero-bg-grid { position: absolute; inset: 0; background-image: radial-gradient(rgba(5, 150, 105, 0.06) 1px, transparent 1px); background-size: 40px 40px; opacity: .5; }
.page-header-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.page-header .breadcrumb { font-size: .75rem; color: var(--gray); margin-bottom: 1rem; }
.page-header .breadcrumb a { color: var(--emerald); text-decoration: none; }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.page-header p { color: var(--gray); font-size: 1rem; line-height: 1.7; max-width: 550px; margin: 0 auto; }

/* STATS COUNTER */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.stat-card { text-align: center; padding: 2rem 1rem; background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(12px); border: 1px solid var(--border-light); border-radius: 20px; box-shadow: var(--shadow-sm); }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--emerald); margin-bottom: .3rem; }
.stat-label { font-size: .78rem; color: var(--gray); font-weight: 500; }

/* TIMELINE */
.timeline { margin-top: 3rem; position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--emerald), var(--cyan)); border-radius: 2px; }
.timeline-item { position: relative; padding: 0 0 2.5rem 2rem; }
.timeline-item::before { content: ''; position: absolute; left: -2rem; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--emerald); border: 3px solid #fff; box-shadow: 0 0 0 4px rgba(5,150,105,0.12); transform: translateX(-6px); }
.timeline-item h4 { font-size: .95rem; font-weight: 700; color: var(--black); margin-bottom: .3rem; }
.timeline-item .year { font-size: .72rem; color: var(--emerald); font-weight: 600; letter-spacing: .05em; margin-bottom: .3rem; }
.timeline-item p { font-size: .82rem; color: var(--gray); line-height: 1.6; }

/* FAQ */
.faq-list { margin-top: 2rem; max-width: 700px; }
.faq-item { border: 1px solid var(--border-light); border-radius: 14px; margin-bottom: 1rem; overflow: hidden; background: rgba(255,255,255,0.6); backdrop-filter: blur(12px); transition: all .3s; }
.faq-item:hover { border-color: rgba(5,150,105,0.12); }
.faq-question { padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: .9rem; font-weight: 600; color: var(--black); transition: color .3s; }
.faq-question:hover { color: var(--emerald); }
.faq-question .faq-toggle { width: 28px; height: 28px; background: rgba(5,150,105,0.06); border-radius: 8px; display: grid; place-items: center; font-size: .8rem; color: var(--emerald); transition: all .3s; flex-shrink: 0; }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--emerald); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.2rem; font-size: .85rem; color: var(--gray); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.gallery-card { border-radius: 20px; overflow: hidden; background: rgba(255,255,255,0.7); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.8); box-shadow: var(--shadow-sm); transition: all .4s; position: relative; }
.gallery-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl), var(--shadow-glow); }
.gallery-card-visual { height: 200px; background: linear-gradient(135deg, rgba(5,150,105,0.06), rgba(6,182,212,0.04)); display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; overflow: hidden; }
.gallery-card-visual::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(5,150,105,0.05), transparent 70%); }
.gallery-card-body { padding: 1.5rem; }
.gallery-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: .4rem; }
.gallery-card-body p { font-size: .8rem; color: var(--gray); line-height: 1.6; }

/* PARTNER LOGOS */
.partner-logos { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 3rem; }
.partner-logo { width: 140px; height: 80px; background: rgba(255,255,255,0.6); backdrop-filter: blur(12px); border: 1px solid var(--border-light); border-radius: 14px; display: grid; place-items: center; transition: all .4s; box-shadow: var(--shadow-sm); }
.partner-logo:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(5,150,105,0.12); }
.partner-logo span { font-size: .7rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: .08em; }

/* FLOATING PARTICLES */
.premium-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.premium-particle { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: rgba(5, 150, 105, 0.15); }
.premium-particle:nth-child(1) { top: 10%; left: 15%; animation: particleFloat 8s ease-in-out infinite; }
.premium-particle:nth-child(2) { top: 20%; right: 20%; animation: particleFloat 10s ease-in-out infinite 1s; width: 6px; height: 6px; background: rgba(6, 182, 212, 0.12); }
.premium-particle:nth-child(3) { bottom: 30%; left: 10%; animation: particleFloat 12s ease-in-out infinite 2s; width: 3px; height: 3px; }
.premium-particle:nth-child(4) { top: 60%; right: 8%; animation: particleFloat 9s ease-in-out infinite 0.5s; width: 5px; height: 5px; background: rgba(6, 182, 212, 0.10); }
.premium-particle:nth-child(5) { bottom: 15%; left: 50%; animation: particleFloat 11s ease-in-out infinite 1.5s; }
.premium-particle:nth-child(6) { top: 40%; left: 30%; animation: particleFloat 7s ease-in-out infinite 3s; width: 3px; height: 3px; background: rgba(6, 182, 212, 0.12); }
@keyframes particleFloat { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; } 25% { transform: translate(15px, -20px) scale(1.2); opacity: 1; } 50% { transform: translate(-10px, -35px) scale(0.8); opacity: 0.4; } 75% { transform: translate(20px, -15px) scale(1.1); opacity: 0.9; } }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 2; }
  .hero-visual { order: 1; min-height: 320px; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-bar { padding: .35rem 1.2rem; font-size: .65rem; }
  .top-bar-left { gap: .8rem; }
  .top-bar-left .tb-email, .top-bar-left .tb-loc { display: none; }
  nav { padding: .7rem 1.2rem; }
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .mobile-nav { display: flex; }
  .hero { padding: 1.5rem 1.2rem; min-height: auto; }
  .hero-visual { min-height: 260px; }
  .hero-logo-3d { width: 200px; height: 200px; }
  .hero-logo-podium { width: 260px; height: 260px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { height: 300px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-shapes .floating-shape { display: none; }
  .sticky-call { display: flex; }
  .floating-box { display: none; }
  .page-header { padding: 6rem 1.2rem 3rem; }
  .map-container iframe { height: 300px; }
  .map-overlay { flex-direction: column; text-align: center; padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-trust { flex-direction: column; gap: .75rem; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
}
