/* --- VARIABLES & SETUP --- */
:root {
    /* Colors */
    --bg-color: #000000;
    --text-color: #ffffff;
    --text-muted: #a1a1aa;
    
    /* Logo Blue Logic */
    --accent-color: #2F80ED; /* Primary vibrant blue */
    --accent-light: #56CCF2; /* Lighter cyan */
    --accent-dark: #0f4c81;  /* Darker blue for gradients */
    
    /* Custom darker blue for Headers (requested) */
    --header-blue: #155bb5; 
    
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-speed: 0.3s;
    --container-width: 1200px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition-speed); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- UTILITY CLASSES --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: white;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
    z-index: -1;
    transition: opacity var(--transition-speed);
    opacity: 0;
}

.btn:hover::before { opacity: 1; }

.btn:hover {
    box-shadow: 0 0 20px rgba(47, 128, 237, 0.4);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Header Specific Button (Smaller) */
.btn-small {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* Contact Link Button */
.nav-link {
    color: #fff;
    font-weight: 500;
    margin-right: 20px;
    font-size: 0.95rem;
    padding: 5px 10px;
}

.nav-link:hover {
    color: var(--accent-color);
}

/* --- HEADER --- */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.85); 
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
    transition: padding 0.3s;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 40px; 
    width: auto;
}

/* --- HERO SECTION --- */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('flyyy.jng');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content {
    z-index: 2;
    width: 100%;
}

.hero-split-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
}

.hero-left {
    flex: 1;
    max-width: 50%;
    text-align: left;
}

.hero-left h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--header-blue); 
    text-shadow: 0px 4px 20px rgba(0,0,0,0.5);
}

.hero-sub {
    font-size: 1.1rem;
    color: #d1d5db; 
    margin-bottom: 3rem;
}

.hero-right {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
}


/* --- CAROUSEL / SLIDER --- */
.carousel-container {
    position: relative;
    background: rgba(0, 0, 0, 0.6); 
    border: 1px solid var(--card-border);
    border-radius: 12px;
    /* INCREASED PADDING (~ +2cm visual height) */
    padding: 6rem 3rem; 
    min-height: 280px;  
    width: 100%; 
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%) translateX(20px); 
    width: 85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    pointer-events: none;
    text-align: center;
}

.slide.active {
    opacity: 1;
    transform: translate(-50%, -50%) translateX(0);
    pointer-events: all;
    z-index: 2;
}

.slide-header {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pain-text {
    color: #ff6b6b;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.solution-box {
    background: rgba(47, 128, 237, 0.1);
    border: 1px solid rgba(47, 128, 237, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--accent-light);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-speed);
    z-index: 10;
}

.arrow:hover { 
    background: var(--accent-color); 
    color: white;
    border-color: var(--accent-color);
}
.prev { left: 15px; }
.next { right: 15px; }

.slider-controls {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-speed);
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
}

/* --- PRICING --- */
#pricing {
    padding: 100px 0;
    background: #050505;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-speed);
    position: relative;
    overflow: hidden; /* For the badge */
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(47, 128, 237, 0.15);
}

/* Featured / Most Popular Badge (UPDATED) */
.popular-badge {
    background: var(--accent-color);
    color: #fff;
    /* Smaller size */
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    /* Smaller padding */
    padding: 4px 10px;
    /* More rounded (pill shape) */
    border-radius: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(47, 128, 237, 0.4);
}

.package-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.2rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.features i { color: var(--accent-color); }

.price-note {
    display: block;
    text-align: center;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* --- NEW SECTION: CASE STUDIES --- */
#case-studies {
    /* Adjusted padding to fit spacing requests */
    padding: 100px 0 50px 0;
    background: #000000;
    border-bottom: 1px solid var(--card-border);
}

.case-studies-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.case-study-item {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--card-border);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    padding: 2.5rem 3rem;
    transition: var(--transition-speed);
}

.case-study-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.case-main {
    flex: 2;
    padding-right: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-main h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 700;
}

.case-main h3 i {
    color: var(--accent-color);
}

.case-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.case-details strong {
    color: #e0e0e0;
}

.case-outcome {
    margin-top: 1rem;
    background: rgba(47, 128, 237, 0.08);
    padding: 10px 15px;
    border-radius: 6px;
    color: var(--accent-light);
    font-size: 0.95rem;
    border: 1px solid rgba(47, 128, 237, 0.2);
    width: fit-content;
}

.case-cta-text {
    margin-top: 1.2rem;
    font-style: italic;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.9;
}

.case-roi-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--card-border);
    padding-left: 3rem;
    text-align: center;
    min-width: 280px;
}

.roi-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 5px;
}

.roi-label {
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.roi-sub {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.roi-sub span {
    background: rgba(255,255,255,0.05);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- INDIVIDUAL SOLUTIONS SECTION UPDATES --- */
#individual-solutions {
    /* REDUCED TOP PADDING (~ -2cm visual spacing relative to previous) */
    padding: 40px 0 100px 0; 
    background: #050505;
}

.individual-cta-container {
    text-align: center;
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.price-note-large {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
}

/* --- TESTIMONIALS --- */
#testimonials {
    padding: 100px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    border: 1px solid var(--card-border);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: scale(1.02);
    background: rgba(255,255,255,0.06);
}

.quote {
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.author {
    color: var(--accent-light);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- CTA FORM --- */
#cta-form {
    padding: 100px 0;
    background: radial-gradient(circle at center, #111827 0%, #000 70%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-main);
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(47, 128, 237, 0.2);
}

/* --- FOOTER --- */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--card-border);
    background-color: #020202;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Footer Logo Sizing */
.footer-logo {
    max-height: 50px;
    width: auto;
}

/* Social & Connect Text */
.social-links-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Align right on desktop */
}

.social-links { display: flex; gap: 20px; }

.social-links a {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.connect-text {
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-info p {
    color: var(--text-muted);
    margin-top: 5px;
    font-size: 0.9rem;
}

.contact-info i { width: 25px; color: var(--accent-color); }

.copyright {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.8rem;
    color: #444;
    width: 100%;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 968px) {
    .section-title { font-size: 2rem; }
    
    .hero-left h2 { font-size: 2.2rem; }
    
    .hero-split-layout {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-left, .hero-right {
        max-width: 100%;
        text-align: center;
        display: block; 
    }
    
    .hero-right {
        display: flex;
        justify-content: center;
    }
    
    .carousel-container {
        padding: 4rem 1.5rem;
        /* INCREASED MIN HEIGHT FOR MOBILE READABILITY */
        min-height: 400px; 
    }
    
    .slide {
        width: 100%;
        padding: 0 10px;
    }
    
    .solution-box {
        font-size: 0.9rem;
        flex-direction: column;
        text-align: center;
    }

    /* Case Study Responsive Stacking */
    .case-study-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .case-main {
        padding-right: 0;
        margin-bottom: 2rem;
        border-bottom: 1px solid var(--card-border);
        padding-bottom: 2rem;
    }
    
    .case-main h3 {
        justify-content: center;
    }
    
    .case-outcome {
        margin: 1rem auto;
    }

    .case-roi-panel {
        border-left: none;
        padding-left: 0;
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .social-links-container {
        align-items: center; /* Center on mobile */
    }
    
    .nav-flex {
        flex-direction: row; 
        align-items: center;
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
    }
    
    .nav-link {
        font-size: 0.85rem;
        margin-right: 15px;
    }
    
    .btn-small {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav-flex {
        flex-direction: column;
        gap: 10px;
    }
}