/* ==========================================================================
   NEW HERO SECTION (Image Match)
   ========================================================================== */

/* Header Override */
#header.new-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: #ffffff !important;
    padding: 15px 50px !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
}

.new-header .logo {
    display: flex;
    align-items: center;
}

.new-nav {
    display: flex;
    align-items: center;
}

.new-nav ul {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.new-nav ul li a {
    color: #2F2F2F !important;
    font-weight: 600 !important;
    font-size: 0.95rem;
    text-transform: capitalize !important;
    text-decoration: none;
    padding-bottom: 5px;
}

.new-nav ul li a.active {
    color: var(--accent-red) !important;
    border-bottom: 2px solid var(--accent-red);
}

/* Dropdown Menu Styles */
.new-nav ul li.dropdown {
    position: relative;
}

.new-nav ul li.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.new-nav ul li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.new-nav ul li.dropdown .dropdown-menu li {
    width: 100%;
}

.new-nav ul li.dropdown .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #444 !important;
    font-size: 0.9rem;
    font-weight: 500 !important;
    border-bottom: none;
    transition: background 0.2s, color 0.2s;
}

.new-nav ul li.dropdown .dropdown-menu li a:hover {
    background: rgba(159, 21, 27, 0.05);
    color: var(--accent-red) !important;
}

.new-nav ul li.dropdown .dropdown-menu li a:hover {
    background: rgba(159, 21, 27, 0.05);
    color: var(--accent-red) !important;
}

.new-nav ul li.dropdown > a i {
    transition: transform 0.3s ease;
}

.new-nav ul li.dropdown:hover > a i {
    transform: rotate(180deg);
}

.new-btn-primary, .btn-explore {
    background: var(--accent-red) !important;
    color: #fff !important;
    border-radius: 4px;
    padding: 12px 24px;
    font-weight: bold;
    font-size: 0.9rem;
    border: none !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.new-btn-primary::before, .new-btn-primary::after,
.btn-explore::before, .btn-explore::after {
    display: none !important; /* Disable dark mode glow effect */
}

/* Hero Container */
.new-hero-section {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    background: #ffffff;
    margin-top: 80px; /* offset for fixed header */
    /* Removed overflow:hidden to allow stats bar to overlap */
}

/* Left Content Area handled below */

.hero-trusted-partner {
    font-size: 0.8rem;
    font-weight: 700;
    color: #555;
    letter-spacing: 2px;
    margin-bottom: 15px;
    margin-top: 30px;
    display: block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 5vw, 3.2rem);
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-title .roller-container {
    display: block;
    width: 100%;
}

.hero-title .rolling-text {
    position: relative;
    display: block;
    white-space: nowrap;
}

.hero-title .rolling-text .spacer {
    position: relative;
    visibility: hidden;
    display: block;
    width: 100%;
}

.hero-title .rolling-text .animated-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    animation: fadeSlide 9s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeSlide {
    0% { opacity: 0; transform: translateY(15px); }
    5%, 33% { opacity: 1; transform: translateY(0); }
    38%, 100% { opacity: 0; transform: translateY(-15px); }
}

.hero-title .text-red {
    color: var(--accent-red);
}
.hero-title .text-dark {
    color: #3c7e3b; /* Force charcoal */
}
.hero-title .text-gold {
    color: var(--accent-gold);
}

.hero-desc {
    font-size: 1rem;
    color: #555;
    max-width: 550px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-btns .btn-services {
    background: #fff;
    color: #2F2F2F;
    border: 2px solid #2F2F2F;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Trust Badges below Hero Buttons */
.hero-trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
    max-width: 550px; /* match hero-desc width */
}

.trust-badge-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.trust-badge-item i {
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-top: 2px;
}

.trust-badge-item .badge-text {
    display: flex;
    flex-direction: column;
}

.trust-badge-item .badge-text strong {
    color: #2F2F2F;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1.2;
}

.trust-badge-item .badge-text span {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.3;
}

/* Right Image Area */
.new-hero-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 65%; /* Extended under the left section */
    height: 100%;
    z-index: 1;
    background: url('../images/hero.png') center/cover no-repeat;
}

.new-hero-left {
    width: 50%; /* Adjusted width */
    position: relative;
    z-index: 2;
    padding: 10% 8% 15% 8%; /* Added right padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Diagonal Background Layers */
.hero-slant {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    /* Slants from top-right to bottom-left */
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

.hero-slant-gold {
    width: 145%; /* Widest layer */
    background: var(--accent-gold);
    z-index: -3;
}

.hero-slant-red {
    width: calc(145% - 15px); /* Slightly narrower to reveal gold */
    background: var(--accent-red);
    z-index: -2;
}

.hero-slant-white {
    width: calc(145% - 55px); /* Narrower still to reveal red */
    background: url('../images/herowhite background pattern.png') center/cover no-repeat;
    z-index: -1;
}

/* Stats Bar */
.hero-stats-bar-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    transform: translateY(50%);
}

.hero-stats-bar {
    background: linear-gradient(135deg, var(--accent-red) 0%, #680d11 100%);
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 15px;
    padding: 25px 20px;
    border-radius: 16px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(159, 21, 27, 0.3), inset 0 2px 5px rgba(255,255,255,0.15);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    border-radius: 2px 2px 0 0;
}

.stats-marquee-track {
    display: contents; /* Seamlessly pass flex items to the parent hero-stats-bar on desktop */
}

.mobile-clone {
    display: none !important; /* Hide clones completely on desktop */
}

.hero-stats-bar .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1 1 200px;
    padding: 20px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
    
    /* OVERRIDE GLOBAL POLLUTING CSS */
    position: relative !important;
    opacity: 1 !important;
    animation: none !important;
    left: auto !important;
    top: auto !important;
}

.hero-stats-bar .stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-stats-bar .stat-item i {
    font-size: 2.8rem;
    color: var(--accent-gold);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    margin-bottom: 5px;
}

.hero-stats-bar .stat-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stats-bar .stat-text strong {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-numbers, sans-serif);
    line-height: 1;
    margin-bottom: 6px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-stats-bar .stat-text span {
    font-size: 0.75rem;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.9);
}

/* Feature Cards Section */
.hero-features-section {
    background: #fdfdfd;
    padding-top: 100px; /* space for the overlapping bar */
    padding-bottom: 50px;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #fdf9f0; /* light gold bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-gold);
    font-size: 2rem;
}

.feature-text h3 {
    font-family: var(--font-heading);
    color: var(--accent-red);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-text p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.feature-text a {
    color: var(--accent-red);
    font-weight: bold;
    font-size: 0.85rem;
    text-decoration: none;
}

/* Old bottom bar removed */

/* Responsive */
@media (max-width: 1024px) {
    .desktop-nav, .desktop-only {
        display: none !important;
    }
    .new-hero-section {
        min-height: auto;
        padding-bottom: 50px;
        background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,0.98)), url('../images/hero.png') center/cover no-repeat;
        flex-direction: column;
    }
    .new-hero-left {
        width: 100%;
        padding: 130px 5% 100px 5%;
    }
    .new-hero-right {
        display: none;
    }
    .hero-slant {
        display: none;
    }
    .hero-stats-bar {
        padding: 20px 15px;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(159, 21, 27, 0.2);
    }
    .hero-stats-bar-wrapper {
        position: relative;
        transform: none;
        margin-top: -30px;
        padding-bottom: 40px;
    }
    .our-services-section {
        margin-top: 0;
    }
    .hero-stats-bar .stat-item {
        flex: 1 1 140px;
        padding: 15px 10px;
        margin: 0;
    }
    .hero-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-features-bottom-bar {
        flex-wrap: wrap;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    header {
        padding: 0.8rem 5%;
    }
    .brand-logo {
        height: 45px;
    }
    .new-hero-section {
        background: linear-gradient(to bottom, rgba(255,255,255,0.6), rgba(255,255,255,0.85)), url('../images/hero.png') center/cover no-repeat;
    }
    .new-hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-trusted-partner {
        text-align: center;
        margin: 0 auto 15px auto;
    }
    .hero-title {
        font-size: clamp(1.2rem, 6vw, 2rem);
        line-height: 1.4;
        text-align: center;
    }
    .hero-title br, .hero-desc br {
        display: none;
    }
    .new-hero-left {
        padding: 50px 5% 100px 5%;
    }
    .hero-desc {
        font-size: 0.95rem;
        text-align: center;
        margin: 0 auto 30px auto;
    }
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    .hero-btns a {
        width: 100%;
        justify-content: center;
    }
    .hero-trust-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
        margin-top: 30px;
        padding-top: 25px;
        height: auto;
        width: 100%;
        overflow: visible;
    }
    .hero-trust-badges .trust-badge-item {
        position: relative;
        opacity: 1;
        visibility: visible;
        width: auto;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-trust-badges .trust-badge-item i {
        margin-bottom: 8px;
    }
    .hero-trust-badges .trust-badge-item .badge-text {
        align-items: center;
    }
    .hero-stats-bar {
        padding: 20px 0; /* Remove horizontal padding so scrolling text touches the edge */
        gap: 0;
        overflow: hidden;
        display: block; /* Disable flex on container to let track handle layout */
    }
    
    .stats-marquee-track {
        display: flex;
        flex-wrap: nowrap;
        width: max-content;
        gap: 15px;
        animation: scrollStatsMobile 15s linear infinite;
        padding: 0 10px;
    }
    
    .mobile-clone {
        display: flex !important; /* Reveal clones for infinite scroll */
    }

    @keyframes scrollStatsMobile {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-50% - 7.5px)); } /* Shift by exactly half the track width */
    }
    
    .hero-stats-bar .stat-text strong {
        font-size: 1.5rem;
    }
    
    .hero-stats-bar .stat-item i {
        font-size: 1.8rem;
    }
    
    .hero-stats-bar .stat-text span {
        font-size: 0.65rem;
    }

    .hero-stats-bar .stat-item {
        flex: 0 0 130px; /* Fixed width for items in the marquee */
        padding: 10px 5px;
        
        /* OVERRIDE GLOBAL POLLUTING CSS FROM STYLES.CSS */
        position: relative !important;
        transform: none !important;
        opacity: 1 !important;
        animation: none !important;
        left: auto !important;
        top: auto !important;
    }
    .hero-features-grid {
        grid-template-columns: 1fr;
    }
}

/* --- OUR SERVICES SECTION V2 --- */
.our-services-section {
    /* Height will be managed by JS, fallback to auto */
    font-family: var(--font-main);
    color: #333;
    position: relative;
    margin-top: 120px; /* Account for the absolute overhang of the hero stats bar */
}

.services-sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: 
        linear-gradient(to bottom, #fdfdfd 0%, transparent 15%, transparent 85%, #fff 100%),
        url('../images/herowhite background pattern.png') center/cover no-repeat;
    padding: 4vh 20px; /* Reduced vertical padding to fit smaller laptop screens */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-scroll-track {
    width: 100%;
    overflow: hidden; /* Hide horizontal scrollbar */
    margin: 10px 0; /* Reduced margin */
}


.services-header-container {
    text-align: center;
    margin-bottom: 2vh; /* Reduced margin */
}

.services-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.services-subtitle .line {
    width: 40px;
    height: 1px;
    background: var(--accent-gold);
}

.services-subtitle .text {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 2px;
}

.services-title {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 10px;
}

.services-title .dark-text {
    color: #2F2F2F;
}

.services-title .red-text {
    color: var(--accent-red);
}

.services-header-icon {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.services-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid -> Flex for Horizontal Scroll */
.services-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    width: max-content; /* Critical for horizontal scrolling */
    padding: 20px 5vw; /* padding to allow cards to start centered or with some margin */
    margin: 0;
    /* Optional: hardware acceleration */
    will-change: transform;
}

.service-v2-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    width: 420px; /* Fixed width for horizontal scroll */
    flex-shrink: 0; /* Prevent shrinking */
    min-height: 380px;
}

@media (max-width: 1024px) {
    .our-services-section {
        height: auto !important; /* Disable parallax on mobile */
    }
    .services-sticky-wrapper {
        position: relative;
        height: auto;
        overflow: visible;
        padding: 40px 20px;
    }
    .services-scroll-track {
        overflow: visible; /* Ensure cards can stick properly */
    }
    .services-grid {
        flex-direction: column;
        width: 100%;
        padding: 0;
        transform: none !important; /* Reset transform on mobile */
        gap: 20px;
    }
    .service-v2-card {
        width: 100%;
        position: sticky;
        top: 100px;
        z-index: 10;
        box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
    }
    /* Increase z-index and slight top increment for stack effect */
    .service-v2-card:nth-child(1) { top: 100px; z-index: 10; }
    .service-v2-card:nth-child(2) { top: 120px; z-index: 11; }
    .service-v2-card:nth-child(3) { top: 140px; z-index: 12; }
    .service-v2-card:nth-child(4) { top: 160px; z-index: 13; }
    .service-v2-card:nth-child(5) { top: 180px; z-index: 14; }
    .service-v2-card:nth-child(6) { top: 200px; z-index: 15; }
}

.card-bg-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: right center;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 60%);
    mask-image: linear-gradient(to right, transparent 0%, black 60%);
}

.service-v2-card .card-content {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    width: 80%; /* Takes up left side while bg fades on right */
}

.service-v2-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(159, 21, 27, 0.2);
    background: rgba(159, 21, 27, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-v2-card .card-icon i {
    font-size: 1.8rem;
    color: var(--accent-red);
}

.service-v2-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-v2-card .card-subtitle {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 25px;
    min-height: 40px;
}

.service-v2-card .card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-v2-card .card-features li {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-v2-card .card-features li i {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-top: 2px;
}

.service-v2-card .learn-more {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-normal);
}

.service-v2-card .learn-more:hover {
    gap: 12px;
}

/* CTA Bar */
.services-cta-bar {
    max-width: 1300px;
    margin: 0 auto;
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.services-cta-bar .cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.services-cta-bar .cta-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.services-cta-bar .cta-text {
    display: flex;
    flex-direction: column;
}

.services-cta-bar .cta-title-dark {
    font-size: 1.2rem;
    font-weight: 800;
    color: #2F2F2F;
}

.services-cta-bar .cta-title-gold {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.services-cta-bar .cta-middle {
    max-width: 450px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    border-left: 1px solid #ccc;
    padding-left: 30px;
}

.services-cta-bar .btn-services-cta {
    background: var(--accent-red);
    color: #fff;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-normal);
}

.services-cta-bar .btn-services-cta:hover {
    background: #7a1014;
}
/* Ensure sticky services section fits on shorter laptop screens */
@media (max-height: 850px) {
    .services-sticky-wrapper { padding: 2vh 20px !important; }
    .services-header-container { margin-bottom: 2vh !important; }
    .services-scroll-track { margin: 10px 0 !important; }
    .services-title { font-size: 2.5rem !important; margin-bottom: 5px !important; }
    .services-desc { font-size: 1rem !important; }
    .service-v2-card { min-height: 330px !important; }
    .services-cta-bar { padding: 15px 25px !important; }
    .services-cta-bar .cta-icon { width: 50px !important; height: 50px !important; font-size: 1.4rem !important; }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-cta-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .services-cta-bar .cta-middle {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #ccc;
        padding-top: 20px;
    }
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .services-title {
        font-size: 2.5rem;
    }
}

/* --- PROCESS SECTION --- */
.process-section {
    background: #fff;
    padding: 80px 20px;
}

.process-timeline {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 95px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: rgba(216, 154, 0, 0.4);
    z-index: 1;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    padding: 0 10px;
    text-align: center;
}

.step-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-family: var(--font-numbers);
}

.step-icon-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 
        inset 0 0 20px rgba(0,0,0,0.02),
        0 15px 35px rgba(159, 21, 27, 0.1),
        0 5px 15px rgba(0,0,0,0.05);
    border: 2px solid #fcfcfc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.step-icon-wrapper:hover {
    transform: translateY(-5px);
}

.step-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 1px solid rgba(216, 154, 0, 0.2);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--accent-red);
}

.step-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
    margin-bottom: 15px;
    position: relative;
}

.step-dot::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px;
    border-style: solid;
    border-color: var(--accent-gold) transparent transparent transparent;
}

.step-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #2F2F2F;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-desc {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
}

.process-connector {
    margin-top: 81px;
    z-index: 2;
    flex-shrink: 0;
}

.process-connector i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Responsive Process Section */
@media (max-width: 1200px) {
    .process-timeline {
        flex-wrap: wrap;
        gap: 40px 0;
    }
    .process-timeline::before {
        display: none;
    }
    .process-connector {
        display: none;
    }
    .process-step {
        flex: 1 1 33%;
    }
}
@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        gap: 40px 0;
    }
    .process-step {
        flex: 1 1 100%;
    }
    .process-timeline::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background: linear-gradient(to bottom, rgba(216,154,0,0.02) 0%, rgba(216,154,0,0.4) 50%, rgba(216,154,0,0.02) 100%);
        background-size: 100% 200%;
        animation: mobileTimelinePulse 3s linear infinite;
        z-index: 1;
    }
    @keyframes mobileTimelinePulse {
        0% { background-position: 0% -100%; }
        100% { background-position: 0% 100%; }
    }
}
@media (max-width: 500px) {
    /* No longer strictly needed since 768px makes it 100%, but keeping for safety */
    .process-step {
        flex: 1 1 100%;
    }
}

/* Responsive alignment for About Us text columns */
.about-text-cols {
    text-align: left !important;
}
@media (max-width: 768px) {
    .about-text-cols {
        text-align: center !important;
    }
}
