﻿/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

/* Hero Container with Background Image ONLY */
.hero-container {
    background-image: url('/image/HomePage/Frame 9.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0d1b2a;
    width: 100%;
    margin: 0;
    padding: 3rem 3rem 1.5rem;
    position: relative;
    z-index: 1;
    min-height: 78vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    padding-left: 1rem;
    max-width: 600px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title-highlight {
    color: #ff5722;
    display: block;
}

.hero-description {
    font-size: 19px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-btn {
    padding: 13px 30px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}

.hero-btn-primary {
    background-color: #ff5722;
    color: #ffffff;
}

    .hero-btn-primary:hover {
        background-color: #f4511e;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
    }

.hero-btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

    .hero-btn-secondary:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

/* Product Images - Hidden on Desktop, Shown on Mobile */
.hero-products {
    display: none;
}

/* Floating Action Buttons - Vertical Stack at Bottom Right */
.floating-actions {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    z-index: 10000;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff5722;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
    transition: all 0.3s ease;
}

    .floating-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(255, 87, 34, 0.6);
    }

/* Features Section - Horizontal Layout */
.features-section {
    background-color: rgba(15, 27, 46, 0.95);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background-color: #ff5722;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.feature-text {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .floating-actions {
        right: 20px;
        bottom: 25px;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 50px;
    }

    .hero-description {
        font-size: 17px;
    }

    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .floating-actions {
        right: 15px;
        bottom: 20px;
    }

    .floating-btn {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        min-height: 80vh;
        padding: 2.5rem 2rem 1.5rem;
        background-position: center center;
        background-attachment: scroll;
    }

    .hero-text {
        padding-left: 0;
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .floating-actions {
        position: relative;
        right: auto;
        bottom: auto;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }
}

/* ============================================
   MOBILE VIEW - FIGMA DESIGN IMPLEMENTATION
   ============================================ */

@media (max-width: 768px) {
    .hero-container {
        background-image: none !important;
        background: black;
        padding: 3rem 1.5rem 0;
        min-height: auto;
        position: relative;
    }

        /* Add subtle violet/purple overlay */
        .hero-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(75, 0, 130, 0.08) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

    /* REDUCE GAP IN HERO-CONTENT */
    .hero-content {
        position: relative;
        z-index: 1;
        gap: 0;
    }

    .hero-text {
        text-align: center;
        padding: 0;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-shadow: none;
    }

        .hero-title br {
            display: block;
        }

    .hero-title-highlight {
        color: #ff5722;
        display: block;
        margin-top: 0.25rem;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.85);
        margin: 0 auto 1.25rem;
        max-width: 100%;
    }

    /* Buttons in ONE LINE (horizontal) - MINIMAL SPACE BELOW */
    .hero-buttons {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .hero-btn {
        flex: 1;
        max-width: 160px;
        padding: 14px 24px;
        font-size: 16px;
        border-radius: 8px;
    }

    .hero-btn-primary {
        background-color: #ff5722;
        color: #ffffff;
        border: none;
    }

    .hero-btn-secondary {
        background-color: white;
        color: orangered;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: none;
    }

    /* Single Product Image on Mobile - NO EXTRA SPACING */
    .hero-products {
        display: block;
        position: relative;
        width: 100%;
        margin: 0;
        padding: 0;
        text-align: center;
    }

        .hero-products::before {
            display: none;
        }

    .product-container {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        padding: 0;
        margin: 0;
    }

    .product-image {
        width: 100%;
        max-width: 400px;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto;
        padding: 0;
    }

        /* Hide additional product images if present */
        .product-image:nth-child(2),
        .product-image:nth-child(3) {
            display: none;
        }

    /* Hide Floating Actions on Mobile */
    .floating-actions {
        display: none;
    }

    /* Features Section - Icon and Text in ONE LINE (horizontal) */
    .features-section {
        background-color: #0f0a1e;
        padding: 2.5rem 0;
    }

    .features-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
        padding: 0 1.5rem;
    }

    .feature-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 0.75rem;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        flex-shrink: 0;
    }

        .feature-icon svg {
            width: 22px;
            height: 22px;
        }

    .feature-text {
        font-size: 13px;
        line-height: 1.4;
        text-align: left;
    }
}

/* Smaller Mobile Screens (576px and below) */
@media (max-width: 576px) {
    .hero-container {
        padding: 2.5rem 1.25rem 0;
    }

    .hero-content {
        gap: 0;
    }

    .hero-text {
        margin-bottom: 1.25rem;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 0.875rem;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        gap: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .hero-btn {
        max-width: 140px;
        padding: 12px 20px;
        font-size: 15px;
    }

    .hero-products {
        margin: 0;
        padding: 0;
    }

    .product-image {
        max-width: 350px;
    }

    .features-container {
        gap: 1.5rem 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

        .feature-icon svg {
            width: 20px;
            height: 20px;
        }

    .feature-text {
        font-size: 12px;
    }
}

/* Very Small Screens (480px and below) */
@media (max-width: 480px) {
    .hero-container {
        padding: 2rem 1rem 0;
    }

    .hero-content {
        gap: 0;
    }

    .hero-text {
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 0.75rem;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 0.875rem;
    }

    .hero-buttons {
        gap: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .hero-btn {
        max-width: 130px;
        padding: 11px 18px;
        font-size: 14px;
    }

    .hero-products {
        margin: 0;
        padding: 0;
    }

    .product-image {
        max-width: 300px;
    }

    .features-section {
        padding: 2rem 0;
    }

    .features-container {
        padding: 0 1rem;
        gap: 1.5rem 0.75rem;
    }

    .feature-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

        .feature-icon svg {
            width: 19px;
            height: 19px;
        }

    .feature-text {
        font-size: 11px;
    }
}




/* Turn Problems Into Power Section - Exact Figma Match */

.problems-section {
    background-color: #f7f7f7;
    padding: 4rem 0 4.5rem;
}

.problems-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.highlight-text {
    color: #ff5722;
    font-weight: 600;
}

.section-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
    white-space: nowrap;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.problem-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1.5px solid #ff8a65;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

    .problem-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(255, 87, 34, 0.12);
        border-color: #ff5722;
    }

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f9f9f9;
    border-radius: 16px 16px 0 0;
}

    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
        border-radius: 14px 14px 0 0;
    }

.problem-card:hover .card-image img {
    transform: scale(1.04);
}

.card-content {
    padding: 1.5rem 1.5rem 1.75rem;
    position: relative;
    background-color: #fff9f7;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
    padding-right: 45px;
}

.card-link {
    position: absolute;
    bottom: 1.75rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    background-color: #ff5722;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .card-link:hover {
        background-color: #f4511e;
        transform: scale(1.1);
    }

/* Responsive Styles */
@media (max-width: 1400px) {
    .section-subtitle {
        white-space: normal;
        max-width: 700px;
    }
}

@media (max-width: 1200px) {
    .problems-container {
        padding: 0 2.5rem;
    }

    .section-title {
        font-size: 38px;
    }

    .section-subtitle {
        font-size: 15px;
        white-space: normal;
        max-width: 650px;
    }

    .problems-grid {
        gap: 1.5rem;
    }

    .card-image {
        height: 200px;
    }
}

@media (max-width: 992px) {
    .problems-section {
        padding: 3.5rem 0;
    }

    .problems-container {
        padding: 0 2rem;
    }

    .section-title {
        font-size: 34px;
    }

    .section-subtitle {
        font-size: 15px;
        white-space: normal;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .card-image {
        height: 240px;
    }
}

/* ============================================
   MOBILE VIEW - HORIZONTAL SCROLL CAROUSEL
   ============================================ */

@media (max-width: 768px) {
    .problems-section {
        background-color: #ffffff;
        padding: 2.5rem 0 3rem;
        overflow: hidden;
    }

    .problems-container {
        padding: 0;
    }

    .section-header {
        margin-bottom: 1.75rem;
        padding: 0 1.25rem;
    }

    .section-title {
        font-size: 28px;
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 14px;
        line-height: 1.6;
        color: #666;
        white-space: normal;
    }

    /* HORIZONTAL SCROLLABLE GRID */
    .problems-grid {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        padding: 0 1.25rem;
    }

        /* Hide scrollbar for Chrome, Safari and Opera */
        .problems-grid::-webkit-scrollbar {
            display: none;
        }

    .problem-card {
        flex: 0 0 85%;
        max-width: 85%;
        min-width: 85%;
        scroll-snap-align: start;
        border: 2px solid #ff8a65;
        border-radius: 14px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

        /* Remove hover effect on mobile */
        .problem-card:hover {
            transform: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

    .card-image {
        height: 200px;
        border-radius: 14px 14px 0 0;
    }

        .card-image img {
            border-radius: 12px 12px 0 0;
        }

    .card-content {
        padding: 1.25rem 1.25rem 1.5rem;
        background-color: #ffffff;
    }

    .card-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #1a1a1a;
    }

    .card-description {
        font-size: 13px;
        line-height: 1.5;
        color: #666;
        padding-right: 40px;
    }

    .card-link {
        width: 32px;
        height: 32px;
        bottom: 1.5rem;
        right: 1.25rem;
        background-color: #ff5722;
    }

        .card-link svg {
            width: 16px;
            height: 16px;
        }
}

@media (max-width: 576px) {
    .problems-section {
        padding: 2rem 0 2.5rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .problems-grid {
        gap: 0.875rem;
        padding: 0 1rem;
    }

    .problem-card {
        flex: 0 0 90%;
        max-width: 90%;
        min-width: 90%;
    }

    .card-image {
        height: 180px;
    }

    .card-content {
        padding: 1.125rem 1.125rem 1.375rem;
    }

    .card-title {
        font-size: 17px;
    }

    .card-description {
        font-size: 12.5px;
        padding-right: 38px;
    }

    .card-link {
        width: 30px;
        height: 30px;
        bottom: 1.375rem;
        right: 1.125rem;
    }

        .card-link svg {
            width: 15px;
            height: 15px;
        }
}

@media (max-width: 480px) {
    .problems-section {
        padding: 1.75rem 0 2.25rem;
    }

    .section-header {
        padding: 0 0.875rem;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 12.5px;
    }

    .problems-grid {
        padding: 0 0.875rem;
    }

    .problem-card {
        flex: 0 0 92%;
        max-width: 92%;
        min-width: 92%;
    }

    .card-image {
        height: 170px;
    }

    .card-content {
        padding: 1rem 1rem 1.25rem;
    }

    .card-title {
        font-size: 16px;
    }

    .card-description {
        font-size: 12px;
        padding-right: 36px;
    }

    .card-link {
        width: 28px;
        height: 28px;
        bottom: 1.25rem;
        right: 1rem;
    }

        .card-link svg {
            width: 14px;
            height: 14px;
        }
}

/* 3-Level Journey Section - Reduced Height */
.journey-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.journey-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.journey-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.journey-title {
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.journey-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    align-items: center;
}

.journey-card {
    border-radius: 20px;
    padding: 1.5rem 1.5rem 1.75rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .journey-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

/* Featured Card - Center (Slightly Larger) */
.card-featured {
    transform: scale(1.05);
/*    z-index: 2;*/
}

    .card-featured:hover {
        transform: scale(1.05) translateY(-6px);
    }

/* Exact Colors from Figma */
.card-brown {
    background-color: #502900;
}

.card-green {
    background-color: #01342d;
}

.card-dark-brown {
    background-color: #521500;
}

.wishlist-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .wishlist-btn:hover {
        background-color: rgba(255, 255, 255, 0.25);
        transform: scale(1.1);
    }

.card-product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.25rem;
    min-height: 180px;
}

    .card-product-image img {
        max-width: 100%;
        height: auto;
        max-height: 200px;
        object-fit: contain;
    }

.card-info {
    text-align: center;
    color: #ffffff;
}

.card-level-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.65rem;
    color: #ffffff;
}

.card-level-description {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    min-height: 55px;
}

.card-price {
    font-size: 26px;
    font-weight: 700;
    color: #ffb74d;
    margin-bottom: 1rem;
}

.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.btn-buy-now,
.btn-add-cart {
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-buy-now {
    background-color: #ff5722;
    color: #ffffff;
    border: none;
}

    .btn-buy-now:hover {
        background-color: #f4511e;
        transform: translateY(-2px);
    }

.btn-add-cart {
    background-color: #ffffff;
    color: #1a1a1a;
    border: 2px solid #ff5722;
}

    .btn-add-cart:hover {
        background-color: rgba(255, 255, 255, 0.9);
        transform: translateY(-2px);
        border-color: #f4511e;
    }

/* Responsive Styles */
@media (max-width: 1200px) {
    .journey-container {
        padding: 0 2.5rem;
    }

    .journey-title {
        font-size: 38px;
    }

    .journey-grid {
        gap: 1.5rem;
    }

    .card-featured {
        transform: scale(1.03);
    }

        .card-featured:hover {
            transform: scale(1.03) translateY(-6px);
        }

    .card-product-image {
        min-height: 170px;
    }

        .card-product-image img {
            max-height: 190px;
        }
}

@media (max-width: 992px) {
    .journey-section {
        padding: 3.5rem 0;
    }

    .journey-container {
        padding: 0 2rem;
    }

    .journey-header {
        margin-bottom: 2rem;
    }

    .journey-title {
        font-size: 34px;
    }

    .journey-subtitle {
        font-size: 15px;
    }

    .journey-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .card-featured {
        transform: scale(1);
    }

        .card-featured:hover {
            transform: translateY(-6px);
        }

    .card-product-image {
        min-height: 200px;
    }

        .card-product-image img {
            max-height: 220px;
        }
}

/* ============================================
   MOBILE VIEW - 2x1 GRID LAYOUT (Figma Design)
   Level 1 & 2 on top, Level 3 centered below
   ============================================ */

@media (max-width: 768px) {
    .journey-section {
        padding: 2.5rem 0 3rem;
        background-color: #ffffff;
    }

    .journey-container {
        padding: 0 1.25rem;
    }

    .journey-header {
        margin-bottom: 1.75rem;
    }

    .journey-title {
        font-size: 28px;
        line-height: 1.3;
        font-weight: 600;
    }

    .journey-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }

    /* 2x1 GRID: Level 1 & 2 on top row, Level 3 centered below */
    .journey-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        align-items: stretch;
    }

    /* REORDER CARDS USING CSS ORDER PROPERTY */
    /* Level 3 (first in HTML) should appear last */
    .journey-card:nth-child(1) {
        order: 3;
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    /* Level 1 (second in HTML) should appear first */
    .journey-card:nth-child(2) {
        order: 1;
    }

    /* Level 2 (third in HTML) should appear second */
    .journey-card:nth-child(3) {
        order: 2;
    }

    .journey-card {
        padding: 1.25rem 1rem 1.375rem;
        border-radius: 14px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    }

    /* Remove featured card scaling on mobile */
    .card-featured {
        transform: scale(1);
    }

        .card-featured:hover {
            transform: none;
        }

    /* Remove hover effect on mobile */
    .journey-card:hover {
        transform: none;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    }

    .wishlist-btn {
        width: 32px;
        height: 32px;
        top: 1rem;
        right: 1rem;
    }

        .wishlist-btn svg {
            width: 18px;
            height: 18px;
        }

    .card-product-image {
        min-height: 130px;
        margin-bottom: 0.875rem;
    }

        .card-product-image img {
            max-height: 150px;
        }

    .card-level-title {
        font-size: 16px;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    /* HIDE DESCRIPTION ON MOBILE */
    .card-level-description {
        display: none;
    }

    .card-price {
        font-size: 20px;
        margin-bottom: 0.75rem;
        font-weight: 700;
    }

    .card-buttons {
        gap: 0.5rem;
    }

    .btn-buy-now,
    .btn-add-cart {
        padding: 9px 14px;
        font-size: 12px;
        border-radius: 6px;
        font-weight: 600;
    }
}

@media (max-width: 576px) {
    .journey-section {
        padding: 2rem 0 2.5rem;
    }

    .journey-container {
        padding: 0 1rem;
    }

    .journey-header {
        margin-bottom: 1.5rem;
    }

    .journey-title {
        font-size: 26px;
    }

    .journey-subtitle {
        font-size: 13px;
    }

    .journey-grid {
        gap: 0.875rem;
    }

    /* Level 3 card takes more width on smaller screens */
    .journey-card:nth-child(1) {
        max-width: 60%;
    }

    .journey-card {
        padding: 1.125rem 0.875rem 1.25rem;
    }

    .card-product-image {
        min-height: 120px;
    }

        .card-product-image img {
            max-height: 140px;
        }

    .card-level-title {
        font-size: 15px;
    }

    /* Keep description hidden */
    .card-level-description {
        display: none;
    }

    .card-price {
        font-size: 19px;
    }

    .btn-buy-now,
    .btn-add-cart {
        padding: 8px 12px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .journey-section {
        padding: 1.75rem 0 2.25rem;
    }

    .journey-container {
        padding: 0 0.875rem;
    }

    .journey-title {
        font-size: 24px;
    }

    .journey-subtitle {
        font-size: 12.5px;
    }

    .journey-grid {
        gap: 0.75rem;
    }

    /* Level 3 card takes even more width on very small screens */
    .journey-card:nth-child(1) {
        max-width: 65%;
    }

    .journey-card {
        padding: 1rem 0.75rem 1.125rem;
    }

    .wishlist-btn {
        width: 30px;
        height: 30px;
    }

        .wishlist-btn svg {
            width: 16px;
            height: 16px;
        }

    .card-product-image {
        min-height: 110px;
    }

        .card-product-image img {
            max-height: 130px;
        }

    .card-level-title {
        font-size: 14px;
    }

    /* Keep description hidden */
    .card-level-description {
        display: none;
    }

    .card-price {
        font-size: 18px;
    }

    .btn-buy-now,
    .btn-add-cart {
        padding: 7px 10px;
        font-size: 10.5px;
    }
}


/* Powered by Nature's Best Section - Reduced Height */
.ingredients-section {
    background-color: #f7f7f7;
    padding: 3.5rem 0;
}

.ingredients-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.ingredients-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.ingredients-title {
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.ingredients-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.ingredient-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

    .ingredient-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

.ingredient-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
}

    .ingredient-icon img {
        width: 65px;
        height: 65px;
        object-fit: contain;
    }

/* Alternative background colors for variety */
.ingredient-card:nth-child(2) .ingredient-icon {
    background: linear-gradient(135deg, #ffe6f0 0%, #ffd4e5 100%);
}

.ingredient-card:nth-child(3) .ingredient-icon {
    background: linear-gradient(135deg, #fff9e6 0%, #fff0cc 100%);
}

.ingredient-card:nth-child(4) .ingredient-icon {
    background: linear-gradient(135deg, #f0e6ff 0%, #e0ccff 100%);
}

.ingredient-card:nth-child(5) .ingredient-icon {
    background: linear-gradient(135deg, #e6f4ff 0%, #cce7ff 100%);
}

.ingredient-card:nth-child(6) .ingredient-icon {
    background: linear-gradient(135deg, #fff4e6 0%, #ffe5cc 100%);
}

.ingredient-name {
    font-size: 19px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.ingredient-benefit {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.ingredients-cta {
    text-align: center;
}

.btn-see-all {
    padding: 13px 34px;
    background-color: #ff5722;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

    .btn-see-all:hover {
        background-color: #f4511e;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 87, 34, 0.4);
    }

/* Responsive Styles */
@media (max-width: 1200px) {
    .ingredients-title {
        font-size: 38px;
    }

    .ingredients-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .ingredients-section {
        padding: 3rem 0;
    }

    .ingredients-container {
        padding: 0 2rem;
    }

    .ingredients-header {
        margin-bottom: 2rem;
    }

    .ingredients-title {
        font-size: 34px;
    }

    .ingredients-subtitle {
        font-size: 15px;
    }

    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 2.25rem;
    }
}

/* ============================================
   MOBILE VIEW - FIGMA DESIGN MATCH
   ============================================ */

@media (max-width: 768px) {
    .ingredients-section {
        background-color: #ffffff;
        padding: 2.5rem 0 3rem;
    }

    .ingredients-container {
        padding: 0 1.25rem;
    }

    .ingredients-header {
        margin-bottom: 1.75rem;
    }

    .ingredients-title {
        font-size: 28px;
        font-weight: 600;
        line-height: 1.3;
    }

    .ingredients-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }

    /* 2-COLUMN GRID LAYOUT */
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .ingredient-card {
        padding: 1.25rem 1rem;
        border-radius: 12px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }

        .ingredient-card:hover {
            transform: none;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        }

    .ingredient-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 0.875rem;
    }

        .ingredient-icon img {
            width: 50px;
            height: 50px;
        }

    .ingredient-name {
        font-size: 16px;
        margin-bottom: 0.375rem;
        font-weight: 600;
    }

    .ingredient-benefit {
        font-size: 12px;
        line-height: 1.4;
    }

    .btn-see-all {
        padding: 12px 32px;
        font-size: 14px;
        border-radius: 8px;
    }
}

@media (max-width: 576px) {
    .ingredients-section {
        padding: 2rem 0 2.5rem;
    }

    .ingredients-container {
        padding: 0 1rem;
    }

    .ingredients-header {
        margin-bottom: 1.5rem;
    }

    .ingredients-title {
        font-size: 26px;
    }

    .ingredients-subtitle {
        font-size: 13px;
    }

    .ingredients-grid {
        gap: 0.875rem;
        margin-bottom: 1.75rem;
    }

    .ingredient-card {
        padding: 1.125rem 0.875rem;
    }

    .ingredient-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 0.75rem;
    }

        .ingredient-icon img {
            width: 45px;
            height: 45px;
        }

    .ingredient-name {
        font-size: 15px;
    }

    .ingredient-benefit {
        font-size: 11px;
    }

    .btn-see-all {
        padding: 11px 28px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .ingredients-section {
        padding: 1.75rem 0 2.25rem;
    }

    .ingredients-container {
        padding: 0 0.875rem;
    }

    .ingredients-title {
        font-size: 24px;
    }

    .ingredients-subtitle {
        font-size: 12.5px;
    }

    .ingredients-grid {
        gap: 0.75rem;
    }

    .ingredient-card {
        padding: 1rem 0.75rem;
    }

    .ingredient-icon {
        width: 60px;
        height: 60px;
    }

        .ingredient-icon img {
            width: 42px;
            height: 42px;
        }

    .ingredient-name {
        font-size: 14px;
    }

    .ingredient-benefit {
        font-size: 10.5px;
    }

    .btn-see-all {
        padding: 10px 26px;
        font-size: 12px;
    }
}


/* Choose Your Performance Plan Section */
/* ==============================
   Pricing Section
   ============================== */
.pricing-section {
    background-color: #fff;
    padding: 4rem 0;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-title {
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.pricing-subtitle {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* Pricing Cards Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

/* Card Styles */
.pricing-card {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

    .pricing-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

/* Featured Card */
.pricing-featured {
    border-color: #ff5722;
    background-color: #fff9f7;
    transform: scale(1.02);
}

    .pricing-featured:hover {
        transform: scale(1.02) translateY(-6px);
    }

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff5722;
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Plan Text */
.plan-name {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0.5rem 0 1rem;
}

.plan-price {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.plan-duration {
    font-size: 15px;
    color: #666;
    margin-bottom: 1.75rem;
}

/* Features List */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

    .plan-features li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
        font-size: 14px;
        color: #444;
    }

        .plan-features li svg {
            flex-shrink: 0;
            color: #4caf50;
        }

/* Buttons */
.btn-plan {
    width: 100%;
    padding: 13px 24px;
    background-color: #fff;
    color: #1a1a1a;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-plan:hover {
        background-color: #f5f5f5;
        transform: translateY(-2px);
    }

.btn-plan-featured {
    background-color: #ff5722;
    color: #fff;
    border-color: #ff5722;
}

    .btn-plan-featured:hover {
        background-color: #f4511e;
        border-color: #f4511e;
    }

/* CTA Button */
.pricing-cta {
    text-align: center;
}

.btn-view-all {
    padding: 13px 34px;
    background-color: #fff;
    color: #1a1a1a;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-view-all:hover {
        background-color: #f5f5f5;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

/* ==============================
   Responsive Styles
   ============================== */
@media (max-width: 992px) {
    .pricing-container {
        padding: 0 2rem;
    }

    .pricing-title {
        font-size: 34px;
    }

    .pricing-subtitle {
        font-size: 15px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 2.5rem 0 3rem;
        background-color: #f7f7f7;
        overflow: hidden;
    }

    .pricing-grid {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0 1.25rem 1rem;
    }

        .pricing-grid::-webkit-scrollbar {
            display: none;
        }

    .pricing-card {
        flex: 0 0 85%;
        max-width: 85%;
        min-width: 85%;
        scroll-snap-align: start;
    }

        .pricing-card:hover {
            transform: none;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }

    .pricing-featured:hover {
        transform: none;
    }

    .popular-badge {
        font-size: 12px;
        padding: 5px 18px;
        top: -10px;
    }

    .plan-name {
        font-size: 24px;
    }

    .plan-price {
        font-size: 42px;
    }

    .plan-duration {
        font-size: 14px;
        margin-bottom: 1.5rem;
    }

    .plan-features li {
        font-size: 13px;
        margin-bottom: 0.875rem;
    }

    .btn-plan {
        padding: 12px 20px;
        font-size: 14px;
    }

    .btn-view-all {
        padding: 12px 32px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .pricing-section {
        padding: 2rem 0 2.5rem;
    }

    .pricing-header {
        margin-bottom: 1.75rem;
        padding: 0 1rem;
    }

    .pricing-title {
        font-size: 26px;
    }

    .pricing-subtitle {
        font-size: 13px;
    }

    .pricing-card {
        flex: 0 0 88%;
        max-width: 88%;
        min-width: 88%;
        padding: 1.5rem 1.25rem;
    }

    .plan-name {
        font-size: 22px;
    }

    .plan-price {
        font-size: 38px;
    }

    .plan-features li {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 1.75rem 0 2.25rem;
    }

    .pricing-header {
        padding: 0 0.875rem;
    }

    .pricing-title {
        font-size: 24px;
    }

    .pricing-subtitle {
        font-size: 12.5px;
    }

    .pricing-card {
        flex: 0 0 90%;
        max-width: 90%;
        min-width: 90%;
        padding: 1.375rem 1.125rem;
    }

    .plan-name {
        font-size: 20px;
    }

    .plan-price {
        font-size: 36px;
    }

    .btn-plan, .btn-view-all {
        font-size: 13px;
    }
}



/* Real Men, Real Results Section */
.testimonials-section {
    background-color: #1a2332;
    padding: 4rem 0;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-title {
    font-size: 42px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.testimonials-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.testimonial-card {
    background-color: #242d3d;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    transition: all 0.3s ease;
    display: flex; 
    flex-direction: column; 
}

    .testimonial-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    }

.rating {
    display: flex;
    gap: 4px;
    margin-bottom: 1.25rem;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.testimonials-cta {
    text-align: center;
}

.btn-rating {
    padding: 14px 32px;
    background-color: #ff5722;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
}

    .btn-rating:hover {
        background-color: #f4511e;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 87, 34, 0.5);
    }

/* Responsive Styles */
@media (max-width: 1200px) {
    .testimonials-title {
        font-size: 38px;
    }

    .testimonials-grid {
        gap: 1.75rem;
    }
}

@media (max-width: 992px) {
    .testimonials-section {
        padding: 3.5rem 0;
    }

    .testimonials-container {
        padding: 0 2rem;
    }

    .testimonials-title {
        font-size: 34px;
    }

    .testimonials-subtitle {
        font-size: 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}

/* ============================================
   MOBILE VIEW - HORIZONTAL SCROLL CAROUSEL
   ============================================ */

@media (max-width: 768px) {
    .testimonials-section {
        padding: 2.5rem 0 3rem;
        overflow: hidden;
    }

    .testimonials-container {
        padding: 0;
    }

    .testimonials-header {
        margin-bottom: 2rem;
        padding: 0 1.25rem;
    }

    .testimonials-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .testimonials-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }

    /* HORIZONTAL SCROLLABLE CAROUSEL */
    .testimonials-grid {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 1.25rem 1rem;
        margin-bottom: 1.5rem;
        scroll-behavior: smooth;
    }

        /* Hide scrollbar */
        .testimonials-grid::-webkit-scrollbar {
            display: none;
        }

    .testimonial-card {
        flex: 0 0 85%;
        max-width: 85%;
        min-width: 85%;
        scroll-snap-align: start;
        padding: 1.75rem 1.5rem;
        border-radius: 14px;
        background-color: #242d3d;
    }

        /* Remove hover effect on mobile */
        .testimonial-card:hover {
            transform: none;
            box-shadow: none;
        }

    .rating {
        gap: 3px;
        margin-bottom: 1rem;
    }

        .rating svg {
            width: 16px;
            height: 16px;
        }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .author-photo {
        width: 44px;
        height: 44px;
    }

    .author-name {
        font-size: 15px;
    }

    .author-title {
        font-size: 12px;
    }

    .testimonials-cta {
        padding: 0 1.25rem;
    }

    .btn-rating {
        padding: 13px 28px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 2rem 0 2.5rem;
    }

    .testimonials-header {
        margin-bottom: 1.75rem;
        padding: 0 1rem;
    }

    .testimonials-title {
        font-size: 26px;
    }

    .testimonials-subtitle {
        font-size: 13px;
    }

    .testimonials-grid {
        gap: 0.875rem;
        padding: 0 1rem 1rem;
    }

    .testimonial-card {
        flex: 0 0 88%;
        max-width: 88%;
        min-width: 88%;
        padding: 1.5rem 1.25rem;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .author-photo {
        width: 42px;
        height: 42px;
    }

    .author-name {
        font-size: 14px;
    }

    .author-title {
        font-size: 11px;
    }

    .testimonials-cta {
        padding: 0 1rem;
    }

    .btn-rating {
        padding: 12px 24px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 1.75rem 0 2.25rem;
    }

    .testimonials-header {
        padding: 0 0.875rem;
    }

    .testimonials-title {
        font-size: 24px;
    }

    .testimonials-subtitle {
        font-size: 12.5px;
    }

    .testimonials-grid {
        padding: 0 0.875rem 1rem;
    }

    .testimonial-card {
        flex: 0 0 90%;
        max-width: 90%;
        min-width: 90%;
        padding: 1.375rem 1.125rem;
    }

    .testimonial-text {
        font-size: 12.5px;
    }

    .author-photo {
        width: 40px;
        height: 40px;
    }

    .testimonials-cta {
        padding: 0 0.875rem;
    }

    .btn-rating {
        font-size: 12px;
        padding: 11px 20px;
    }

        .btn-rating svg {
            width: 18px;
            height: 18px;
        }
}


/* Expert Insights & Tips Section */
.blog-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-title {
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.blog-subtitle {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* Horizontal Scroll Wrapper - Hidden Scrollbar */
.blog-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .blog-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }

.blog-grid {
    display: flex;
    gap: 2rem;
    min-width: min-content;
}

.blog-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    flex: 0 0 380px;
    width: 380px;
}

    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    }

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f5f5f5;
}

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.75rem 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-category {
    background-color: #fff3e0;
    color: #ff6f00;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.blog-time {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 13px;
    color: #666;
}

    .blog-time svg {
        color: #999;
    }

.blog-title-text {
    font-size: 19px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.25rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff5722 !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .blog-link:hover {
        gap: 0.75rem;
    }

    .blog-link svg {
        transition: transform 0.3s ease;
    }

    .blog-link:hover svg {
        transform: translateX(4px);
    }

.blog-cta {
    text-align: center;
}

.btn-view-articles {
    padding: 13px 34px;
    background-color: #ffffff;
    color: #1a1a1a;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-view-articles:hover {
        background-color: #f5f5f5;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

/* Responsive Styles */
@media (max-width: 1200px) {
    .blog-title {
        font-size: 38px;
    }

    .blog-card {
        flex: 0 0 350px;
        width: 350px;
    }

    .blog-grid {
        gap: 1.75rem;
    }
}

@media (max-width: 992px) {
    .blog-section {
        padding: 3.5rem 0;
    }

    .blog-container {
        padding: 0 2rem;
    }

    .blog-title {
        font-size: 34px;
    }

    .blog-subtitle {
        font-size: 15px;
    }

    .blog-card {
        flex: 0 0 320px;
        width: 320px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 3rem 0;
    }

    .blog-container {
        padding: 0 1.5rem;
    }

    .blog-header {
        margin-bottom: 2.5rem;
    }

    .blog-title {
        font-size: 30px;
    }

    .blog-subtitle {
        font-size: 14px;
    }

    .blog-card {
        flex: 0 0 300px;
        width: 300px;
    }

    .blog-content {
        padding: 1.5rem 1.25rem;
    }

    .blog-title-text {
        font-size: 18px;
    }

    .blog-excerpt {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .blog-title {
        font-size: 26px;
    }

    .blog-subtitle {
        font-size: 13px;
    }

    .blog-card {
        flex: 0 0 280px;
        width: 280px;
    }

    .blog-image {
        height: 200px;
    }

    .blog-title-text {
        font-size: 17px;
    }

    .btn-view-articles {
        font-size: 14px;
    }
}


/* Your Next Level Starts Now Section - Reduced Height */
.cta-section {
    background: black;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 30% 50%, rgba(255, 87, 34, 0.08) 0%, transparent 50%), radial-gradient(circle at 70% 50%, rgba(255, 87, 34, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background-color: #ff5722;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(255, 87, 34, 0.4);
}

    .cta-icon svg {
        width: 42px;
        height: 42px;
    }

.cta-title {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 14px 34px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-cta-primary {
    background-color: #ff5722;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
}

    .btn-cta-primary:hover {
        background-color: #f4511e;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 87, 34, 0.5);
    }

.btn-cta-secondary {
    background-color: white;
    color: orangered;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

    .btn-cta-secondary:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
        border-color: rgba(255, 255, 255, 0.5);
    }

/* Responsive Styles */
@media (max-width: 1200px) {
    .cta-title {
        font-size: 40px;
    }

    .cta-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .cta-section {
        padding: 3rem 0;
    }

    .cta-container {
        padding: 0 2rem;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-subtitle {
        font-size: 15px;
    }
}

/* ============================================
   MOBILE VIEW - BUTTONS IN ONE LINE
   ============================================ */

@media (max-width: 768px) {
    .cta-section {
        padding: 2.5rem 0 3rem;
    }

    .cta-container {
        padding: 0 1.25rem;
    }

    .cta-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.25rem;
    }

        .cta-icon svg {
            width: 38px;
            height: 38px;
        }

    .cta-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .cta-subtitle {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 1.75rem;
    }

    /* KEEP BUTTONS IN ONE LINE (HORIZONTAL) */
    .cta-buttons {
        display: flex;
        flex-direction: row;
        gap: 0.75rem;
        justify-content: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        flex: 1;
        max-width: 160px;
        padding: 13px 24px;
        font-size: 14px;
        border-radius: 8px;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 2rem 0 2.5rem;
    }

    .cta-container {
        padding: 0 1rem;
    }

    .cta-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

        .cta-icon svg {
            width: 34px;
            height: 34px;
        }

    .cta-title {
        font-size: 26px;
        margin-bottom: 0.875rem;
    }

    .cta-subtitle {
        font-size: 13px;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        gap: 0.625rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        max-width: 145px;
        padding: 12px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 1.75rem 0 2.25rem;
    }

    .cta-container {
        padding: 0 0.875rem;
    }

    .cta-icon {
        width: 56px;
        height: 56px;
    }

        .cta-icon svg {
            width: 32px;
            height: 32px;
        }

    .cta-title {
        font-size: 24px;
    }

    .cta-subtitle {
        font-size: 12.5px;
        margin-bottom: 1.375rem;
    }

    .cta-buttons {
        gap: 0.5rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        max-width: 140px;
        padding: 11px 18px;
        font-size: 12px;
    }
}
