/* ==========================================================================
   1. HERO VIDEO SECTION (FIXED FOR WINDOW SCROLL TRACK)
   ========================================================================== */
.hero-video-section{
    position:relative;
    height:250vh;
    width:100%;
}

.hero-video-wrapper{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

#heroVideo{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.scroll-indicator{
    position:absolute;
    left:50%;
    bottom:40px;
    transform:translateX(-50%);
    z-index:9999;

    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;

    color:#fff;
    font-size:12px;
    letter-spacing:3px;
    text-transform:uppercase;

    pointer-events:none;
}

.scroll-dot{
    animation:scrollMove 1.5s infinite;
}

@keyframes scrollMove{

    0%{
        transform:translateY(0);
        opacity:1;
    }

    100%{
        transform:translateY(12px);
        opacity:0;
    }

}
/* RESPONSIVE BREAKPOINT FOR HERO HEIGHT ADJUSTMENTS */
@media (max-width: 991.98px) {
    .hero-video-section {
        /* Drop the 250vh track container down to a static viewport height layout */
        height: auto !important; 
        overflow: hidden;
    }
    
    .hero-video-wrapper {
        position: relative;
        width: 100%;
        height: auto;
    }
    .scroll-indicator{
        display: none !important;
    }
}




/* --- About Section Core Layout --- */
.about-section {
    background-color: #000;
    overflow: hidden;
}

.main-heading {
    line-height: 0.9;
    span{
        font-size: 52px;
    }
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
}

.sub-text {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.5;
}


#loader-video {
    height: 100%;
    object-fit: cover;
}

/* --- Text Effect Animations --- */
.text-highlight {
    font-weight: 500;
    color: #fff;
}


/* --- Right Side Graphic & Loop Animations --- */
.media-wrapper {
    position: relative;
    width: 300px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Abstract balancing shape structure replacing the image illustration */
.abstract-graphic {
    position: relative;
    width: 120px;
    height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cube-element {
    width: 50px;
    height: 75px;
    border: 2px solid #fff;
    transform: rotate(35deg);
    transform-origin: bottom center;
    animation: balanceCube 4s infinite ease-in-out;
    margin-bottom: -5px;
    z-index: 3;
}

.sphere-element {
    width: 24px;
    height: 24px;
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: #000;
    z-index: 2;
}

.base-element {
    width: 65px;
    height: 100px;
    background-color: #fff;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: -2px;
    z-index: 1;
}

/* --- Animation Keyframes --- */
@keyframes animate-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.animate-float {
    animation: animate-float 5s infinite ease-in-out;
}

@keyframes balanceCube {
    0%, 100% { transform: rotate(33deg); }
    50% { transform: rotate(39deg); }
}

@keyframes pulseBorder {
    0%, 100% { opacity: 0.5; transform: rotate(-2deg) scale(1); }
    50% { opacity: 0.9; transform: rotate(1deg) scale(1.03); }
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
    .main-heading {
        font-size: 2.8rem;
    }
    .lead-text {
        font-size: 1.25rem;
    }
    .sub-text {
        font-size: 1.1rem;
    }
    .media-wrapper {
        height: 260px;
    }
}






/* --- Showcase Section Base --- */
.project-showcase {
    background-color: #000;
}

.tracking-wider {
    letter-spacing: 2px;
}

.text-light-muted {
    color: rgba(255, 255, 255, 0.7);
}

/* --- Card Architecture --- */
.showcase-card {
    background: transparent;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5; /* Mimics your vertical frame crop perfectly */
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.showcase-card h4{
    font-size: 52px;
    span{
        font-size: 24px;
    }
}
.showcase-card a{
    padding: 8px 20px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    &:hover{
        background: var(--dark-color);
        color: #fff;
    }
}


/* --- Blur & Hover Overlay Engine --- */
.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25); /* Tinted orange/dark underlying atmospheric glow */
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}

/* Hover States trigger */
.showcase-card:hover .card-hover-overlay {
    opacity: 1;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.showcase-card:hover .card-img {
    transform: scale(1.05);
}

/* Overlay Elements Animations */
.overlay-content {
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase-card:hover .overlay-content {
    transform: translateY(0);
}

/* --- Custom Bottom Info Bar --- */
.card-footer-info {
    background-color: #111; /* Matching your black pill panel theme */
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 20px;
    border-radius: 14px;
    color: #fff;
    font-size: 0.95rem;
    position: absolute;
    width: 95%;
    bottom: 10px;
    z-index: 99999;
    left: 50%;
    transform: translateX(-50%);
    
}

.project-name {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.project-year {
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
}











.master-zoom-section {
    position: relative;
    background-color: #000;
    width: 100%;
    height: 250vh; 
    overflow: visible;
}

.sticky-window {
    position: relative; 
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Global Section Bottom Fade --- */
.global-bottom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5vh;
    background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 100%);
    z-index: 10;
    pointer-events: none;
}
.global-top-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10vh;
    background: linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0.8) 30%);
    z-index: 10;
    pointer-events: none;
}

/* The Landscape Grid Container */
.zoom-canvas {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px; 
    width: 100vw;
    height: 100vh;
    padding: 20px;
    align-items: center;
    transform-origin: center center;
    will-change: transform;
}

.canvas-col {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px; 
    will-change: transform;
}

/* Additional deep dynamic vignette for side tracks layout asymmetry */
.column-vignette-bottom {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, #000000 15%, rgba(0, 0, 0, 0) 100%);
    z-index: 5;
    pointer-events: none;
}

/* FORCE GPU RENDERING FOR ZOOM CANVAS ELEMENTS */
.zoom-canvas,
.canvas-col,
.img-holder,
.img-holder img {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* Clean Landscape Aspect Ratio Frame blocks */
.img-holder {
    width: 100%;
    aspect-ratio: 16 / 9; 
    border-radius: 12px;
    overflow: hidden;
    background-color: #111;
}

.img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}
/* MASSIVE IMMERSIVE FIX FOR MOBILE VIEWPORTS */
@media (max-width: 991.98px) {
    .master-zoom-section {
        height: 220vh; /* Gives plenty of smooth scroll depth */
    }

    .sticky-window {
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .zoom-canvas {
        /* CRITICAL: Force the grid layout width to spill outside the screen edges */
        width: 170vw !important; 
        height: 90vh !important;
        grid-template-columns: 1fr 1.2fr 1fr; /* Center column gets premium sizing priority */
        gap: 12px !important;
        padding: 0 15px !important;
    }

    .canvas-col {
        gap: 12px !important;
    }

    .img-holder {
        /* Taller cinematic rectangle profile for vertical smartphone screens */
        aspect-ratio: 4 / 3 !important; 
        border-radius: 10px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    /* Deep smooth overlay masks to hide background boundaries beautifully */
    .global-top-overlay {
        height: 25vh !important;
        background: linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 100%) !important;
    }
    
    .global-bottom-overlay {
        height: 25vh !important;
        background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 100%) !important;
    }
}
























/* --- Global Text Styles for this section --- */
.text-muted-custom {
    color: #888;
    font-size: 1.1rem;
}

.services-accordion-section {
    background-color: #000;
    overflow: visible;
}

.services-list-wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}

/* --- Row Layout Container --- */
.service-row-item {
    position: relative; /* Acts as the anchor point for the absolute preview box */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: background-color 0.25s ease;
}

/* Row Hover State Background change */
.service-row-item:hover {
    background-color: var(--primary-color); /* Vibrant Orange/Red block */
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    transition: all 0.25s ease;
}

.service-desc {
    font-size: 0.95rem;
    color: #aaa;
    margin: 0;
    transition: all 0.25s ease;
}

/* Change typography colors when active */
.service-row-item:hover .service-title {
    color: #000;
    transform: translateX(15px); /* Smooth nudge forward */
}

.service-row-item:hover .service-desc {
    color: #000;
}

/* --- Pure CSS Floating Image Box --- */
.floating-preview-box {
    position: absolute;
    top: 50%;
    left: 40%; /* Places it beautifully right in the middle between title and description */
    width: 260px;
    height: 180px;
    border: 3px solid #fff; /* White aesthetic frame border from video */
    border-radius: 12px;
    overflow: hidden;
    z-index: 10;
    pointer-events: none; /* Prevents the box from interfering with row selections */
    
    /* Starting Hidden State */
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.8) rotate(-10deg); 
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); /* Gives it a premium bouncy pop effect */
}

.floating-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- The Pure CSS Magic Hover State Trigger --- */
.service-row-item:hover .floating-preview-box {
    opacity: 1;
    visibility: visible;
    /* Pops up, straightens out slightly, and positions dynamically over the cursor field */
    transform: translate(-50%, -50%) scale(1) rotate(-4deg); 
}

/* --- Optimized Mobile & Tablet Responsiveness Layout --- */
@media (max-width: 991.98px) {
    
    /* 1. Unshackle the absolute container restrictions so rows behave like block elements */
    .service-row-item {
        padding: 25px 15px !important;
        cursor: default;
    }

    /* Disable the desktop background change on tap so mobile scrolling feels natural */
    .service-row-item:hover {
        background-color: transparent !important;
    }

    /* Prevent text color flipping or sliding on small viewports */
    .service-row-item:hover .service-title {
        color: #fff !important;
        transform: none !important;
    }

    .service-row-item:hover .service-desc {
        color: #aaa !important;
    }

    /* 2. RE-ENGINEER THE IMAGE BOX FOR TOUCH DEVICES */
    /* Instead of hiding it, we pull it into the document flow as a responsive asset card */
    .floating-preview-box {
        display: block !important; /* Overrides the previous hiding glitch */
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 220px !important; /* Explicitly fixed mobile height profile */
        margin-top: 20px;
        
        /* Make it visible right away without needing a mouse hover */
        opacity: 1 !important;
        visibility: visible !important;
        
        /* Remove the diagonal desktop tilt and scale animations */
        transform: none !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    }

    .floating-preview-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Extra polishing fine-tuning specifically for small smartphones */
@media (max-width: 575.98px) {
    .service-title {
        font-size: 1.15rem !important;
        margin-bottom: 8px;
    }
    
    .service-desc {
        font-size: 0.85rem !important;
    }

    .floating-preview-box {
        height: 180px !important; /* Shorter landscape cards for compact tracking on small screens */
    }
}

















/* --- Master Section Layout System --- */
.capabilities-scroll-section {
    position: relative;
    background-color: #000;
    width: 100%;
    height: 500vh; 
    overflow: visible;
}

.sticky-viewport-window {
    position: relative; 
    width: 100vw;
    height: 100vh; 
    overflow: hidden;
    background-color: #000;
}

.master-pinned-heading {
    line-height: 1.1;
}

.slides-deck-frame {
    width: 100%;
    height: 60vh;
    position: relative;
}

/* --- Rigid Instant Stacking Setup --- */
.slide-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none !important; 
}

.slide-layer:first-child {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.graphic-asset-box {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Preps the inner slide elements for smooth hardware-accelerated drifting */
.slide-layer .graphic-asset-box,
.slide-layer .col-md-7 {
    will-change: transform, opacity;
}

.graphic-asset-box video {
    height: 85%;
}

.category-meta {
    font-size: 0.85rem;
    color: var(--primary-color, #ff3b00);
    letter-spacing: 2px;
}

.text-muted-custom {
    color: #888;
    font-size: 1.1rem;
    line-height: 1.5;
}

.border-pill-tag {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 30px;
}

.control-indicator-dot {
    width: 45px;
    height: 10px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    transition: background-color 0.2s ease;
}

.control-indicator-dot.active-dot {
    background-color: #fff;
}

/* ==========================================================================
   FIXED RESPONSIVE MOBILE & TABLET LAYOUT OVERRIDES
   ========================================================================== */
@media (max-width: 991.98px) {
    .master-pinned-heading { 
        font-size: 2.2rem; 
    }
    
    /* Give more layout window breathing room for stacked content on mobile */
    .slides-deck-frame {
        height: 70vh !important;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    /* CRITICAL FIX: Retain absolute stack framework but handle vertical scrolling bounds */
    .slide-layer {
        position: absolute !important;
        display: block !important;
    }

    /* Shrink visual assets so typography elements have space to render */
    .graphic-asset-box {
        max-width: 140px !important;
        margin: 0 auto 15px auto !important;
    }

    .display-5 {
        font-size: 1.5rem !important;
        margin-top: 5px !important;
        margin-bottom: 8px !important;
    }

    .text-muted-custom {
        font-size: 0.9rem !important;
        line-height: 1.4;
        margin-bottom: 15px !important;
    }

    .border-pill-tag {
        padding: 5px 10px !important;
        font-size: 0.65rem !important;
    }
    
    .tag-cloud {
        justify-content: center !important;
    }
    
    /* Center align block components on mobile viewports */
    .slide-layer .text-white {
        text-align: center !important;
        padding-left: 0 !important;
    }
}

/* Super crisp adjustments for tiny phone layouts */
@media (max-width: 400px) {
    .slides-deck-frame {
        height: 72vh !important;
    }
    .graphic-asset-box {
        /* display: none !important; */
    }
}
















/* --- Overlap Stacking Rules --- */
.testimonials-scroll-section {
    position: relative;
    background-color: #000;
    width: 100%;
    height: 350vh; 
    overflow: visible;
    /* Keeps the entire section base priority sitting as an background deck */
    z-index: 1; 
}

.viewport-pin-window {
    position: relative; 
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.center-static-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 90%;
    pointer-events: none;
}

.static-huge-title {
    font-size: 7.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 0.9;
}

.moving-columns-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    width: 90vw;
    max-width: 1400px;
    height: 100vh;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.float-column {
    display: flex;
    flex-direction: column;
    height: max-content;
    will-change: transform;
}

/* CRITICAL STEP: Whichever section is directly following your testimonials section 
   MUST have background-color specified and a higher z-index so it rolls on top beautifully */
.testimonials-scroll-section + section,
.testimonials-scroll-section + footer {
    position: relative;
    z-index: 10 !important; /* Higher stacking layer priority cuts right on top */
    background-color: #000 !important; /* Ensures opaque cover protection */
    box-shadow: 0 -30px 60px rgba(0, 0, 0, 0.8); /* Creates a slick dark shade edge transition */
}


/* --- THE REAL ASYMMETRIC ZIGZAG MATHEMATICS --- */
/* By staggering BOTH the padding-tops AND the vertical gap distances, 
   the structural arrangement forces the timeline sequence into: 
   Left(1) -> Center(2) -> Right(3) -> Center(4) -> Left(5) -> Right(6) */

.col-track-left { 
    gap: 130vh; 
    padding-top: 100vh; /* Drops first item into step 1, second into step 5 */
}
.col-track-center { 
    gap: 60vh; 
    padding-top: 135vh; /* Drops first item into step 2, second into step 4 */
}
.col-track-right { 
    gap: 100vh; 
    padding-top: 170vh; /* Drops first item into step 3, second into step 6 */
}

/* Standard Premium UI Layout Settings */
.review-card {
    background: rgba(13, 13, 13, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 35px;
    color: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.quote-mark {
    color: #ff3b00;
    font-size: 4rem;
    font-family: serif;
    position: absolute;
    top: 5px;
    left: 25px;
    line-height: 1;
    opacity: 0.2;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 25px;
}

.avatar-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.vignette-edge {
    position: absolute;
    left: 0;
    width: 100%;
    height: 25vh;
    z-index: 10;
    pointer-events: none;
}
.edge-top { top: 0; background: linear-gradient(to bottom, #000 20%, rgba(0,0,0,0) 100%); }
.edge-bottom { bottom: 0; background: linear-gradient(to top, #000 20%, rgba(0,0,0,0) 100%); }

/* ==========================================================================
   OPTIMIZED TABLET & MOBILE BREAKDOWN (FIXED FOR SINGLE LANE WATERFALL)
   ========================================================================== */
@media (max-width: 991.98px) {
    .static-huge-title { 
        font-size: 4rem; 
    }
    
    /* 3 Columns to 1 Center Column Grid */
    .moving-columns-container { 
        grid-template-columns: 1fr !important; 
        width: 85vw;
        max-width: 550px;
        gap: 0px !important;
    }
    
    /* Display all tracks but force them into a seamless linear layout block */
    .col-track-center, .col-track-right { 
        display: flex !important; 
    }
    
    .float-column {
        gap: 30vh !important; /* Fixed padding gap between stacked rows */
    }

    /* Reset desktop offsets and recalculate linear entry offsets for single lane track */
    .col-track-left { 
        padding-top: 100vh !important; 
    }
    .col-track-center { 
        padding-top: 30vh !important; 
    }
    .col-track-right { 
        padding-top: 30vh !important; 
    }

    .review-card {
        padding: 25px !important;
        border-radius: 20px !important;
    }
    
    .review-text {
        font-size: 0.95rem !important;
        line-height: 1.5;
    }
    
    .vignette-edge {
        height: 20vh !important;
    }
}

@media (max-width: 575.98px) {
    .static-huge-title { 
        font-size: 2.8rem; 
    }
    .moving-columns-container {
        width: 90vw;
    }
}











/* --- Base Layout Rules --- */
.who-we-are-section {
    background-color: #000;
}

.section-subtitle {
    font-size: 1.2rem;
    max-width: 650px;
    line-height: 1.6;
}

.body-paragraph {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* --- Premium Framed Image System with Corner Accents --- */
.profile-frame-card {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: #111;
    border: 3px solid #1c1c1c; /* Sharp dark layout frame stroke */
    border-radius: 12px;
    padding: 12px;
    overflow: visible; /* Allows pins/screw dots to sit cleanly slightly overlapping edges */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.profile-frame-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* Micro-interaction on card mouse rollover */
.profile-frame-card:hover {
    transform: scale(1.02) rotate(0deg) !important;
    border-color: #333;
}

/* Asymmetric tilt distributions matching screenshot perfectly */
.tilt-left { transform: rotate(-3deg); }
.tilt-right { transform: rotate(2.5deg); }
.tilt-left-slight { transform: rotate(-1.5deg); }
.tilt-right-slight { transform: rotate(1.2deg); }

/* --- Mechanical Corner Screw Dots --- */
.corner-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}
.dot-tl { top: 4px; left: 4px; }
.dot-tr { top: 4px; right: 4px; }
.dot-bl { bottom: 4px; left: 4px; }
.dot-br { bottom: 4px; right: 4px; }

/* --- Resume & Text Details Group --- */
.tracking-wider {
    letter-spacing: 1.5px;
}

.resume-list li {
    font-size: 1.05rem;
    color: #e5e5e5;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.orange-arrow {
    color: var(--primary-color, #ff3b00);
    font-weight: bold;
}






/* --- Base Styling Layout --- */
.faq-accordion-section {
    background-color: #000;
}

.faq-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 720px;
}

.faq-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Space between pill boxes */
    margin-top: 50px;
}

/* --- Container Pill Cards --- */
.faq-item-card {
    background-color: #0d0d0d;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 24px 32px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-item-card:hover {
    background-color: #121212;
    border-color: #262626;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    user-select: none;
}

/* --- Premium Smooth Collapse Engine --- */
.faq-body-collapse {
    display: grid;
    grid-template-rows: 0fr; /* CSS trick: animating grid rows from 0fr to 1fr makes auto-height transition perfectly smooth */
    transition: grid-template-rows 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-content-inner {
    overflow: hidden;
}

.faq-content-inner p {
    color: #8a8a8a;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    padding-top: 20px; /* Gap between question and text when active */
}

/* --- Custom Geometric Toggle Icon (+ / -) --- */
.faq-toggle-icon {
    position: relative;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color); /* Custom orange accent matching your platform style */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle-icon span {
    position: absolute;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

.line-horizontal {
    width: 14px;
    height: 2px;
}

.line-vertical {
    width: 2px;
    height: 14px;
}

/* --- ACTIVE EXPANDED STATES --- */
.faq-item-card.is-expanded {
    background-color: #0d0d0d;
    border-color: #222;
}

.faq-item-card.is-expanded .faq-body-collapse {
    grid-template-rows: 1fr; /* Animates smoothly to fit content volume */
}

.faq-item-card.is-expanded .faq-toggle-icon {
    background-color: #fff; /* Inverts button base color like video example */
    transform: rotate(180deg);
}

.faq-item-card.is-expanded .line-vertical {
    transform: rotate(90deg);
    opacity: 0; /* Dissolves vertical line leaving perfect minus sign */
}

.faq-item-card.is-expanded .line-horizontal {
    background-color: #000; /* Inverts line indicator visibility stroke */
}

/* Responsive formatting adjustments */
@media (max-width: 767.98px) {
    .faq-item-card {
        padding: 20px;
        border-radius: 12px;
    }
    .faq-question {
        font-size: 1.1rem;
        padding-right: 15px;
    }
    .faq-content-inner p {
        font-size: 0.95rem;
    }
    .faq-toggle-icon {
        width: 28px;
        height: 28px;
    }
}







/* --- CTA Section Background Base --- */
.cta-booking-section {
    background-color: #000;
    position: relative;
}

/* --- Glassmorphic Container Architecture --- */
.glass-cta-card {
    background: rgba(13, 13, 13, 0.45); /* Highly translucent dark floor */
    border: 1px solid rgba(255, 255, 255, 0.05); /* Thin premium layout stroke */
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px); /* Processes behind space textures dynamically */
    -webkit-backdrop-filter: blur(20px);
}

/* --- Radial Ambient Glow Layer --- */
.ambient-glow-spot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 350px;
    /* Recreates that rich warm organic highlight leak directly under the text */
    background: radial-gradient(circle, #0062ff57 0%, rgba(255, 59, 0, 0.08) 50%, rgba(0, 0, 0, 0) 70%);
    filter: blur(30px);
    z-index: 1;
    pointer-events: none;
}

/* --- Typography Formatting Controls --- */
.z-index-2 {
    z-index: 2;
}

.cta-ticker {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6) !important;
}

.cta-headline {
    font-size: 3.5rem;
    line-height: 1.15;
}

.cta-desc {
    max-width: 580px;
    font-size: 0.9rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* --- The Vibrant Primary CTA Button --- */
.btn-cta-main {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 14px 40px !important;
    border-radius: 8px;
    border: none;
    box-shadow: 0 10px 25px #0062ff57;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

.btn-cta-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px #0062ff57;
}

.btn-cta-main:active {
    transform: translateY(0);
}

/* --- Responsive Adjustments for Mobile Viewports --- */
@media (max-width: 767.98px) {
    .glass-cta-card {
        padding: 40px 20px;
        border-radius: 16px;
    }
    
    .cta-headline {
        font-size: 2.2rem;
    }
    
    .cta-desc {
        font-size: 0.8rem;
    }
    
    .ambient-glow-spot {
        width: 100%;
        height: 100%;
    }
}