:root {
    --primary: #062f1e;
    --primary-light: #0d4a32;
    --secondary: #64748b;
    --accent: #10b981;
    --accent-hover: #059669;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    
    --radius-lg: 24px;
    --radius: 16px;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.05);
    --shadow-heavy: 0 25px 50px -12px rgba(6,47,30,0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--bg-white); overflow-x: hidden; scroll-behavior: smooth; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-emerald { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-white { color: white; }
.text-light { color: rgba(255,255,255,0.8); }
.bg-white { background: var(--bg-white); }
.bg-light { background: var(--bg-light); }
.bg-gray { background: var(--bg-gray); }
.bg-dark { background: var(--primary); color: white; }
.text-center { text-align: center; }
.mb-50 { margin-bottom: 50px; }

/* Typography */
.huge-title { font-size: 3.5rem; letter-spacing: -2px; line-height: 1.1; margin-bottom: 15px; color: var(--primary); }
@media (max-width: 768px) { .huge-title { font-size: 2.5rem; } }
.subtitle { font-size: 1.25rem; color: var(--text-muted); }

/* Animation Classes */
.animate-slide-up { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.animate-fade-in { opacity: 0; transition: opacity 0.8s ease-out; }
.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* Buttons */
.btn-emerald { background: var(--accent); color: white; padding: 14px 28px; border-radius: 40px; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; border: none; cursor: pointer; }
.btn-emerald:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-glass { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: white; border: 1px solid rgba(255,255,255,0.2); padding: 14px 28px; border-radius: 40px; text-decoration: none; font-weight: 500; transition: all 0.3s; }
.btn-glass:hover { background: rgba(255,255,255,0.2); }
.drop-shadow-emerald { box-shadow: 0 10px 25px rgba(16,185,129,0.4); }
.btn-white-sm { background: white; color: var(--primary); padding: 10px 20px; border-radius: 30px; text-decoration: none; font-weight: 600; display: inline-block; font-size: 0.9rem; transition: transform 0.3s;}
.btn-white-sm:hover { transform: translateY(-2px); }
.btn-primary-sm { background: var(--primary); color: white; padding: 10px 20px; border-radius: 30px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: background 0.3s;}
.btn-primary-sm:hover { background: var(--accent); }

/* Header Glass */
.header { position: sticky; top: 0; z-index: 100; transition: background 0.3s, backdrop-filter 0.3s; }
.blur-nav { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(0,0,0,0.05); }
.header-container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { font-size: 1.5rem; font-weight: 400; color: var(--primary); display: flex; align-items: center; gap: 10px; }
.logo strong { font-weight: 800; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 0.95rem; transition: color 0.3s; }
.nav-links a:hover { color: var(--accent); }

/* Hero Immersive */
.hero-premium { background: var(--primary); min-height: 90vh; display: flex; align-items: center; position: relative; overflow: hidden; border-radius: 0 0 40px 40px;}
.hero-bg-mesh { position: absolute; inset: 0; opacity: 0.05; background-image: linear-gradient(rgba(255,255,255,1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px); background-size: 50px 50px; }
.hero-glow-emerald { position: absolute; top: 0; right: 0; width: 800px; height: 800px; background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, rgba(255,255,255,0) 60%); border-radius: 50%; pointer-events: none;}
.hero-content-premium { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; z-index: 10; position: relative; width: 100%; padding-top: 50px;}

.dat-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(16,185,129,0.15); color: var(--accent); padding: 8px 16px; border-radius: 30px; border: 1px solid rgba(16,185,129,0.3); font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 30px; }
.hero-text-premium h1 { font-size: 4.5rem; color: white; line-height: 1.05; margin-bottom: 30px; letter-spacing: -2.5px; font-weight: 800; }
.hero-sub { font-size: 1.25rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 40px; max-width: 90%; }
.hero-action-group { display: flex; gap: 20px; }

/* Floating Cards & Visual */
.hero-visual { position: relative; }
.hero-image-3d { width: 100%; object-fit: cover; border-radius: var(--radius-lg); transform: perspective(1000px) rotateY(-10deg) rotateX(5deg); box-shadow: -20px 20px 40px rgba(0,0,0,0.4); border: 2px solid rgba(255,255,255,0.1); }
.glass-card { position: absolute; background: rgba(255,255,255,0.1); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.2); padding: 20px; border-radius: var(--radius); color: white; display: flex; align-items: center; gap: 15px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.trust-card-1 { top: -20px; left: -40px; animation: float 6s ease-in-out infinite; }
.trust-card-2 { bottom: -30px; right: -20px; animation: float 7s ease-in-out infinite reverse; }
.icon-box { background: var(--accent); width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.2rem; }
.trust-text { display: flex; flex-direction: column; }
.trust-text strong { font-size: 1.05rem; }
.trust-text span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }

/* Bento Grid */
.section { padding: 120px 0; }
.bento-layout { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: auto auto; gap: 30px; margin-top: 50px; }
.bento-box { border-radius: var(--radius-lg); padding: 45px; position: relative; overflow: hidden; transition: transform 0.3s;}
.bento-box:hover { transform: translateY(-5px); }
.bento-large { grid-column: 1 / 2; grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: space-between; }
.bento-large h3 { font-size: 2.2rem; margin: 20px 0; letter-spacing: -1px; }
.bento-large p { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin-bottom: 30px; line-height: 1.6; max-width: 80%;}
.clean-list { list-style: none; }
.clean-list li { margin-bottom: 12px; display: flex; gap: 12px; align-items: center; font-size: 1.05rem; }
.tag-emerald { background: rgba(16,185,129,0.2); color: var(--accent); padding: 6px 16px; border-radius: 20px; font-weight: 700; font-size: 0.85rem; display: inline-block; }
.bento-img-right { position: absolute; right: 0; bottom: 0; width: 45%; height: 100%; object-fit: cover; opacity: 0.6; mix-blend-mode: luminosity;}
.fade-gradient { mask-image: linear-gradient(to right, transparent, black 50%); -webkit-mask-image: linear-gradient(to right, transparent, black 50%); }

.bento-medium { display: flex; flex-direction: column; justify-content: center;}
.bento-medium h3 { font-size: 1.6rem; color: var(--primary); margin-bottom: 10px; letter-spacing: -0.5px;}
.bento-medium p { color: var(--text-muted); line-height: 1.5; }
.icon-wrapper { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 25px; }

.bento-image-bg { background-size: cover; background-position: center; border: none; padding: 0;}
.bento-overlay { background: linear-gradient(to top, rgba(6,47,30,0.9), rgba(6,47,30,0.4)); width: 100%; height: 100%; padding: 45px; display: flex; flex-direction: column; justify-content: flex-end; }
.bento-overlay h3 { color: white; margin-bottom: 5px; }

/* Styling for Services/Prices Grid */
.card-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px; }
.modern-price-card { background: white; border-radius: var(--radius-lg); padding: 50px; border: 1px solid #e2e8f0; box-shadow: var(--shadow-soft); transition: transform 0.3s, box-shadow 0.3s;}
.modern-price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-heavy); }
.premium-mode { background: var(--primary); color: white; position: relative; border: none; }
.badge-abs { position: absolute; top: 45px; right: 45px; background: rgba(16,185,129,0.2); color: var(--accent); padding: 5px 15px; border-radius: 20px; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; }
.card-head { border-bottom: 1px solid #e2e8f0; padding-bottom: 30px; margin-bottom: 30px; }
.premium-mode .card-head { border-color: rgba(255,255,255,0.1); }
.card-head h4 { font-size: 1.5rem; color: var(--text-muted); margin-bottom: 10px; font-weight: 500;}
.premium-mode .card-head h4 { color: rgba(255,255,255,0.7); }
.price { font-size: 2.5rem; font-weight: 800; color: var(--primary); letter-spacing: -1px;}
.premium-mode .price { color: white; }
.card-body p { margin-bottom: 25px; color: var(--text-muted); }
.premium-mode .card-body p { color: rgba(255,255,255,0.7); }
.card-body ul { list-style: none; }
.card-body li { margin-bottom: 15px; display: flex; gap: 15px; align-items: center; font-weight: 500;}
.card-body i { color: var(--primary); }

/* Booking Section */
.booking-section { position: relative; overflow: hidden; padding-bottom: 150px;}
.glass-booking-panel { background: rgba(6,47,30,0.95); backdrop-filter: blur(20px); border-radius: var(--radius-lg); padding: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; color: white; box-shadow: var(--shadow-heavy); position: relative; z-index: 10; border: 1px solid rgba(255,255,255,0.1); }
.booking-text h2 { font-size: 3rem; color: white; margin-bottom: 20px; letter-spacing: -1px; }
.booking-text p { font-size: 1.15rem; color: rgba(255,255,255,0.7); }
.clean-form { display: flex; flex-direction: column; gap: 20px; }
.clean-form input, .clean-form select { width: 100%; padding: 18px 20px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.2); background: rgba(0,0,0,0.2); color: white; font-size: 1rem; font-family: inherit; transition: all 0.3s; }
.clean-form input::placeholder { color: rgba(255,255,255,0.5); }
.clean-form input:focus, .clean-form select:focus { outline: none; border-color: var(--accent); background: rgba(0,0,0,0.4); }
.clean-form select { color: rgba(255,255,255,0.8); }
.clean-form select option { background: var(--primary); color: white; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Footer */
.footer-ultra { padding: 40px 0; border-top: 1px solid #e2e8f0; }
.footer-flex { display: flex; justify-content: space-between; align-items: center; }
.footer-links { display: flex; gap: 30px; font-size: 0.9rem; color: var(--text-muted); }
.footer-links a { text-decoration: none; color: var(--text-muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--primary); }

@media (max-width: 900px) {
    .hero-content-premium, .bento-layout, .card-grid-2, .glass-booking-panel { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hero-text-premium h1 { font-size: 3.2rem; }
    .hero-action-group { flex-direction: column; }
    .bento-large { grid-column: auto; grid-row: auto; }
    .trust-card-1 { left: 10px; top: 10px; }
    .trust-card-2 { right: 10px; bottom: -10px; }
    .form-row { grid-template-columns: 1fr; }
}
