/* ========================================
   CRAFTFUL Website Styles
   ======================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --primary-purple: #6C5CE7;
    --primary-purple-light: #7C5CFC;
    --light-purple: #E8E0F0;
    --light-purple-bg: #F0EBF8;
    --dark-purple: #5A4BD1;
    --text-dark: #1A1A2E;
    --text-gray: #666666;
    --text-light: #999999;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(108, 92, 231, 0.1);
    --shadow-hover: 0 8px 30px rgba(108, 92, 231, 0.2);
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

    .navbar.scrolled {
        box-shadow: 0 4px 30px rgba(108, 92, 231, 0.15);
    }

    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 80px;
    }

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

    .nav-links a {
        font-size: 15px;
        font-weight: 500;
        color: var(--text-gray);
        transition: var(--transition);
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-purple);
            transition: var(--transition);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary-purple);
        }

            .nav-links a:hover::after,
            .nav-links a.active::after {
                width: 100%;
            }

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(90, 75, 209, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(90, 75, 209, 0.4);
    }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--white);
    color: var(--primary-purple);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--primary-purple);
    cursor: pointer;
    transition: var(--transition);
}

    .btn-secondary:hover {
        background: var(--primary-purple);
        color: var(--white);
    }

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

    .mobile-menu-btn span {
        width: 25px;
        height: 3px;
        background: var(--primary-purple);
        border-radius: 3px;
        transition: var(--transition);
    }

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    padding: 160px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--white);
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.hero-blob-1 {
    top: 10%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-purple-bg) 100%);
}

.hero-blob-2 {
    bottom: 15%;
    left: 10%;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(124, 92, 252, 0.08));
}

.hero-blob-3 {
    top: 40%;
    left: 30%;
    width: 200px;
    height: 200px;
    background: rgba(108, 92, 231, 0.08);
}

.hero-wireframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.hero .container {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 620px;
    margin-top: 0;
    padding-top: 0;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 28px;
    color: var(--text-dark);
}

    .hero-title .highlight-purple {
        color: var(--primary-purple);
    }

.hero-description {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 36px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

    .hero-image img {
        max-width: 70%;
        max-height: 520px;
        object-fit: contain;
        filter: drop-shadow(0 20px 40px rgba(108, 92, 231, 0.15));
    }

/* ========================================
   Section Styles
   ======================================== */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

    .section-title .highlight-purple {
        color: var(--primary-purple);
        font-weight: 700;
    }

    .section-title.left-aligned {
        text-align: left;
    }

    .section-title.centered {
        text-align: center;
    }

    .section-title.white-title {
        color: var(--white);
    }

.section-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* ========================================
   Steps Section
   ======================================== */
.steps-section {
    background: var(--white);
    position: relative;
    padding: 80px 0;
}

.steps-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 450px;
    background: radial-gradient(ellipse at center, rgba(232, 224, 240, 0.6) 0%, transparent 70%);
    z-index: 0;
}

.steps-section .container {
    position: relative;
    z-index: 1;
}

.steps-section .section-title {
    font-size: 22px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.8;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px 16px 24px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(108, 92, 231, 0.08);
    transition: var(--transition);
    position: relative;
}

    .step-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(108, 92, 231, 0.15);
    }

.step-icon-wrap {
    width: 120px;
    height: 120px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .step-icon-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.step-description {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ========================================
   Find & Import Section
   ======================================== */
.find-import-section {
    background: var(--light-purple-bg);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

    .find-import-section .container {
        position: relative;
        z-index: 1;
    }

.find-import-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.find-import-text {
    max-width: 540px;
}

    .find-import-text .section-title {
        text-align: left;
        margin-bottom: 28px;
    }

        .find-import-text .section-title.left-aligned {
            text-align: left;
        }

.find-import-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .find-import-image img {
        max-height: 480px;
        object-fit: contain;
    }

/* ========================================
   You Focus Section
   ======================================== */
.you-focus-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.focus-dots-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--light-purple) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.you-focus-section .container {
    position: relative;
    z-index: 1;
}

.you-focus-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
}

.you-focus-text {
    flex: 1;
    max-width: 520px;
}

    .you-focus-text .section-title {
        text-align: left;
        margin-bottom: 24px;
    }

.focus-intro {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.focus-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

    .focus-list li {
        font-size: 18px;
        color: var(--text-gray);
        padding: 12px 0;
        padding-left: 24px;
        position: relative;
        border-bottom: 1px solid var(--light-purple);
    }

        .focus-list li:last-child {
            border-bottom: none;
        }

        .focus-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-purple);
            font-weight: 700;
        }

.focus-footer {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 20px;
    font-style: italic;
}

.you-focus-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .you-focus-image img {
        max-height: 480px;
        max-width: 100%;
        object-fit: contain;
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    }

/* ========================================
   Sell Worldwide Section
   ======================================== */
.sell-worldwide-section {
    background: var(--light-purple-bg);
    padding: 60px 0 100px;
}

.sell-worldwide-card {
    background: var(--white);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 10px 50px rgba(108, 92, 231, 0.1);
}

    .sell-worldwide-card .section-title {
        margin-bottom: 50px;
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.08);
    transition: var(--transition);
}

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 35px rgba(108, 92, 231, 0.15);
    }

.stat-number {
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.sell-worldwide-footer {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 40px;
    font-style: italic;
    letter-spacing: 0.3px;
}

/* ========================================
   Categories Section
   ======================================== */
.categories-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

    .categories-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(ellipse at 10% 90%, rgba(255, 255, 255, 0.1) 0%, transparent 40%), radial-gradient(ellipse at 90% 10%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    }

    .categories-section .container {
        position: relative;
        z-index: 1;
    }

    .categories-section .section-title {
        color: var(--white);
        margin-bottom: 60px;
    }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

    .category-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    }

.category-icon {
    width: 100px;
    height: 100px;
    background: var(--light-purple-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

    .category-icon img {
        width: 56px;
        height: 56px;
        object-fit: contain;
    }

.category-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ========================================
   Partners Section
   ======================================== */
.partners-section {
    background: var(--white);
    padding: 80px 0;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.partner-logo {
    height: 60px;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
}

    .partner-logo:hover {
        opacity: 1;
        filter: grayscale(0%);
    }

    .partner-logo img {
        height: 100%;
        width: auto;
        object-fit: contain;
    }

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

    .social-links a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

        .social-links a:hover {
            background: var(--primary-purple);
        }

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
        transition: var(--transition);
    }

        .footer-links a:hover {
            color: var(--white);
            padding-left: 5px;
        }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 14px;
    }

/* ========================================
   About Us Page Styles
   ======================================== */
.page-hero {
    position: relative;
    padding: 140px 0 60px;
    min-height: auto;
    overflow: hidden;
    background: var(--white);
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

    .page-hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.5;
    }

.about-hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-hero-content {
    flex: 1;
    max-width: 55%;
}

    .about-hero-content .section-title {
        font-size: 42px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

.about-hero-image {
    flex: 1;
    max-width: 45%;
}

    .about-hero-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: var(--shadow);
    }

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.about-stat-card {
    background: var(--white);
    padding: 24px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.08);
    border: 1px solid var(--light-purple);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Why Choose Us Section */
.why-choose-section {
    background: var(--light-purple-bg);
    padding: 80px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .why-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

.why-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

    .why-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.why-card:hover .why-card-image img {
    transform: scale(1.05);
}

.why-card-content {
    padding: 24px;
}

    .why-card-content h3 {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 12px;
    }

    .why-card-content p {
        font-size: 14px;
        color: var(--text-gray);
        line-height: 1.6;
    }

.why-card-full {
    grid-column: 1 / -1;
    display: flex;
}

    .why-card-full .why-card-image {
        width: 40%;
        height: auto;
        min-height: 250px;
    }

    .why-card-full .why-card-content {
        width: 60%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 30px 40px;
    }

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--white);
}

.team-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.team-image {
    flex: 1;
    max-width: 500px;
}

    .team-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: var(--shadow);
    }

.team-info {
    flex: 1;
}

    .team-info h3 {
        font-size: 32px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 8px;
    }

    .team-info .role {
        font-size: 14px;
        font-weight: 500;
        color: var(--primary-purple);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .team-info p {
        font-size: 16px;
        color: var(--text-gray);
        line-height: 1.8;
    }

/* ========================================
   FAQ Page Styles
   ======================================== */
.faq-section {
    background: var(--white);
    min-height: 100vh;
    padding-bottom: 80px;
}

.faq-container {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.faq-sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.faq-illustration {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--light-purple-bg);
}

    .faq-illustration img {
        width: 100%;
        display: block;
    }

.faq-list {
    background: var(--light-purple-bg);
    border-radius: 16px;
    padding: 20px;
}

.faq-nav-item {
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 6px;
}

    .faq-nav-item:last-child {
        margin-bottom: 0;
    }

    .faq-nav-item:hover {
        background: var(--white);
        color: var(--primary-purple);
    }

    .faq-nav-item.active {
        background: var(--white);
        color: var(--primary-purple);
        font-weight: 600;
        box-shadow: var(--shadow);
    }

.faq-content {
    flex: 1;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--light-purple);
    overflow: hidden;
    transition: var(--transition);
}

    .faq-item:hover {
        border-color: var(--primary-purple-light);
    }

    .faq-item.active {
        border-color: var(--primary-purple);
        box-shadow: 0 4px 20px rgba(108, 92, 231, 0.1);
    }

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

    .faq-question-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.faq-question h3 {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
}

    .faq-toggle::before,
    .faq-toggle::after {
        content: '';
        position: absolute;
        background: var(--primary-purple);
        border-radius: 2px;
        transition: var(--transition);
    }

    .faq-toggle::before {
        width: 16px;
        height: 2px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .faq-toggle::after {
        width: 2px;
        height: 16px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.faq-item.active .faq-toggle::after {
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 24px 24px 80px;
}

    .faq-answer-content p {
        font-size: 15px;
        color: var(--text-gray);
        line-height: 1.8;
    }

/* ========================================
   Coming Soon Page (Service / Integrating)
   ======================================== */
.coming-soon {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.coming-soon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(232, 224, 240, 0.6) 0%, transparent 50%), radial-gradient(ellipse at 80% 50%, rgba(108, 92, 231, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.coming-soon-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

    .coming-soon-content h1 {
        font-size: 72px;
        font-weight: 800;
        background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-light));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 20px;
    }

    .coming-soon-content p {
        font-size: 18px;
        color: var(--text-gray);
        line-height: 1.6;
    }

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 52px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .you-focus-content {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .find-import-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .find-import-text {
        max-width: 100%;
        text-align: center;
    }

        .find-import-text .section-title {
            text-align: center;
        }

    .you-focus-content {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 40px;
    }

    .you-focus-text {
        max-width: 100%;
        text-align: center;
    }

        .you-focus-text .section-title {
            text-align: center;
        }

    .you-focus-image {
        order: -1;
        width: 100%;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .section {
        padding: 60px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* About Us Page Responsive */
    .about-hero .container {
        flex-direction: column;
        gap: 40px;
    }

    .about-hero-content {
        max-width: 100%;
        text-align: center;
    }

        .about-hero-content .section-title {
            font-size: 32px;
        }

    .about-hero-image {
        max-width: 80%;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 28px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card-full {
        flex-direction: column;
    }

        .why-card-full .why-card-image {
            width: 100%;
            min-height: 180px;
        }

        .why-card-full .why-card-content {
            width: 100%;
            padding: 24px;
        }

    .team-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .team-image {
        max-width: 80%;
    }

    .team-info h3 {
        font-size: 26px;
    }

    /* FAQ Page Responsive */
    .faq-container {
        flex-direction: column;
        gap: 30px;
    }

    .faq-sidebar {
        width: 100%;
        position: static;
    }

    .faq-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .faq-nav-item {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 26px;
    }

    .steps-section .section-title {
        font-size: 18px;
    }

    .find-import-content,
    .you-focus-content {
        padding: 0 20px;
    }

    /* About Us Page Responsive - Mobile */
    .about-hero {
        padding: 120px 0 40px;
    }

    .about-hero-content .section-title {
        font-size: 24px;
    }

    .about-hero-image {
        max-width: 100%;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .about-stat-card {
        padding: 16px 12px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 9px;
    }

    .why-card-content h3 {
        font-size: 16px;
    }

    .team-info h3 {
        font-size: 22px;
    }

    /* FAQ Page Responsive - Mobile */
    .faq-section {
        padding-top: 120px;
    }

    .faq-list {
        grid-template-columns: 1fr;
    }

    .faq-nav-item {
        font-size: 13px;
        padding: 12px 14px;
    }

    .faq-question {
        padding: 16px 18px;
    }

        .faq-question h3 {
            font-size: 14px;
        }

    .faq-answer-content {
        padding: 0 18px 18px 74px;
    }

        .faq-answer-content p {
            font-size: 13px;
        }
}
