/* =================================================================
   Hero Corporate Section (Cinematic Image Background Version)
   =================================================================== */

.hero-corporate {
    position: relative;
    color: var(--color-secondary); /* Text defaults to white for image contrast */
    padding-top: calc(var(--spacing-3xl) + 4rem); /* Clears transparent header */
    padding-bottom: var(--spacing-3xl);
    overflow: hidden;
    background-color: #050505;
}

/* Background Image & Overlay Layer */
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02); /* Slight scale to prevent edge bleeding on load */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark gradient overlay matching reference design for readability */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.85) 100%);
}

/* Ensure contents sit on top of the background layers */
.hero-corporate .hero-container {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Top Grid Layout (Heading Left, Description Right) */
.hero-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-2xl);
    align-items: flex-end;
    margin-bottom: var(--spacing-3xl);
}

.hero-content .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.5vw, 4.25rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-secondary); /* Pure white heading over dark background */
    letter-spacing: -0.03em;
    margin-bottom: var(--spacing-xl);
}

/* ================================================================
   Split Call Button
   Text pill + separate arrow circle
   ================================================================ */

.split-btn-wrapper {
    display: inline-block;
}

.split-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0px; /* space between text pill and arrow circle */
    background: transparent;
    color: inherit;
    padding: 0;
    border: none;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Text section */
.split-call-btn .btn-text {
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--color-secondary);
    color: var(--color-primary);

    padding: 12px 22px;
    min-height: 42px;

    border-radius: 50px;

    margin: 0;
    letter-spacing: -0.01em;

    transition:
        transform var(--transition-fast),
        background-color var(--transition-base);
}

/* Separate arrow circle */
.split-call-btn .btn-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    background-color: var(--color-accent);
    color: var(--color-secondary);

    border-radius: 50%;

    transition:
        transform var(--transition-base),
        background-color var(--transition-base);
}

/* Arrow */
.split-call-btn .btn-arrow {
    display: block;
    transition: transform var(--transition-fast);
}

/* Hover */
.split-call-btn:hover .btn-text {
    transform: translateY(-2px);
}

.split-call-btn:hover .btn-icon-circle {
    transform: translateY(-2px) rotate(0deg);
    background-color: var(--color-accent);
}

.split-call-btn:hover .btn-arrow {
    transform: translate(2px, -2px);
}
/* Side Description Text */
.hero-side-description p {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e5e7eb; /* Light grayish-white for clear readability */
    margin: 0;
    max-width: 280px;
}

/* Showcase Section & Scroll Indicator */
.hero-showcase-wrapper {
    display: flex;
    align-items: flex-end;
    gap: var(--spacing-xl);
}

.scroll-down-indicator {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #d1d5db;
    padding-bottom: 2rem;
    text-transform: uppercase;
}

/* Bottom 3 Cards Image Grid */
.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    width: 100%;
}

.hero-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 380px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.hero-card:hover img {
    transform: scale(1.03);
}

/* =================================================================
   Responsive Design Breakpoints
   =================================================================== */

@media screen and (max-width: 1024px) {
    .hero-top-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .hero-side-description p {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .hero-showcase-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .scroll-down-indicator {
        display: none; 
    }

    .hero-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-card {
        height: 300px;
    }
}




/* Showcase Section & Scroll Indicator */
.hero-showcase-wrapper {
    display: flex;
    align-items: flex-end;
    gap: var(--spacing-xl);
}

.scroll-down-indicator {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #d1d5db;
    padding-bottom: 2rem;
    text-transform: uppercase;
}

/* Bottom 3 Cards Image Grid - Width Reduced & Centered */
.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    width: 100%;
    max-width: 900px; /* Limits the overall width of the 3 cards container */
    margin-left: auto;  /* Pushes/centers them nicely alongside the scroll indicator */
}

.hero-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 240px; /* Reduced height from 380px to 240px */
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.hero-card:hover img {
    transform: scale(1.03);
}

/* =================================================================
   Responsive Design Breakpoints
   =================================================================== */

@media screen and (max-width: 1024px) {
    .hero-top-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .hero-side-description p {
        max-width: 100%;
    }
    
    .hero-cards-grid {
        max-width: 100%; /* Full width on smaller screens */
    }
}

@media screen and (max-width: 768px) {
    .hero-showcase-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .scroll-down-indicator {
        display: none; 
    }

    .hero-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-card {
        height: 220px; /* Adjusted smaller mobile height */
    }
}
/* =================================================================
   Trusted Clients Marquee Section (Cinematic & Animated)
   =================================================================== */

.trusted-clients-section {
    background-color: var(--color-primary); /* Dark aesthetic matching the cinematic hero (#0a0a0a) */
    padding: var(--spacing-2xl) 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.trusted-clients-section .container-fluid {
    width: 100%;
    padding: 0;
}

/* Header layout container (constrained to your max container width) */
.trusted-header-container {
    max-width: var(--container-max);
    margin: 0 auto var(--spacing-xl) auto;
    padding: 0 var(--spacing-md);
}

.trusted-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.trusted-title {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-secondary); /* White heading text */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    margin: 0;
}

.trusted-line {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    max-width: 150px; 
}

/* Infinite Marquee Wrapper with Edge Gradient Fade Effect */
.trusted-marquee-container {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    /* Smooth fade on left and right edges */
    mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
}

.trusted-marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 5rem; /* Space between logos */
    animation: marqueeLeftToRight 35s linear infinite;
}

/* Pause animation on hover for user experience */
.trusted-marquee-container:hover .trusted-marquee-track {
    animation-play-state: paused;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Logo Image Styling (Inverted/White-tinted style for dark backgrounds) */
.client-logo-item img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Turns dark logos white to match dark theme */
    opacity: 0.6;
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.client-logo-item img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* =================================================================
   Left-to-Right Animation Keyframes
   =================================================================== */

@keyframes marqueeLeftToRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

/* =================================================================
   Responsive Adjustments
   =================================================================== */

@media screen and (max-width: 768px) {
    .trusted-marquee-track {
        gap: 3rem;
        animation-duration: 25s; /* Slightly faster on mobile */
    }
    
    .client-logo-item img {
        height: 22px;
    }
}

/* =================================================================
   Trust & Scale / Real Stories Section Styles
   =================================================================== */

.trust-scale-section {
    background-color: var(--color-primary); /* Uses your dark primary color (#0a0a0a) to match the cinematic reference vibe */
    color: var(--color-secondary);         /* White text */
    padding-top: var(--spacing-3xl);
    padding-bottom: var(--spacing-3xl);
    position: relative;
    overflow: hidden;
}

.trust-scale-section .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

/* Top Small Category Labels */
.trust-top-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-3xl);
  
    padding-bottom: var(--spacing-sm);
}

/* Main Content Grid */
.trust-grid-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

/* Left Column Styling */
.trust-main-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--color-secondary);
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-main-heading .heading-line-2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-main-heading .arrow-icon {
    color: var(--color-accent); /* Uses your dynamic accent blue/orange color variable (#3b82f6) */
    display: inline-block;
    font-weight: 400;
}

/* Right Column Description Styling */
.trust-description-wrapper {
    display: flex;
    justify-content: flex-end;
}

.trust-description-text {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    line-height: 1.6;
    color: #a3a3a3; /* Softer light neutral text color optimized for dark background contexts */
    margin: 0;
    max-width: 500px;
}

/* =================================================================
   Responsive Design Adjustments
   =================================================================== */

@media screen and (max-width: 992px) {
    .trust-grid-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .trust-description-wrapper {
        justify-content: flex-start;
    }
    
    .trust-scale-section {
        padding-top: var(--spacing-2xl);
        padding-bottom: var(--spacing-2xl);
    }
}




/* =================================================================
   Services Section (Horizontal Interactive Rows Layout)
   =================================================================== */

.services-section {
    background-color: var(--color-primary); /* #0a0a0a */
    color: var(--color-secondary);         /* #ffffff */
    padding-top: var(--spacing-3xl);
    padding-bottom: var(--spacing-3xl);
    position: relative;
}

.services-section .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

/* Header Top Grid */
.services-top-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--spacing-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: var(--spacing-md);
}

.services-eyebrow {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    display: block;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
}

.services-section .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--color-secondary);
    margin: 0;
}

/* More Services Button */
.btn-more-services {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-secondary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background-color var(--transition-base), border-color var(--transition-base);
}

.btn-more-services:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border-color: var(--color-secondary);
}

/* =================================================================
   Horizontal Service Rows List
   =================================================================== */

.services-rows-list {
    display: flex;
    flex-direction: column;
}

.service-row-item {
    position: relative;
    display: grid;
    grid-template-columns: 100px 1fr 350px 50px;
    align-items: center;
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: var(--color-secondary);
    transition: border-color var(--transition-base), background-color var(--transition-base);
}

.service-row-item:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.015);
}

/* Number Styling */
.row-number span {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    transition: color var(--transition-base);
}

.service-row-item:hover .row-number span {
    color: var(--color-accent);
}

/* Title Styling */
.row-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.2vw, 2.25rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--color-secondary);
    margin: 0;
    transition: color var(--transition-base), transform var(--transition-base);
}

.service-row-item:hover .row-title {
    color: var(--color-accent); /* Highlights text title on hover with your brand accent color */
    transform: translateX(6px);
}

/* Description Text */
.row-description {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-text-light);
    margin: 0;
}

/* Arrow Right Indicator */
.row-arrow {
    text-align: right;
    font-size: 1.25rem;
    color: var(--color-text-light);
    transition: transform var(--transition-base), color var(--transition-base);
}

.service-row-item:hover .row-arrow {
    transform: translateX(4px);
    color: var(--color-secondary);
}

/* =================================================================
   Hover Image Preview Popup Card (Matches Reference Image)
   =================================================================== */

.row-image-preview {
    position: absolute;
    right: 380px; /* Positions inline next to the text column on hover */
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    width: 220px;
    height: 130px;
    border-radius: var(--radius-md);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
    z-index: 10;
}

.row-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Reveal image smoothly on hover */
.service-row-item:hover .row-image-preview {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

/* =================================================================
   Responsive Adjustments
   =================================================================== */

@media screen and (max-width: 1024px) {
    .service-row-item {
        grid-template-columns: 70px 1fr 40px;
        gap: var(--spacing-sm);
    }
    
    .row-description-wrap {
        display: none; /* Hide long description block on smaller viewports to prevent overflow */
    }
    
    .row-image-preview {
        display: none; /* Disable popup hover box on touch/mobile devices */
    }
}

@media screen and (max-width: 768px) {
    .services-top-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }
    
    .service-row-item {
        grid-template-columns: 50px 1fr 30px;
        padding: var(--spacing-md) 0;
    }
    
    .row-title {
        font-size: 1.25rem;
    }
}
/* =================================================================
   About Corporate Section (Asymmetric Layout matching Image)
   =================================================================== */

.about-corporate-section {
    background-color: var(--color-primary); /* Dark background (#0a0a0a) */
    color: var(--color-secondary);
    padding-top: var(--spacing-3xl);
    padding-bottom: var(--spacing-3xl);
    position: relative;
    overflow: hidden;
}

.about-corporate-section .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

/* Top Split Grid Layout: Left Tag & Right Heading */
.about-header-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--spacing-2xl);
    align-items: flex-start;
    margin-bottom: var(--spacing-3xl);
}

.about-left-tag {
    padding-top: 0.5rem;
}

.about-badge {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #e5e7eb;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-right-heading {
    max-width: 800px;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.about-subtitle {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
}

/* 3-Column Features Grid (Side-by-Side Icon & Text alignment like reference) */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
}

.about-feature-card {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: transform var(--transition-base), border-color var(--transition-base);
}

.about-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Icon Box Styling (Using your accent and secondary design variables) */
.feature-icon-box {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(59, 130, 246, 0.15); /* Soft alpha of --color-accent */
    color: var(--color-accent);                  /* Uses #3b82f6 */
    border-radius: var(--radius-md);
}

.feature-content {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.01em;
}

.feature-text {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-text-light);
    margin: 0;
}

/* Bottom Rounded Media/Video Box */
.about-showcase-box {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.showcase-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.about-showcase-box:hover .showcase-bg-image {
    transform: scale(1.02);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
}

/* Custom Rotating Watch Video Stamp */
.watch-video-stamp {
    position: absolute;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 2;
}

.rotating-text-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateStamp 18s linear infinite;
}

.rotating-text-ring svg {
    width: 100%;
    height: 100%;
}

.play-icon-center {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50%;
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.watch-video-stamp:hover .play-icon-center {
    transform: scale(1.1);
    background-color: var(--color-accent);
    color: var(--color-secondary);
}

@keyframes rotateStamp {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* =================================================================
   Responsive Design Breakpoints
   =================================================================== */

@media screen and (max-width: 1024px) {
    .about-header-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .about-showcase-box {
        height: 320px;
    }
    
    .watch-video-stamp {
        bottom: var(--spacing-md);
        right: var(--spacing-md);
        width: 90px;
        height: 90px;
    }
}



/* =================================================================
   Call to Action (CTA) Section Styles
   =================================================================== */

.cta-section {
    background-color: var(--color-primary); /* Dark aesthetic theme (#0a0a0a) */
    color: var(--color-secondary);         /* White text */
    padding-top: var(--spacing-3xl);
    padding-bottom: var(--spacing-3xl);
    position: relative;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Subtle background accent glow to connect with your gradient footer */
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(10, 10, 10, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.cta-section .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.cta-section .section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .section-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.6;
    color: var(--color-text-light);
    max-width: 550px;
    margin: 0 auto;
}

/* CTA Buttons Layout */
.cta-section .cta-buttons {
    margin-top: var(--spacing-xl);
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-section .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px; /* Modern pill style matching previous buttons */
    transition: transform var(--transition-fast), background-color var(--transition-base), box-shadow var(--transition-base);
    cursor: pointer;
}

.cta-section .btn-large {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
}

/* Primary Button Style (Accent Fill) */
.cta-section .btn-primary {
    background-color: var(--color-accent);
    color: var(--color-secondary);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.cta-section .btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

/* Secondary Button Style (Glassmorphism Outline for WhatsApp/Secondary Action) */
.cta-section .btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-secondary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-section .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* =================================================================
   Responsive Adjustments
   =================================================================== */

@media screen and (max-width: 768px) {
    .cta-section {
        padding-top: var(--spacing-2xl);
        padding-bottom: var(--spacing-2xl);
    }
    
    .cta-section .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-section .btn {
        width: 100%;
    }
}