@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;700;800&display=swap');

/* 1. ULTRA-MODERN VARIABLES */
:root {
    --primary: #FF4757;
    --primary-gradient: linear-gradient(135deg, #FF4757 0%, #ff7979 100%);
    --dark-gradient: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --bg-app: #F8FAFC;
    --surface: #FFFFFF;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --border-light: rgba(0,0,0,0.06);
    --shadow-sm: 0 4px 10px rgba(0,0,0,0.03);
    --shadow-lg: 0 24px 50px rgba(0,0,0,0.06);
    --shadow-glow: 0 12px 30px rgba(255, 71, 87, 0.3);
    --radius-xl: 30px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-pill: 100px;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }
body { background: var(--bg-app); color: var(--text-main); line-height: 1.7; overflow-x: hidden; font-size: 16px; }

h1, h2, h3, h4 { font-weight: 800; color: var(--text-main); letter-spacing: -0.5px; }
a { text-decoration: none; color: inherit; transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 90%; max-width: 1300px; margin: 0 auto; }

/* 2. GLASSMORPHIC HEADER */
.header-stack {
    position: sticky; top: 0; z-index: 9999; width: 100%;
    /* Removing background to let the header element handle glassmorphism */
    background: transparent !important; 
    box-shadow: none !important;
}
header {
    background: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 15px 5%; height: 85px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.4s ease;
}
header.scrolled {
    height: 70px;
    background: rgba(15, 23, 42, 0.95) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.logo { font-size: 1.5rem; font-weight: 800; color: white !important; text-transform: uppercase; letter-spacing: -0.5px; }
.logo span { color: var(--primary) !important; }

.nav-links a { color: #CBD5E1 !important; font-weight: 600; font-size: 0.95rem; margin-left: 30px; }
.nav-links a:hover { color: #FFFFFF !important; transform: translateY(-2px); text-shadow: 0 4px 10px rgba(255,255,255,0.3); }

/* 3. BUTTONS (Neon Glow & Gradients) */
.btn-book, .cta-btn, .card-btn {
    background: var(--primary-gradient) !important;
    color: white !important; font-weight: 700; border-radius: var(--radius-pill);
    border: none; cursor: pointer; display: inline-block;
    box-shadow: var(--shadow-glow); text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.btn-book:hover, .cta-btn:hover, .card-btn:hover {
    transform: translateY(-4px) scale(1.03) !important;
    box-shadow: 0 20px 40px rgba(255, 71, 87, 0.5) !important;
}
.btn-book { padding: 12px 28px !important; }
.card-btn { padding: 14px 20px !important; border-radius: var(--radius-md) !important; margin-top: auto; }

/* 4. SECTIONS & TYPOGRAPHY */
.section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.8rem; margin-bottom: 10px; }
.divider { height: 6px; width: 60px; background: var(--primary-gradient); margin: 0 auto; border-radius: var(--radius-pill); }

/* 5. DYNAMIC GRIDS (Apple Style) */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; justify-content: center; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 25px; }

/* 6. ADV-CARD REDESIGN (Deep Shadows + Huge Radius) */
.adv-card { 
    background: var(--surface) !important; 
    border-radius: var(--radius-xl) !important; 
    overflow: hidden; 
    box-shadow: var(--shadow-lg) !important; 
    border: 1px solid var(--border-light) !important;
    display: flex; flex-direction: column; height: 100%;
    max-width: 270px; margin: 0 auto; width: 100%;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    transform: translateY(0) scale(1);
}
.adv-card:hover { 
    transform: translateY(-8px) scale(1.02) !important; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.12) !important; 
    border-color: rgba(255, 71, 87, 0.3) !important;
}
.adv-card p {
    display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 0.9rem !important; height: 42px; margin-bottom: 12px;
}

.card-img { 
    height: 140px; position: relative; overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.adv-card:hover .card-img img { transform: scale(1.08); }

/* Glassmorphism Badge */
.badge { 
    position: absolute; top: 15px; right: 15px; 
    background: rgba(255, 255, 255, 0.9) !important; 
    backdrop-filter: blur(10px);
    color: var(--primary) !important; 
    padding: 6px 16px !important; 
    font-weight: 800; font-size: 0.75rem; 
    border-radius: var(--radius-pill); z-index: 5; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    border: 1px solid rgba(255,255,255,0.5);
}

.card-body { padding: 15px !important; flex-grow: 1; display: flex; flex-direction: column; }
.card-title { font-size: 1.2rem; margin-bottom: 15px; display: flex; justify-content: space-between; align-items: center; }
.card-title h3 { font-size: 1.1rem; font-weight: 800; color: var(--text-main); }
.price { color: var(--text-main) !important; font-size: 1.3rem !important; font-weight: 800 !important; }

/* Clean specs layout */
.card-specs { 
    display: flex; gap: 8px; margin-bottom: 15px !important; flex-wrap: wrap;
    background: var(--bg-app); padding: 10px; border-radius: var(--radius-md);
    font-size: 0.8rem !important; color: var(--text-muted) !important; font-weight: 700 !important; 
}
.card-specs i { color: var(--primary) !important; margin-right: 4px; }

/* 7. FEATURE BOXES (Neo-Brutalism + Glass) */
.feature-box { 
    padding: 40px 30px; background: var(--surface); border-radius: var(--radius-lg); 
    box-shadow: var(--shadow-sm); text-align: center; border: 1px solid var(--border-light); 
    height: 100%; transition: all 0.4s ease;
}
.feature-box:hover { 
    transform: translateY(-8px); 
    box-shadow: var(--shadow-lg); 
    border-bottom: 4px solid var(--primary); 
    background: var(--dark-gradient);
    color: white;
}
.feature-box:hover p { color: #CBD5E1; }
.feature-box:hover h3 { color: white; }
.feature-box i { font-size: 3.5rem; color: var(--primary); margin-bottom: 25px; display: block; transition: 0.4s; }
.feature-box:hover i { transform: scale(1.1); color: white; }

/* 8. TESTIMONIALS (Google Style Remastered) */
.swiper { padding-bottom: 60px !important; padding-top: 20px; }
.swiper-slide { height: auto !important; display: flex; justify-content: center; }
.testi-card {
    background: var(--surface); padding: 40px; border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg); border: 1px solid var(--border-light);
    width: 100%; height: 100%; display: flex; flex-direction: column; position: relative;
    transition: 0.4s;
}
.testi-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.testi-card p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; font-style: italic; }

/* 9. VIDEO PREVIEWS (Rounded & Cinematic) */
.intro-video-container { 
    border-radius: var(--radius-xl) !important; 
    box-shadow: var(--shadow-lg) !important; 
    border: none !important; 
    overflow: hidden; 
}
.video-thumbnail-portrait { border-radius: var(--radius-xl) !important; }
.play-btn { background: var(--glass-bg) !important; backdrop-filter: blur(10px); color: var(--primary) !important; box-shadow: 0 10px 30px rgba(0,0,0,0.1); width: 80px !important; height: 80px !important; font-size: 24px !important; }
.play-btn:hover { background: var(--primary) !important; color: white !important; transform: translate(-50%, -50%) scale(1.15) !important; }

/* 10. FAQ ACCORDION (Sleek UI) */
.faq-grid { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-card { background: var(--surface); border-radius: var(--radius-md); border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); overflow: hidden; transition: 0.3s; }
.faq-card.active { border-color: var(--primary); box-shadow: var(--shadow-glow); transform: scale(1.02); }
.faq-head { padding: 25px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 1.1rem; color: var(--text-main); }
.faq-body { max-height: 0; overflow: hidden; transition: all 0.5s ease; background: #FAFAFA; opacity: 0; }
.faq-card.active .faq-body { opacity: 1; padding-bottom: 25px; }
.faq-body p { padding: 0 25px; color: var(--text-muted); font-size: 1rem; }

/* 11. SHORTS GRID (App Style) */
.short-container { border-radius: var(--radius-lg) !important; box-shadow: var(--shadow-sm) !important; border: 1px solid var(--border-light); }
.short-container:hover { box-shadow: var(--shadow-glow) !important; border-color: var(--primary); }

/* MOBILE RESPONSIVE TWEAKS */
@media (max-width: 900px) {
    .nav-links { display: none; position: absolute; top: 80px; left: 0; width: 100%; background: var(--dark-gradient); flex-direction: column; padding: 2rem; border-radius: 0 0 20px 20px; box-shadow: var(--shadow-lg); }
    .nav-links.active { display: flex; }
    .nav-links a { margin-left: 0; margin-bottom: 20px; font-size: 1.2rem; }
    .btn-book { width: 100%; }
    
    .section-header h2 { font-size: 2.2rem; }
}

/* 12. HERO SECTION & FOOTER MASTER CLASSES */
.hero { 
    height: 90vh; background-size: cover; background-position: center; 
    display: flex; align-items: center; justify-content: center; text-align: center; 
    position: relative; margin-top: 0;
}
.hero::before { 
    content: ''; position: absolute; inset: 0; 
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.95)); 
}
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 20px; }
.hero h1 { font-size: 4rem; color: #fff; text-shadow: 0 10px 30px rgba(0,0,0,0.5); letter-spacing: -1px; }
.hero-sub { color: #E2E8F0; font-size: 1.5rem; }

footer { background: var(--text-main); color: #94A3B8; padding: 6rem 5% 2rem; position: relative; z-index: 2;}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; }
.footer-col h4 { color: white; margin-bottom: 25px; font-size: 1.2rem; letter-spacing: -0.5px; }
.footer-col ul a { display: block; color: #94A3B8; padding: 8px 0; transition: 0.3s; }
.footer-col ul a:hover { color: white; padding-left: 8px; }
.social-icons a { 
    display: inline-flex; width: 45px; height: 45px; 
    background: rgba(255,255,255,0.05); color: white !important; 
    border-radius: 50%; justify-content: center; align-items: center; 
    margin-right: 12px; transition: 0.3s; 
}
.social-icons a:hover { background: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.copyright { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 4rem; padding-top: 2rem; text-align: center; font-size: 0.95rem; }

@media (max-width: 900px) {
    .hero h1 { font-size: 2.8rem; }
    .hero-sub { font-size: 1.2rem; }
}

.vid-landscape {
    max-width: 850px; margin: 0 auto; padding: 20px;
    background: var(--surface); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light);
}
.vid-landscape .video-thumbnail {
    border-radius: var(--radius-lg); overflow: hidden; position: relative;
    aspect-ratio: 16/9;
}
.vid-landscape img { width: 100%; height: 100%; object-fit: cover; }

.grid-2-media { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 900px) { .grid-2-media { grid-template-columns: 1fr; } }

.list-box {
    background: var(--surface); padding: 35px; border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm); border: 1px solid var(--border-light);
}
.check-list { margin-top: 15px; }
.check-list li {
    margin-bottom: 12px; font-size: 1.05rem; display: flex; align-items: flex-start; color: var(--text-main);
}
.check-list li i { margin-top: 6px; margin-right: 12px; }

/* 15. NARRATIVE GRID (Home & About Layout Fix) */
.intro-grid {
    display: flex; align-items: center; gap: 30px; flex-wrap: wrap; margin-bottom: 2rem;
}
.intro-text { flex: 1; min-width: 300px; }
.intro-video-container { 
    flex: 0 0 280px; cursor: pointer; position: relative; margin: 0 auto;
    border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); overflow: hidden;
    padding: 10px; background: white; border: 1px solid var(--border-light);
}
.video-thumbnail-portrait {
    width: 100%; aspect-ratio: 4/5; position: relative; background: #000; border-radius: var(--radius-lg); overflow: hidden;
}
.video-thumbnail-portrait img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }

@media (max-width: 900px) {
    .intro-grid { flex-direction: column; }
    .intro-video-container { max-width: 280px; width: 100%; order: -1; margin-bottom: 2rem; }
    .intro-text { text-align: center; }
}