:root {
    --primary-color: #fd393b;
    --secondary-color: #ffffff;
    --text-color: #332f4f;
    --text-muted: #666666;
    --bg-color: #ffffff;
    --bg-card: #f9f9f9;
    --white: #ffffff;
    --container-width: 1440px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
    font-size: 15px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #d62b2d;
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.full-width {
    width: 100%;
    display: block;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Section Headers - Polished */
.section-header {
    margin-bottom: 70px;
    position: relative;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #ffffff;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    border-radius: 30px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Soft shadow lift */
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.section-tag i {
    font-size: 14px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-color);
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

/* Decorative SVG Underline Removed */
.section-subtitle {
    color: var(--text-muted);
    font-size: 19px;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Floating Decor Particles */
.section-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -40px;
    width: 20px;
    height: 20px;
    background: #FFD027;
    /* Gold Dot */
    border-radius: 50%;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: -30px;
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -15px);
    }
}

/* Modern Header - Premium Redesign */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    /* Premium touch: Subtle gradient line at the bottom */
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInDown 0.8s ease-out;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(253, 57, 59, 0.2), transparent);
    opacity: 0.7;
}

.header.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.98);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Three-column layout: Logo | Nav | CTA */
.header-left {
    flex: 0 0 auto;
}

.nav-center {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.header-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 55px;
    /* Significantly larger */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
    /* Subtle depth */
}

.logo:hover img {
    transform: scale(1.02);
}

/* Navigation Links */
.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
    /* Generous spacing */
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list li {
    opacity: 0;
    animation: fadeInNav 0.5s ease forwards;
    animation-delay: calc(0.2s + var(--i) * 0.1s);
}

.nav-list a {
    font-weight: 600;
    /* Bolder text */
    font-size: 16px;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
    padding: 5px 0;
    letter-spacing: -0.2px;
}

.nav-list a:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

/* Elegant Underline */
.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(253, 57, 59, 0.3);
}

.nav-list a:hover::after {
    width: 80%;
    /* Almost full width but elegant */
}

/* Primary Header CTA Button */
.btn-header-cta {
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    /* Full rounded/pill shape */
    font-size: 15px;
    text-transform: capitalize;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(253, 57, 59, 0.3);
    /* Soft red shadow */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    line-height: 1.2;
    animation: gentlePulse 3s infinite;
}

/* Glow Effect */
.btn-header-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease;
}

.btn-header-cta:hover {
    transform: scale(1.05);
    /* Smooth scale */
    background-color: #e62e30;
    /* Slightly darker on hover */
    box-shadow: 0 6px 20px rgba(253, 57, 59, 0.45);
}

.btn-header-cta:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Animations Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInNav {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gentlePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(253, 57, 59, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(253, 57, 59, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(253, 57, 59, 0);
    }
}


/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
}

/* Responsive Styles for Header */
@media (max-width: 992px) {
    .nav-center {
        position: fixed;
        top: 70px;
        /* Below header */
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: center;
        transform: translateY(-150%);
        /* Hidden by default */
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-center.active {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .btn-header-cta {
        display: none;
        /* Hide main CTA on mobile header, show only burger? Or keep small? */
        /* Let's keep it visible on tablet if space allows, or modify. 
           For small screens, maybe just show Icon or simplified. 
           User request says "Right: primary CTA button". 
           For very small screens (phones), usually we hide it or make it small.
           Let's keep it for now but maybe reduce padding.
        */
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .btn-header-cta {
        display: none;
        /* Hide on very small screens to fit Logo + Burger */
    }
}

/* Hero Section */
/* Hero Section */
.hero {
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

/* Unique Animated Background: Soft Organic Aurora */
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(253, 57, 59, 0.08) 0%, rgba(255, 220, 200, 0.1) 40%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    animation: auroraMove 15s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 107, 109, 0.06) 0%, rgba(255, 240, 230, 0.1) 40%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    animation: auroraMoveReverse 18s ease-in-out infinite alternate;
}

/* Add a third subtle element for depth */
.hero-bg-accent {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(200, 200, 255, 0.05) 0%, transparent 60%);
    /* Very subtle cool tint for contrast */
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    animation: breathing 10s ease-in-out infinite;
}

@keyframes auroraMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    100% {
        transform: translate(20px, 40px) rotate(5deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes auroraMoveReverse {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-30px, -20px) scale(1.1);
    }
}

@keyframes breathing {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Column: Content */
.hero-content {
    max-width: 600px;
}

/* Hero Label */
.hero-label {
    display: inline-block;
    background: rgba(253, 57, 59, 0.1);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(253, 57, 59, 0.2);
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-color);
    letter-spacing: -1.5px;
}

.hero-price-container {
    display: block;
    margin-top: 15px;
    font-size: 54px;
    color: var(--text-color);
}

.price-tag {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

/* Underline decoration for price */
.price-tag::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(253, 57, 59, 0.2);
    z-index: -1;
    transform: skew(-10deg);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

/* Trust Indicators - Styled Pills */
.trust-indicators {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Card look */
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.trust-icon {
    width: 28px;
    height: 28px;
    background: rgba(253, 57, 59, 0.1);
    /* Light Primary BG */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 12px;
}

/* Buttons */
.hero-btns {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-hero-cta {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 8px;
    /* Soft rounded corners */
    border: none;
    box-shadow: 0 4px 14px rgba(253, 57, 59, 0.3);
    /* Subtle shadow */
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
}

.btn-hero-cta:hover {
    transform: scale(1.05);
    /* Slight scale-up */
    box-shadow: 0 6px 20px rgba(253, 57, 59, 0.4);
    /* Glow effect */
    background-color: #e03234;
}

.btn-secondary-link {
    color: var(--text-muted);
    /* Dark gray */
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.btn-secondary-link:hover {
    color: #333;
    text-decoration: underline;
    /* Smooth underline */
}

/* Right Column: Mosaic Grid */
.hero-mosaic {
    position: relative;
    height: 600px;
    /* Fixed height for the window */
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    height: 100%;
}

.mosaic-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mosaic-item {
    border-radius: 12px;
    overflow: hidden;
    background: #f4f4f4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
    /* Removed fixed height to prevent distortion/blurriness */
    flex-shrink: 0;
}

.mosaic-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* Ensure full image is visible */
    image-rendering: -webkit-optimize-contrast;
    /* Enhance clarity */
    transition: all 0.4s ease;
}

.mosaic-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}


@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }

    /* Ensure content loops */
}

@keyframes scrollDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

/* Infinite Scroll Animations */
.col-up {
    animation: scrollUp 40s linear infinite;
}

.col-down {
    animation: scrollDown 45s linear infinite;
}



/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        margin: 0 auto;
    }

    .trust-indicators {
        justify-content: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-mosaic {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Brand Boost / Logo Slider */
.brand-boost {
    padding: 80px 0;
    background-color: var(--bg-card);
    overflow: hidden;
}

.section-header {
    margin-bottom: 60px;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 18px;
}

.brand-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.brand-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    flex: 1;
}

.brand-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.brand-slide {
    min-width: 50%;
    padding: 0 10px;
    flex-shrink: 0;
}

.brand-slide img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.brand-slider-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 102, 1, 0.3);
    z-index: 10;
}

.brand-slider-btn:hover {
    background-color: #d62b2d;
    transform: scale(1.1);
}

.brand-slider-btn i {
    font-size: 18px;
}

/* Features / Why Us */
.features {
    padding: 120px 0;
    background-color: #faf9f6;
    /* Premium Warm Off-White */
    position: relative;
    overflow: hidden;
}

/* Subtle Pattern Overlay */
.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
    z-index: 0;
}

/* Background Blobs for Features - Enhanced */
.features::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(253, 57, 59, 0.04) 0%, transparent 60%);
    filter: blur(80px);
    z-index: 0;
    animation: floatFeature1 20s ease-in-out infinite alternate;
}

/* Additional Blob */
.features-blob-2 {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 200, 0, 0.06) 0%, transparent 60%);
    filter: blur(80px);
    z-index: 0;
    animation: floatFeature2 25s ease-in-out infinite alternate;
}

@keyframes floatFeature1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

@keyframes floatFeature2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-30px, -20px) scale(1.1);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Permanent Shadow */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    /* Slight movement */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
    max-width: 300px;
}

/* Colorful Illustrated Icon Effect */
.feature-icon-wrapper {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: transform 0.3s ease;
}

/* Primary Icon */
.feature-icon-wrapper i {
    font-size: 42px;
    z-index: 2;
    position: relative;
    /* Gradient Text for "Colorful" look */
    background: -webkit-linear-gradient(45deg, var(--primary-color), #ff8a00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(253, 57, 59, 0.2));
}

/* Decorative Blobs behind icon to mimic illustration */
.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(253, 57, 59, 0.08);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    z-index: 1;
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 200, 0, 0.15);
    /* Secondary color blob */
    border-radius: 50%;
    top: 20%;
    right: 20%;
    z-index: 0;
    transition: all 0.5s ease;
}

/* Hover Animation for Icons */
.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1);
}

.feature-card:hover .feature-icon-wrapper::before {
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    background: rgba(253, 57, 59, 0.12);
}

.feature-card:hover .feature-icon-wrapper::after {
    top: 60%;
    right: 60%;
    transform: scale(1.2);
}

/* Portfolio / Recent Work - Masonry Redesign */
.portfolio {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.gallery-grid {
    column-count: 4;
    column-gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 24px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.gallery-img-placeholder {
    width: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-img-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* Show full image */
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-img-placeholder img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Responsive Masonry */
@media (max-width: 1200px) {
    .gallery-grid {
        column-count: 3;
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        column-count: 2;
        column-gap: 20px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        column-count: 1;
        column-gap: 16px;
    }
}

/* Responsive Features */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* End of Portfolio Masonry Section */
/* Pricing */
/* Pricing Redesign */
.pricing-section {
    padding: 120px 0;
    background-color: #f8fafc;
    background-image: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

/* Decorative Background Glows */
.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.04) 0%, transparent 70%);
    transform: translate(30%, -30%);
    z-index: 0;
    pointer-events: none;
}

.pricing-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.03) 0%, transparent 70%);
    transform: translate(-30%, 30%);
    z-index: 0;
    pointer-events: none;
}

.pricing-section .container {
    position: relative;
    z-index: 1;
}

.pricing-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-color);
}

.pricing-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
}

.trust-badge i {
    color: var(--text-muted);
    margin-right: 5px;
}

.pricing-social-proof {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
    justify-content: center;
}

.social-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.avatar-group {
    display: flex;
}

.avatar-group img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.avatar-group img:first-child {
    margin-left: 0;
}

@media (max-width: 576px) {
    .pricing-social-proof {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .social-text-group {
        align-items: center;
    }
}

.stars-rating {
    color: #ffb400;
    font-size: 14px;
}

.happy-customers {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
}

/* Pricing Cards Container */
.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
    /* Center vertically so the middle one can pop */
}

/* Card Styles */
.pricing-card-modern {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.pricing-card-modern:hover {
    transform: translateY(-5px);
}

/* Dark Highlighted Card */
.pricing-card-modern.dark {
    background: #0f172a;
    /* Dark Navy/Black */
    color: #fff;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
    /* Make it larger */
    z-index: 2;
}

.pricing-card-modern.dark:hover {
    transform: scale(1.08);
    /* Hover effect on top of scale */
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    /* Or center */
    background: #ff6600;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.4);
}

.card-icon {
    font-size: 24px;
    margin-bottom: 20px;
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
}

.pricing-card-modern.dark .card-icon {
    background: rgba(255, 102, 0, 0.2);
    color: #ff6600;
}

.pricing-card-modern h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.card-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 25px;
}

.pricing-card-modern.dark .card-desc {
    color: #94a3b8;
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
}

.pricing-card-modern.dark .price-block {
    color: #fff;
}

.price-block .currency {
    font-size: 24px;
    font-weight: 500;
}

.custom-price-container {
    margin-bottom: 30px;
    text-align: left;
}

.custom-price-label {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.custom-price-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.price-unit {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 2px;
}

.pricing-card-modern.dark .price-unit {
    color: #94a3b8;
}

.original-price {
    font-size: 20px;
    color: #cbd5e1;
    /* Lighter gray for strikethrough */
    text-decoration: line-through;
    font-weight: 400;
}

.original-price.dark-text {
    color: #64748b;
}

/* Buttons */
.btn-pricing-outline {
    display: block;
    width: 100%;
    padding: 14px 0;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.btn-pricing-outline:hover {
    border-color: var(--text-color);
    background: #fff;
}

.btn-pricing-primary {
    display: block;
    width: 100%;
    padding: 16px 0;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    border: none;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.btn-pricing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5);
}

.card-meta {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
}

.pricing-card-modern.dark .card-meta {
    color: #fff;
}

.card-divider {
    height: 1px;
    background: #e2e8f0;
    margin-bottom: 20px;
}

.pricing-card-modern.dark .card-divider {
    background: #334155;
    opacity: 0.5;
}

.features-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.features-list-modern li {
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card-modern.dark .features-list-modern li {
    color: #e2e8f0;
}

.features-list-modern li i {
    color: var(--text-color);
    /* Checkmark color */
    margin-top: 3px;
}

.pricing-card-modern.dark .features-list-modern li i {
    color: #fff;
}

/* Feature muted styling */
.features-list-modern li.muted {
    color: #94a3b8;
    text-decoration: line-through;
}

/* Footer note */
.pricing-footer-note {
    text-align: center;
    margin-top: 60px;
    color: var(--text-muted);
    font-size: 14px;
}

.guarantee-note {
    margin-top: 20px;
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-cards-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card-modern.dark {
        transform: scale(1);
        order: -1;
        /* Show popular first on mobile? Or kept in middle? Let's keep normal order or stick to middle. */
        /* If we want it to be same size as others on mobile */
    }

    .pricing-card-modern.dark:hover {
        transform: translateY(-5px);
    }
}

/* Reviews Slider */
/* Reviews Section (Premium Redesign) */
.reviews-section {
    padding: 120px 0;
    background-color: #faf9f6;
    /* Premium Warm Off-White */
    position: relative;
    overflow: hidden;
}

.reviews-container-split {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Left Column: Sticky Info */
.reviews-left {
    flex: 0 0 32%;
    position: sticky;
    top: 140px;
    padding-right: 20px;
}

.quote-icon-large {
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.15;
    margin-bottom: 25px;
    /* Move it up slightly */
    transform: translateX(-10px);
}

.reviews-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-color);
}

.trust-score-badge {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.trust-score-badge .score {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-color);
}

.trust-score-badge .stars-row {
    color: #00b67a;
    /* Trustpilot Green */
    font-size: 20px;
}

.trust-score-badge .platform {
    font-size: 14px;
    color: var(--text-muted);
    width: 100%;
    margin-top: 5px;
}

/* Navigation Controls */
.reviews-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.control-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: white;
    font-size: 18px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.control-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 102, 0, 0.2);
}

.progress-track {
    flex: 1;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    max-width: 140px;
}

.progress-bar {
    height: 100%;
    width: 20%;
    /* Initial width, updated by JS */
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Right Column: Slider */
/* Right Column: Slider */
.reviews-right {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    background-color: #faf9f6;
    border-radius: 20px;
    display: flex;
    gap: 60px;
    /* Increased to hide 3rd card shadow */
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 60px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-right::-webkit-scrollbar {
    display: none;
}

/* Premium Review Card */
.review-card-premium {
    min-width: calc(50% - 30px);
    max-width: calc(50% - 30px);
    background: white;
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}



.review-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Cleaner CSS Tail using Pseudo-element */
.review-card-premium::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 40px;
    width: 24px;
    height: 24px;
    background: white;
    transform: rotate(45deg);
    /* No shadow on tail to avoid artifacts, rely on card shadow */
    z-index: 0;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.03);
}

/* Masking fix if needed, but z-index trick usually works better with wrapper */
.review-card-premium {
    z-index: 2;
}

.card-stars {
    color: #00b67a;
    /* Trustpilot Green */
    margin-bottom: 20px;
    font-size: 18px;
}

.review-heading {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.35;
}

.review-body {
    font-size: 16px;
    line-height: 1.65;
    color: #64748b;
    margin-bottom: 30px;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.avatar-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Premium Color Sets for Avatars */
.avatar-icon-wrapper.val-1 {
    background: #fee2e2;
    color: #ef4444;
}

.avatar-icon-wrapper.val-2 {
    background: #fef9c3;
    color: #eab308;
}

.avatar-icon-wrapper.val-3 {
    background: #dcfce7;
    color: #22c55e;
}

.avatar-icon-wrapper.val-4 {
    background: #dbeafe;
    color: #3b82f6;
}

.avatar-icon-wrapper.val-5 {
    background: #f3e8ff;
    color: #a855f7;
}

.author-details h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2px;
}

.author-details span {
    font-size: 13px;
    color: #94a3b8;
}

/* Remove old tail class styles */
.card-tail {
    display: none;
}

/* Responsive */
@media (max-width: 992px) {
    .reviews-container-split {
        flex-direction: column;
        gap: 40px;
    }

    .reviews-left {
        flex: none;
        width: 100%;
        text-align: center;
        position: static;
    }

    .quote-icon-large {
        margin: 0 auto 20px;
    }

    .trust-score-badge {
        justify-content: center;
    }

    .reviews-controls {
        justify-content: center;
    }

    .reviews-right {
        width: 100%;
        margin-right: -20px;
        /* Reset breakout on mobile, slight pull to edge */
        padding-right: 20px;
    }
}

@media (max-width: 576px) {
    .review-card-premium {
        min-width: 280px;
        max-width: 280px;
    }

    .reviews-title {
        font-size: 32px;
    }
}

/* Process Section (Premium Redesign) */
.process {
    padding: 120px 0;
    overflow: hidden;
}

.process-timeline {
    display: flex;
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 60px;
    min-height: 400px;
}

.process-step {
    flex: 1;
    background: #f8fafc;
    /* Subtle off-white for inactive */
    border-radius: 30px;
    padding: 40px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    box-shadow: none;
    /* Flat inactive */
    border: 1px solid #e2e8f0;
    /* Subtle border */
    display: flex;
    flex-direction: column;
}

.process-step:hover {
    background: #fff;
    border-color: rgba(255, 77, 79, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.process-step.active {
    flex: 3;
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    /* Smoother shadow */
    border-color: transparent;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.step-num {
    font-size: 24px;
    font-weight: 700;
    color: #cbd5e1;
    /* Muted grey */
    transition: 0.3s;
}

.process-step.active .step-num {
    color: var(--primary-color);
    font-size: 32px;
}

.step-line {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    /* Grey line */
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.process-step.active .step-line {
    background: #f1f5f9;
}

.step-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--primary-color);
    transition: width 0.5s ease;
}

.process-step.active .step-line::after {
    background: var(--primary-color);
    width: 100%;
}

.step-content {
    opacity: 0.6;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.process-step:hover .step-content {
    opacity: 1;
}

.process-step.active .step-content {
    opacity: 1;
    transform: translateY(0);
}

/* ... existing styles ... */

.next-step-arrow {
    position: relative;
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s, background 0.3s, color 0.3s;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    margin-left: 10px;
    /* Add space from line */
    flex-shrink: 0;
    /* Prevent shrinking */
}

.process-step.active .next-step-arrow {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.next-step-arrow:hover {
    background: var(--primary-color);
    color: white;
}

.step-card-cta {
    margin-top: 20px;
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(255, 77, 79, 0.3);
    margin-left: 10px;
    /* Add space from line */
    white-space: nowrap;
}

.process-step.active .step-card-cta {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0.2s;
}

.step-card-cta:hover {
    background: #e63946;
    /* Darker red */
    color: white;
    box-shadow: 0 6px 20px rgba(255, 77, 79, 0.5);
    transform: translateY(-2px);
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
    white-space: nowrap;
}

.process-step.active .step-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.step-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    /* max-height: 0; */
    /* overflow: hidden; */
    display: none;
    opacity: 0;
}

.process-step.active .step-desc {
    display: block;
    animation: fadeIn 0.4s 0.2s forwards;
}

.step-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}

.process-step.active .step-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: fadeIn 0.4s 0.3s forwards;
}

.step-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    font-weight: 500;
}

.step-points li i {
    color: var(--primary-color);
    font-size: 14px;
    background: rgba(255, 77, 79, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-glow {
    box-shadow: 0 4px 15px rgba(255, 77, 79, 0.4);
    transition: 0.3s;
}

.btn-glow:hover {
    box-shadow: 0 8px 25px rgba(255, 77, 79, 0.6);
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .process-timeline {
        flex-direction: column;
        gap: 20px;
        min-height: auto;
    }

    .process-step {
        flex: none;
        width: 100%;
        min-height: auto;
    }

    .process-step.active {
        flex: none;
    }

    .step-desc,
    .step-points {
        display: none !important;
    }

    .process-step.active .step-desc {
        display: block !important;
    }

    .process-step.active .step-points {
        display: flex !important;
    }
}

/* FAQ - Premium Split Screen Design */
.faq {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 77, 79, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.faq-split-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

/* Left Column - FAQ Questions */
.faq-left {
    position: relative;
}

.faq-header {
    margin-bottom: 50px;
}

.faq-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 77, 79, 0.08);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(255, 77, 79, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.faq-item.active {
    background: linear-gradient(135deg, rgba(255, 77, 79, 0.03) 0%, rgba(255, 107, 109, 0.02) 100%);
    border-color: rgba(255, 77, 79, 0.3);
    box-shadow: 0 10px 40px rgba(255, 77, 79, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    cursor: pointer;
    gap: 24px;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    line-height: 1.5;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon i {
    color: var(--primary-color);
    font-size: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    box-shadow: 0 4px 15px rgba(255, 77, 79, 0.3);
}

.faq-item.active .faq-icon i {
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 32px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
    padding-bottom: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 32px 28px 32px;
}

/* Right Column - Contact Card */
.faq-right {
    position: sticky;
    top: 120px;
}

.faq-contact-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16162a 100%);
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.faq-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 77, 79, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.faq-contact-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 77, 79, 0.1) 0%, transparent 70%);
    animation: pulseGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.contact-card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 77, 79, 0.4);
}

.contact-card-icon-wrapper i {
    font-size: 36px;
    color: white;
    position: relative;
    z-index: 2;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.icon-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255, 77, 79, 0.4) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.faq-contact-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 0 12px 0;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.highlight-white {
    color: var(--primary-color);
    display: inline-block;
    position: relative;
}

.contact-card-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 2;
}

.contact-topics-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    position: relative;
    z-index: 2;
}

.contact-topics-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

.contact-topics-list li:last-child {
    margin-bottom: 0;
}

.contact-topics-list .dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
}

.btn-contact-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255, 77, 79, 0.4);
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.btn-contact-card:hover {
    background: #e63946;
    box-shadow: 0 12px 35px rgba(255, 77, 79, 0.6);
    transform: translateY(-2px);
    color: white;
}

.btn-contact-card i {
    transition: transform 0.3s ease;
}

.btn-contact-card:hover i {
    transform: translateX(5px);
}

.contact-card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.availability-badge {
    display: flex;
    align-items: center;
    gap: 16px;
}

.availability-badge i {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.availability-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.availability-label {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.availability-time {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* New Contact Footer Items - Redesign */
.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    /* Subtle dark background */
    border-radius: 50%;
    /* Circle */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-detail-item:hover .contact-icon-box {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(253, 57, 59, 0.3);
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.contact-value {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .faq-split-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .faq-right {
        position: static;
    }

    .faq-contact-card {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 80px 0;
    }

    .faq-title {
        font-size: 36px;
    }

    .faq-question {
        padding: 20px 24px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-icon {
        width: 36px;
        height: 36px;
    }

    .faq-answer {
        padding: 0 24px;
    }

    .faq-item.active .faq-answer {
        padding: 0 24px 20px 24px;
    }

    .faq-contact-card {
        padding: 40px 30px;
    }

    .faq-contact-card h3 {
        font-size: 24px;
    }

    .contact-card-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .contact-card-icon-wrapper i {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 28px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .btn-contact-card {
        width: 100%;
        justify-content: center;
    }
}

/* Footer - Ultra Premium Design */
.footer {
    padding: 0;
    background: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 50%, #16162a 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Mesh Pattern Background */
.footer-decor-mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(253, 57, 59, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(253, 57, 59, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

/* Floating Decorative Particles */
.footer-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    animation: floatParticle 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }

    50% {
        transform: translate(30px, -40px) scale(1.5);
        opacity: 0.4;
    }
}

/* Decorative top gradient line */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), #ff6b6b, var(--primary-color), transparent);
    z-index: 10;
}

/* Main Footer Content */
.footer-main {
    padding: 80px 0 60px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-col {
    position: relative;
}

/* Brand Column */
.footer-col-brand {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 24px;
    display: inline-block;
}

.footer-logo img {
    height: 55px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
    line-height: 1.7;
    font-size: 15px;
}

/* Enhanced Social Media Section */
.footer-social-section h5 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-social-section h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Premium Social Links - Icon Only */
.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.social-link i {
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.social-label {
    display: none;
}

.social-link:hover {
    color: #ffffff;
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(253, 57, 59, 0.35);
}

.social-link:hover::before {
    opacity: 1;
}

/* Footer Column Headers */
.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b);
    border-radius: 2px;
}

/* Footer Links */
.footer-col ul {
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-col ul li a i {
    font-size: 10px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-col ul li a:hover i {
    transform: translateX(3px);
}

/* Premium Contact Cards Section - Compact */
.footer-col-contact {
    max-width: 420px;
}

.contact-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex: 1;
    min-width: 140px;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(253, 57, 59, 0.15), rgba(255, 107, 109, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: rgba(253, 57, 59, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 20px rgba(253, 57, 59, 0.25);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(253, 57, 59, 0.3);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
}

.contact-card-content {
    flex: 1;
    position: relative;
    z-index: 1;
    min-width: 0;
}

.contact-card-content h5 {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2px 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-card-content p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-card:hover .contact-card-content h5 {
    color: var(--primary-color);
}

.contact-card-arrow {
    display: none;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.2);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(253, 57, 59, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(253, 57, 59, 0.5);
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 80%;
}

.lightbox-content {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close-lightbox:hover {
    color: var(--primary-color);
}

.lightbox-nav {
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    padding: 20px;
    transition: 0.3s;
    z-index: 2001;
}

.lightbox-nav:hover {
    color: var(--primary-color);
}

.lightbox-nav.prev {
    position: absolute;
    left: 20px;
}

.lightbox-nav.next {
    position: absolute;
    right: 20px;
}

/* Responsive Design */

/* Tablets and Below (992px) */
@media (max-width: 992px) {
    .hero {
        padding: 140px 0 80px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-mosaic {
        max-width: 500px;
        margin: 0 auto;
    }

    .brand-slide {
        min-width: 50%;
    }

    /* .features-content rule removed to avoid conflict with correct .features-grid rules above */

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item-footer {
        padding: 20px;
        gap: 15px;
    }

    .stat-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .stat-content h3 {
        font-size: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .footer-col-brand,
    .footer-col-contact {
        max-width: 100%;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    .footer-tagline {
        margin: 0 auto 20px;
        max-width: 400px;
    }

    .footer-social-section h5,
    .footer-col h4 {
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social-section h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact-mini {
        align-items: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .review-card {
        min-width: 50%;
    }
}

/* Mobile (768px and Below) */
@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        /* Changed from left to right for slide-in from right side, or keep left if preferred. Let's start with right for a standard drawer feel, or simple fade. */
        left: auto;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }

    .nav-center.active .nav-list {
        right: 0;
        left: auto;
    }

    .nav-list a:not(.btn) {
        font-size: 24px;
        font-weight: 600;
    }

    .nav-list .btn {
        margin-top: 10px;
        padding: 15px 40px;
        font-size: 18px;
    }

    /* Hide scroll when menu is open - helpful utility class */
    body.menu-open {
        overflow: hidden;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        order: 2;
    }

    .hero-mosaic {
        order: 1;
        max-width: 100%;
        height: auto;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .stat-item {
        flex: 1;
        min-width: 100px;
        text-align: center;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .showcase-grid {
        gap: 15px;
    }

    .brand-slide {
        min-width: 100%;
    }

    .brand-slider-btn {
        display: none;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        min-width: 100%;
    }

    .reviews-slider-wrapper {
        flex-direction: column;
    }

    .slider-btn {
        display: none;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-stats {
        padding: 40px 0;
    }

    .stat-item-footer {
        padding: 18px;
    }

    .stat-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .stat-content h3 {
        font-size: 22px;
    }

    .footer-main {
        padding: 60px 0 40px;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .social-link i {
        font-size: 16px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }
}

/* Extra Small Mobile (480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-badge {
        padding: 8px 16px;
    }

    .hero-badge span {
        font-size: 12px;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-item {
        min-width: 90px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

    .logo {
        font-size: 22px;
    }

    /* .logo-icon styles removed */

    .showcase-grid {
        gap: 10px;
    }
}

/* Call Now Button - Header */
.btn-header-call {
    background-color: #0f172a;
    /* Dark Navy */
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-header-call:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

.btn-header-call i {
    font-size: 16px;
    color: #4ade80;
    /* Bright Green for phone icon */
    animation: ring 2s infinite;
}

/* Ringing Animation */
@keyframes ring {
    0% {
        transform: rotate(0);
    }

    10% {
        transform: rotate(30deg);
    }

    12% {
        transform: rotate(-28deg);
    }

    14% {
        transform: rotate(34deg);
    }

    16% {
        transform: rotate(-32deg);
    }

    18% {
        transform: rotate(30deg);
    }

    20% {
        transform: rotate(-28deg);
    }

    22% {
        transform: rotate(26deg);
    }

    24% {
        transform: rotate(-24deg);
    }

    26% {
        transform: rotate(22deg);
    }

    28% {
        transform: rotate(-20deg);
    }

    30% {
        transform: rotate(18deg);
    }

    32% {
        transform: rotate(-16deg);
    }

    34% {
        transform: rotate(14deg);
    }

    36% {
        transform: rotate(-12deg);
    }

    38% {
        transform: rotate(10deg);
    }

    40% {
        transform: rotate(-8deg);
    }

    42% {
        transform: rotate(6deg);
    }

    44% {
        transform: rotate(-4deg);
    }

    46% {
        transform: rotate(2deg);
    }

    48% {
        transform: rotate(-1deg);
    }

    50% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(0);
    }
}

@media (max-width: 992px) {
    .btn-header-call {
        display: none;
        /* Hide on smaller screens if space is tight */
    }
}

/* =========================================
   PREMIUM PROCESS SECTION REDESIGN
   ========================================= */

.process-section-premium {
    padding: 120px 0;
    position: relative;
    background-color: #f8fafc;
    /* Light Grey for contrast against white cards */
    overflow: hidden;
}

/* Background Decor */
.process-bg-decor {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(253, 57, 59, 0.03) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.process-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    /* Wider container for horizontal flow */
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(253, 57, 59, 0.08);
    /* Very light red */
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.process-title-premium {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.process-subtitle-premium {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Steps Grid */
.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    align-items: stretch;
}

/* Connecting Line (Desktop) */
.process-line-track {
    position: absolute;
    top: 60px;
    /* Aligns with icon center */
    left: 10%;
    right: 10%;
    height: 2px;
    background: #eef0f5;
    z-index: 0;
}

.process-line-fill {
    position: absolute;
    top: 60px;
    left: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #ff8e5d 100%);
    width: 0;
    z-index: 0;
    transition: width 0.3s ease;
}

/* Individual Step Card */
.process-card-premium {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(253, 57, 59, 0.1);
}

/* Step Number Background */
.step-number-bg {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 80px;
    font-weight: 900;
    color: #f7f7f7;
    line-height: 1;
    z-index: 0;
    transition: all 0.4s ease;
    opacity: 0.3;
}

.process-card-premium:hover .step-number-bg {
    color: var(--primary-color);
    opacity: 0.05;
    transform: scale(1.1);
}

/* Icon */
.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    /* Spacing below icon */
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border: 4px solid #ffffff;
    /* White border to cut line */
    transition: all 0.4s ease;
}

.step-icon-wrapper i {
    font-size: 32px;
    color: var(--primary-color);
    transition: transform 0.4s ease;
}

.process-card-premium:hover .step-icon-wrapper {
    background: var(--primary-color);
    box-shadow: 0 15px 35px rgba(253, 57, 59, 0.3);
    transform: scale(1.1);
}

.process-card-premium:hover .step-icon-wrapper i {
    color: #ffffff;
    transform: rotateY(360deg);
}

/* Content */
.step-content {
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.step-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Features List inside card */
.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    background: #fdfdfd;
    padding: 15px;
    border-radius: 12px;
}

.step-features li {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.step-features li:last-child {
    margin-bottom: 0;
}

.step-features i {
    color: #4CAF50;
    /* Green check */
    font-size: 14px;
    margin-top: 4px;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .process-steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-line-track,
    .process-line-fill {
        display: none;
        /* Hide line on tablet/mobile */
    }
}

@media (max-width: 768px) {
    .process-steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-section-premium {
        padding: 80px 0;
    }

    .process-card-premium {
        padding: 30px 20px;
        text-align: left;
        /* Better readability on mobile */
        align-items: flex-start;
    }

    .step-icon-wrapper {
        margin: 0 0 20px 0;
    }

    .step-number-bg {
        right: 10px;
        top: 10px;
        font-size: 80px;
    }
}

/* =========================================
   PREMIUM TESTIMONIALS REDESIGN
   ========================================= */

.reviews-section-premium {
    padding: 100px 0;
    background-color: #fffaf9;
    /* Very subtle warm tint */
    overflow: hidden;
    position: relative;
}

.reviews-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Left Column: Fixed Content */
.reviews-left {
    flex: 0 0 35%;
    max-width: 450px;
}

.quote-icon-large {
    font-size: 60px;
    color: rgba(253, 57, 59, 0.15);
    /* Light Brand Red */
    margin-bottom: 20px;
}

.reviews-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.1;
    margin-bottom: 30px;
}

.reviews-title .highlight {
    color: var(--primary-color);
}

.trust-score-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.trust-score-badge .score {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
}

.trust-score-badge .stars-row {
    color: #00b67a;
    /* Trustpilot Green */
    font-size: 18px;
}

.trust-score-badge .platform {
    color: var(--text-muted);
    font-size: 14px;
}

/* Navigation Buttons */
.reviews-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.control-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(253, 57, 59, 0.2);
}

.progress-track {
    width: 100px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    width: 20%;
    /* JS will update this */
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Right Column: Slider */
.reviews-right {
    flex: 1;
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 40px 10px;
    /* Space for shadows */
    /* Hide scrollbar */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

.reviews-right::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

/* Review Card */
.review-card-modern {
    min-width: 350px;
    max-width: 350px;
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.review-stars {
    color: #00b67a;
    /* Green stars */
    font-size: 16px;
    margin-bottom: 20px;
}

.review-headline {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.review-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f5f5f5;
    padding-top: 20px;
}

.review-author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 12px;
    color: #999;
}

/* Responsive */
@media (max-width: 992px) {
    .reviews-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .reviews-left {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .trust-score-badge {
        justify-content: center;
    }

    .reviews-controls {
        justify-content: center;
        display: none;
        /* Hide custom controls on mobile, rely on swipe */
    }

    .reviews-right {
        width: 100%;
        padding-left: 0;
    }

    .review-card-modern {
        min-width: 300px;
    }
}

/* =========================================
   DARK PREMIUM TESTIMONIALS (V2)
   ========================================= */

.testimonials-section-dark {
    position: relative;
    padding: 120px 0;
    background-color: #0f172a;
    /* Deep Navy/Black */
    overflow: hidden;
    color: #ffffff;
}

/* Ambient Animated Background */
.ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 30%, rgba(253, 57, 59, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(100, 50, 255, 0.1) 0%, transparent 50%);
    filter: blur(60px);
    animation: pulseGlow 10s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Particle Overlay */
.particles-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zzM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
    opacity: 0.3;
}

.testimonials-container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Header */
.testimonials-header {
    margin-bottom: 70px;
    padding: 0 20px;
    /* Keep header text contained/readable */
}

.testimonials-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonials-title-dark {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1.5px;
}

.testimonials-subtitle-dark {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Slider Track */
.glass-slider-wrapper {
    position: relative;
    margin-top: 50px;
    perspective: 1000px;
    /* 3D effect perspective */
}

/* Using a flex container with overflow for scrolling, but styling like a spotlight */
/* Using a flex container with overflow for scrolling, but styling like a spotlight */
.glass-slider-track {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 60px 40px;
    /* Top/Bottom for hover lift, Sides for aesthetics */
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: stretch;
    /* Center vertically */
    width: 100%;
}

.glass-slider-track::-webkit-scrollbar {
    display: none;
}

/* Glass Card */
.glass-card {
    flex: 0 0 auto;
    /* Don't stretch */
    width: auto;
    min-width: 500px;
    max-width: 500px;
    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);
    /* Restore border */
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: none;
    /* Reset if needed, or keep consistent */
    border-radius: 24px;
    /* Restore radius */
    padding: 50px 40px;
    /* Reduced padding slightly from full screen version */
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    text-align: left;
    /* Revert to left align for easier reading on cards */
    align-items: flex-start;
    justify-content: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    /* Restore shadow */
    flex-shrink: 0;
    box-sizing: border-box;
}

/* Card Content Constraint */
.glass-card>* {
    max-width: 100%;
    width: 100%;
}

/* Glow on Hover */
.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    /* Border glow width */
    background: linear-gradient(135deg, rgba(253, 57, 59, 0.5), transparent, rgba(100, 50, 255, 0.5));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(253, 57, 59, 0.1);
    /* Ambient glow */
    border-color: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-quote-icon {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

/* Neon Stars */
.neon-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.neon-stars i {
    color: #00ffaa;
    /* Neon Mint/Green */
    font-size: 14px;
    text-shadow: 0 0 10px rgba(0, 255, 170, 0.4);
}

.glass-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.glass-card-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

/* Author Section */
.glass-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.glass-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    object-fit: cover;
}

.author-details h5 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.author-details span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-top: 4px;
}

/* Slider Controls (Floating) */
.glass-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.glass-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(253, 57, 59, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .testimonials-title-dark {
        font-size: 42px;
    }

    .glass-card {
        min-width: 320px;
        max-width: 320px;
    }
}

@media (max-width: 576px) {
    .glass-card {
        min-width: 280px;
        max-width: 280px;
        padding: 30px;
    }

    .testimonials-title-dark {
        font-size: 36px;
    }
}

/* =========================================
   LIGHTBOX MODAL STYLING
   ========================================= */

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
}

.close-lightbox:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    overflow: hidden;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    display: block;
    animation: zoomIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 24px;
    padding: 20px 25px;
    cursor: pointer;
    z-index: 10001;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: var(--primary-color);
    box-shadow: 0 0 20px rgba(253, 57, 59, 0.4);
}

.lightbox-nav.prev {
    left: 40px;
}

.lightbox-nav.next {
    right: 40px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .close-lightbox {
        top: 20px;
        right: 25px;
        font-size: 40px;
    }

    .lightbox-nav {
        padding: 15px 18px;
        font-size: 18px;
    }

    .lightbox-nav.prev {
        left: 15px;
    }

    .lightbox-nav.next {
        right: 15px;
    }

    .lightbox-content img {
        max-height: 70vh;
    }
}