/* ==========================================
   BASE & STRUCTURAL RESET
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    background-color: #0b0b12;
    overflow-x: hidden;
}

/* FIX: Force the custom element itself to act as the sticky container window anchor */
shared-header {
    display: block;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Unified Internal Container Layout */
.sticky-nav-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #ffffff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 45px 0; 
    width: 100%;
}

.logo {
    margin-left: 10%;
    margin-right: 50px; 
    display: flex;
    align-items: center;
    z-index: 1002;
}

.logo img {
    height: 38px;
    width: auto;
    display: block;
}

/* Desktop Menu Layout */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 22px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: #777777;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.2s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: #0099ff;
}

#menu-toggle {
    display: none;
}

.hamburger-label {
    display: none; 
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 10%;
    z-index: 1002;
    flex-direction: column;
    gap: 5px;
}

.hamburger-label span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Notice Ribbons */
.construction-ribbon {
    background: rgba(255, 230, 0, 0.25); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    color: #ffe600; 
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 230, 0, 0.3); 
    width: 100%;
}

/* ==========================================
   HERO BANNER SECTION
   ========================================= */
.display-section {
    position: relative;
    height: 90vh;
    min-height: 650px; 
    background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.15)), url('images/space-bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.display-content {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.display-title {
    font-size: 4.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.7);
}

.display-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 45px;
    color: #dddddd;
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.6);
}

/* ==========================================
   CAROUSEL INTERFACE (THE POSSIBILITIES)
   ========================================== */
.possibilities-section {
    background-color: #0b0b12;
    padding: 80px 8%;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #0099ff;
    margin-bottom: 10px;
}

.section-main-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grid Layout */
.carousel-container {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr;
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: stretch;
}

/* Left Display Card */
.carousel-display {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    height: 580px; 
    overflow: hidden;
    position: relative;
}

.slide-content {
    display: none; 
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.slide-content.active {
    display: flex;
    animation: carouselFade 0.4s ease-in-out forwards;
}

/* Image Container Wrapper Box */
.slide-image-wrapper {
    width: 100%;
    height: 290px; 
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #14141c;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: var(--fit-type, cover); 
    display: block;
}

.slide-info-block {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.slide-title {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-text {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Right Selection Controls */
.carousel-nav-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: space-between; 
}

.nav-tab {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px 20px; 
    text-align: center; 
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.nav-tab h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-tab p {
    font-size: 12px;
    color: #888888;
    line-height: 1.4;
    transition: color 0.3s ease;
}

/* Interactive Highlights */
.nav-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-tab.active {
    background: rgba(0, 153, 255, 0.12);
    border-color: rgba(0, 153, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 153, 255, 0.15);
}

.nav-tab.active h3 {
    color: #0099ff;
}

.nav-tab.active p {
    color: #cccccc;
}

/* Buttons */
.btn-glass {
    background: rgba(0, 153, 255, 0.25); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 36px;
    border: 1px solid rgba(255, 255, 255, 0.4); 
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 153, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-glass:hover {
    background: rgba(0, 153, 255, 0.45); 
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 153, 255, 0.4);
}

@keyframes carouselFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   FEATURED GLASSMORPHISM BANNER LAYOUT
   ========================================== */
.featured-banner-section {
    position: relative;
    width: 100%;
    min-height: 650px; 
    
    /* Parallax Image Mapping with custom tint layer */
    background: linear-gradient(rgba(10, 10, 18, 0.2), rgba(10, 10, 18, 0.4)), url('images/20260119_103021[1].jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Creates parallax structural depth */
    
    /* Layout Center Alignment Anchors */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 90px 8%;
    overflow: hidden;
}

/* Glassmorphism Centered Floating Frosted Window */
.featured-card {
    /* Translucent white base providing the glass effect reflection */
    background: rgba(255, 255, 255, 0.06); 
    
    /* Crucial Glassmorphism properties: Blurs whatever image passes behind it */
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    
    /* Fine-drawn glass borders simulating 3D specular light highlights */
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    
    border-radius: 16px; /* Smooth card curvature matching dashboard cards */
    padding: 80px 60px;
    max-width: 960px;
    width: 100%;
    text-align: center;
    
    /* Deep soft ambient occlusion shadow to pull the glass panel forward */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
                
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Bright Electric Tracking Header */
.featured-label {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #0099ff; /* Swapped from dull brown to your iconic theme neon blue */
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 153, 255, 0.3);
}

/* High-Contrast Crisp White Title */
.featured-title {
    font-size: 3rem;
    font-weight: 800; 
    color: #ffffff; /* Flipped to white so it remains brilliantly readable over the glass tint */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: 25px;
    max-width: 800px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Soft Silver Content Description */
.featured-text {
    font-size: 16px;
    color: #ddddee; /* Shifted to clean silver for sleek visual harmony */
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 650px;
}

/* True Glowing Cyan/Blue Theme Glass Button Accent */
.btn-discover {
    background: rgba(0, 153, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 18px 40px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 25px rgba(0, 153, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-discover:hover {
    background: rgba(0, 153, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 153, 255, 0.5);
}

/* ==========================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================== */
@media (max-width: 900px) {
    .display-title {
        font-size: 2.2rem;
        line-height: 1.25;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    header {
        padding: 25px 0; 
        justify-content: center; 
        position: relative;
    }

    .logo {
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
    }

    .hamburger-label {
        display: flex;
        right: 5%;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        z-index: 1001;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
        gap: 0;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 15px 0;
        width: 100%;
        font-size: 16px;
        border-bottom: 1px solid #eeeeee;
    }
    
    nav ul li:last-child a {
        border-bottom: none;
    }

    #menu-toggle:checked ~ nav {
        max-height: 400px; 
    }

    #menu-toggle:checked ~ .hamburger-label span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    #menu-toggle:checked ~ .hamburger-label span:nth-child(2) {
        opacity: 0;
    }
    #menu-toggle:checked ~ .hamburger-label span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .possibilities-section {
        padding: 60px 5%;
    }

    .section-main-title {
        font-size: 2.2rem;
    }

    .carousel-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .carousel-display {
        height: auto; 
        padding: 25px;
    }

    .slide-image-wrapper {
        height: 200px;
    }

    .nav-tab {
        padding: 20px;
        text-align: left;
    }

    .nav-tab:hover {
        transform: none;
    }

    .featured-banner-section {
        background-attachment: scroll; 
        min-height: auto;
        padding: 50px 20px;
    }

    .featured-card {
        padding: 40px 25px;
    }

    .featured-title {
        font-size: 1.85rem;
    }
}

/* ==========================================
   GLOBAL FOOTER DESIGN
   ========================================== */
shared-footer {
    display: block;
    width: 100%;
    background-color: #050508;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 8% 30px 8%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

/* Re-inverts logo colors safely over the dark footer background */
.footer-logo img {
    height: 35px;
    width: auto;
    display: block;
    margin-bottom: 15px;
    filter: invert(1) brightness(2);
}

.footer-tagline {
    font-size: 14px;
    color: #888888;
    line-height: 1.5;
}

.footer-links-group {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0099ff;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #cccccc;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: #0099ff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666666;
}

.footer-credit {
    font-style: italic;
}

/* ==========================================
   GLASSMORPHISM QUOTES CAROUSEL
   ========================================== */
.quotes-section {
    background-color: #0b0b12;
    padding: 100px 8%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quotes-container {
    max-width: 900px;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 60px 50px 40px 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    min-height: 380px; /* Ensures layout layout stays anchored during text transitions */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Base Slide Transitions */
.quote-slide {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    flex-grow: 1;
}

.quote-slide.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transform: translateY(0);
}

/* Large decorative theme quotation marker */
.quote-icon {
    font-size: 5rem;
    font-family: serif;
    line-height: 1;
    color: #0099ff;
    opacity: 0.3;
    margin-bottom: -10px;
}

.quote-text {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: #eeeeee;
    margin-bottom: 25px;
    font-style: italic;
}

.quote-author {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0099ff;
    margin-bottom: 4px;
}

.quote-title {
    font-size: 12px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Nav Pagination Dots */
.quote-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
}

.quote-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-dots .dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.quote-dots .dot.active {
    background: #0099ff;
    box-shadow: 0 0 10px rgba(0, 153, 255, 0.6);
    transform: scale(1.2);
}

/* Small adjustments inside your mobile @media scope */
@media (max-width: 900px) {
    .quotes-section {
        padding: 60px 24px;
    }
    .quotes-container {
        padding: 40px 25px 30px 25px;
        min-height: 480px; /* Gives long paragraphs breathing room on small screens */
    }
    .quote-text {
        font-size: 1.05rem;
    }
}

.looking-for-section { padding: 40px 20px; text-align: center; }

.wide-carousel {
    display: flex;
    justify-content: center;
    min-height: 120px;
}

.wide-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    width: 100%;
    max-width: 600px;
}

.card-logo { width: 50px; height: 50px; }
.card-info { text-align: left; }
.card-info h3 { color: #fff; margin: 0; }
.link-text { font-weight: 600; display: block; }