
@charset "utf-8";
/* CSS Document */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #f5f7fa;
    --accent: #F4D03F;
    --accent-hover: #F5D657;
    --text-light: #2a2a2a;
    --text-muted: #4a4a4a; /* Improved contrast: high contrast on light backgrounds */
    --text-secondary: #6a6a6a; /* Secondary text: good contrast on light backgrounds */
    --bg-dark: #3a3a3a;
    --bg-section: #f5f5f5;
    --focus-color: #F4D03F;
    --focus-shadow: rgba(244, 208, 63, 0.25);
    --link-color: #F4D03F;
    --link-hover: #F5D657;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 70px;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 50%, #edf2f7 100%);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Ensure all text is visible on light backgrounds */
h1, h2, h3, h4, h5, h6 {
    color: #1a1a1a;
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */

/* Text content link styles - underline for accessibility (only applies to links inside text content) */
p a,
li a,
td a,
.content a,
.description a,
article a {
    color: var(--link-color);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: all 0.2s ease;
}

p a:hover,
li a:hover,
td a:hover,
.content a:hover,
.description a:hover,
article a:hover {
    color: var(--link-hover);
    text-decoration-thickness: 2px;
}

p a:focus,
li a:focus,
td a:focus,
.content a:focus,
.description a:focus,
article a:focus {
    outline: 2px solid var(--focus-color);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Focus visible for all interactive elements */
*:focus-visible {
    outline: 2px solid var(--focus-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px var(--focus-shadow);
}

/* Visually hidden but screen reader accessible */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== END ACCESSIBILITY IMPROVEMENTS ===== */

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    padding: 0px 50px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    animation: slideDown 0.8s ease;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

    nav.scrolled {
        padding: 15px 50px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid #e2e8f0;
    }

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

    .logo-link:hover {
        transform: scale(1.05);
    }

.logo-svg {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #0f172a, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

    .nav-links a {
        color: #334155;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.3px;
        position: relative;
        transition: all 0.3s ease;
        padding: 5px 10px;
    }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--accent);
            opacity: 0;
            transform: skewX(-10deg);
            transition: all 0.3s ease;
            z-index: -1;
        }

        .nav-links a:hover {
            color: #0f172a;
        }

            .nav-links a:hover::before {
                opacity: 0;
            }

        .nav-links a.active {
            color: #0f172a;
        }

            .nav-links a.active::after {
                content: '';
                position: absolute;
                bottom: -4px;
                left: 0;
                width: 100%;
                height: 2px;
                background: var(--accent);
            }

.nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover)) !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.25) !important;
}

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 51, 102, 0.35) !important;
    }

    .nav-cta::before {
        display: none;
    }

/* Tablet screens */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }

    .hero-left {
        padding-right: 0;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-right {
        display: none;
    }

    .grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .featured-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-content {
        padding: 30px;
    }

        .featured-content h2 {
            font-size: 32px;
        }

    .feature-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-image-section {
        height: 400px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px;
    }
}

/* Medium screens - stack navigation */
@media (max-width: 1070px) and (min-width: 769px) {
    nav {
        padding: 15px 30px;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
    }

        .nav-links a {
            font-size: 12px;
        }

    nav.scrolled {
        padding: 10px 30px;
    }

    .hero-container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 60px;
    }

    .hero-image-wrapper {
        max-width: 400px;
    }

    .tag {
        display: none;
    }

    .featured-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .collections,
    .featured,
    .contact {
        padding-top: 120px;
    }

    section {
        scroll-margin-top: 100px;
    }
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

    .menu-toggle span {
        width: 25px;
        height: 2px;
        background: #1a202c;
        margin: 3px 0;
        transition: 0.3s;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transition: right 0.3s ease;
    z-index: 999;
}

    .mobile-nav.active {
        right: 0;
    }

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 30px;
    list-style: none;
}

    .mobile-nav-links a {
        color: #1a202c;
        text-decoration: none;
        font-size: 24px;
        letter-spacing: 3px;
        text-transform: uppercase;
        transition: all 0.3s ease;
    }

        .mobile-nav-links a:hover {
            color: var(--accent);
            transform: translateX(10px);
        }

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #f0f4f8;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

    .hero-bg::before {
        content: '';
        position: absolute;
        width: 150%;
        height: 150%;
        top: -25%;
        left: -25%;
        background: conic-gradient(from 180deg at 50% 50%, #ff3366 0deg, #000 60deg, #ff3366 120deg, #000 180deg, #ff3366 240deg, #000 300deg, #ff3366 360deg);
        animation: spin 20s linear infinite;
        opacity: 0.15;
    }

    .hero-bg::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    }

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-container {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 2;
    align-items: center;
}

.hero-left {
    padding-right: 60px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 22px;
    background: linear-gradient(135deg, #fee2e2 0%, #fce7f3 100%);
    border: 2px solid var(--accent);
    color: #dc2626;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: slideInLeft 1s ease;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(255, 51, 102, 0.15);
}

    .hero-badge::before {
        content: '';
        position: absolute;
        width: 30px;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 51, 102, 0.5), transparent);
        left: -30px;
        animation: shimmer 3s ease infinite;
    }

@keyframes shimmer {
    0% {
        left: -30px;
    }

    100% {
        left: calc(100% + 30px);
    }
}

.hero-title {
    font-size: clamp(50px, 7vw, 90px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    position: relative;
}

    .hero-title .line {
        display: block;
        overflow: hidden;
    }

        .hero-title .line span {
            display: inline-block;
            animation: slideUp 1s ease backwards;
        }

        .hero-title .line:nth-child(1) span {
            animation-delay: 0.2s;
        }

        .hero-title .line:nth-child(2) span {
            animation-delay: 0.3s;
        }

        .hero-title .line:nth-child(3) span {
            animation-delay: 0.4s;
        }

    .hero-title .accent {
        background: linear-gradient(90deg, #ff3366, #ff6690);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-style: italic;
    }

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568; /* High contrast for light backgrounds */
    margin-bottom: 40px;
    animation: fadeIn 1s ease 0.6s backwards;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    animation: fadeIn 1s ease 0.8s backwards;
}

.stat {
    position: relative;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.cta-group {
    display: flex;
    gap: 16px;
    animation: fadeIn 1s ease 1s backwards;
    margin-top: 28px;
    align-items: center;
    justify-content: flex-start;
}

.cta-button {
    padding: 16px 36px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-block;
    border-radius: 8px;
}

    .cta-button.primary {
        background: linear-gradient(135deg, #ff3366 0%, #ff1149 100%);
        color: white;
        border: none;
        box-shadow: 0 4px 16px rgba(255, 51, 102, 0.3);
    }

        .cta-button.primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button.primary:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(255, 51, 102, 0.4);
        }

    .cta-button.outline {
        background: #ffffff;
        color: #0f172a;
        border: 2px solid #0f172a;
        font-weight: 700;
    }

        .cta-button.outline:hover {
            background: #0f172a;
            color: #ffffff;
            border-color: #0f172a;
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
        }

.hero-right {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    transform: scale(1.1);
}

    .carousel-slide.active {
        opacity: 1;
        transform: scale(1);
        animation: kenburns 12s ease-out;
    }

@keyframes kenburns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 3px;
}

    .indicator.active {
        background: var(--accent);
        width: 60px;
    }

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.floating-tags {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tag {
    position: absolute;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    color: #1a202c;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInScale 1s ease backwards;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

    .tag:nth-child(1) {
        top: 20%;
        left: -50px;
        animation-delay: 1.2s;
    }

    .tag:nth-child(2) {
        top: 40%;
        right: -60px;
        animation-delay: 1.4s;
    }

    .tag:nth-child(3) {
        bottom: 30%;
        left: -40px;
        animation-delay: 1.6s;
    }

@keyframes fadeInScale {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease infinite;
    z-index: 3;
}

    .scroll-indicator span {
        display: block;
        width: 30px;
        height: 50px;
        border: 2px solid rgba(26, 32, 44, 0.3);
        border-radius: 25px;
        position: relative;
    }

        .scroll-indicator span::after {
            content: '';
            display: block;
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 10px;
            animation: scrollDot 2s ease infinite;
        }

@keyframes bounce {

    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scrollDot {
    0% {
        top: 10px;
        opacity: 1;
    }

    50% {
        top: 30px;
        opacity: 0.5;
    }

    100% {
        top: 10px;
        opacity: 1;
    }
}

/* Collections Grid */
.collections {
    padding: 120px 50px 100px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
    color: #1a1a1a !important;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.section-title span {
    color: #F4D03F !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.section-subtitle {
    color: #4a4a4a !important;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 14px 28px;
    background: #3a3a3a;
    border: 2px solid #555555;
    border-radius: 0;
    color: #e0e0e0;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

    .tab-btn.active {
        background: var(--accent);
        border-color: var(--accent);
        color: #1a1a1a;
        box-shadow: 0 6px 16px rgba(244, 208, 63, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .tab-btn:hover {
        background: #2d2d2d;
        border-color: var(--accent);
        color: var(--accent);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(244, 208, 63, 0.3);
    }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.collection-card {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

    .collection-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .collection-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .collection-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .collection-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .collection-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .collection-card:nth-child(6) {
        animation-delay: 0.6s;
    }

    .collection-card:nth-child(7) {
        animation-delay: 0.7s;
    }

    .collection-card:nth-child(8) {
        animation-delay: 0.8s;
    }

.collection-thumbnail {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, #e2e8f0, #f7fafc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    opacity: 0.5;
    transition: transform 0.5s ease, opacity 0.5s ease;
    position: relative;
    overflow: hidden;
}

    .collection-thumbnail::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent 30%, rgba(255, 51, 102, 0.1) 50%, transparent 70%);
        transform: translateX(-100%);
        transition: transform 0.8s ease;
    }

.collection-card:hover .collection-thumbnail::after {
    transform: translateX(100%);
}

.collection-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-card:hover .collection-thumbnail {
    transform: scale(1.05);
    opacity: 0.8;
}

.collection-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 51, 102, 0.4);
    box-shadow: 0 12px 32px rgba(255, 51, 102, 0.15);
}

.card-content {
    padding: 25px;
    background: #ffffff;
}

.card-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent);
    color: white;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    border-radius: 2px;
}

.card-title {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 800;
    color: #0f172a;
}

.card-subtitle {
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
}

.card-price {
    font-size: 18px;
    color: var(--accent);
    font-weight: 600;
}

/* Featured Section - Light Professional Theme */
.featured {
    padding: 120px 50px 0px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 50%, #e8e8e8 100%) !important;
    position: relative;
    overflow: hidden;
}

    .featured::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(244, 208, 63, 0.03) 20px,
            rgba(244, 208, 63, 0.03) 40px
        );
        opacity: 1;
        z-index: 0;
        pointer-events: none;
    }

.featured-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.featured-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.featured-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: -2px;
    color: #1a1a1a !important;
}

.featured-content .label {
    color: #F4D03F !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    margin-bottom: 20px;
    display: block;
}

.featured-content p {
    color: #3a3a3a !important;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.highlight-item {
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

    .highlight-item:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--accent);
        transform: translateY(-5px);
    }

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), #ff6690);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.highlight-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a202c;
}

.highlight-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

.featured-image-section {
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #e2e8f0, #f7fafc);
}

.featured-image-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
    height: 100%;
}

.featured-img {
    background: linear-gradient(45deg, #cbd5e0, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .featured-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .featured-img:hover img {
        transform: scale(1.05);
    }

    .featured-img:hover {
        transform: scale(1.02);
    }

    .featured-img:first-child {
        grid-row: 1 / 3;
        background: linear-gradient(135deg, #a0aec0, #cbd5e0);
        font-size: 18px;
    }

    .featured-img::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent 30%, rgba(255, 51, 102, 0.1) 50%, transparent 70%);
        transform: translateX(-100%);
        transition: transform 0.8s ease;
    }

    .featured-img:hover::before {
        transform: translateX(100%);
    }

.feature-cta {
    display: inline-block;
    padding: 18px 50px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
    border-radius: 4px;
}

    .feature-cta:hover {
        background: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(255, 51, 102, 0.4);
    }

/* Testimonials */
.testimonials {
    margin-top: 60px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

    .testimonials-header h3 {
        font-size: 32px;
        margin-bottom: 15px;
        letter-spacing: -1px;
        color: #1a202c;
    }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
}

    .testimonial-card:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: translateY(-5px);
    }

.testimonial-quote {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), #ff6690);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #1a202c;
}

.author-info p {
    font-size: 14px;
    color: var(--text-muted);
}

.testimonial-rating {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--accent);
    font-size: 14px;
}

/* Newsletter Section */
.newsletter {
    padding: 120px 50px 100px;
    background: linear-gradient(135deg, var(--accent), #cc0044);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.newsletter p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .newsletter-input:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.2);
        border-color: white;
    }

.newsletter-btn {
    padding: 18px 40px;
    background: white;
    color: var(--accent);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .newsletter-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

/* Contact Section */
.contact {
    padding: 120px 50px 100px;
    background: var(--bg-section);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #ffffff, #f7fafc);
    padding: 50px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

    .contact-form-wrapper::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
        opacity: 0.05;
        animation: rotate 30s linear infinite;
    }

.form-group {
    margin-bottom: 25px;
    position: relative;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: var(--text-muted);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 15px;
        background: #f7fafc;
        border: 1px solid #e2e8f0;
        color: #1a202c;
        font-size: 16px;
        transition: all 0.3s ease;
        font-family: 'Arial', sans-serif;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            background: #ffffff;
            border-color: var(--accent);
            box-shadow: 0 0 20px rgba(255, 51, 102, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(26, 32, 44, 0.5);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    background: var(--accent);
    color: white;
    padding: 18px 50px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

    .form-submit::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .form-submit:hover::before {
        width: 300px;
        height: 300px;
    }

    .form-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(255, 51, 102, 0.4);
    }

.contact-info {
    padding: 50px;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.08), rgba(255, 51, 102, 0.02));
    border-radius: 10px;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.info-item {
    margin-bottom: 50px;
    display: flex;
    align-items: start;
    gap: 20px;
    transition: all 0.3s ease;
}

    .info-item:hover {
        transform: translateX(5px);
    }

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), #ff6690);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.2);
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #1a202c;
}

.info-content p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 15px;
}

.info-content a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

    .info-content a:hover {
        color: var(--accent-hover);
        text-decoration: underline;
    }

/* Map Section */
.map-section {
    position: relative;
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0, #f7fafc);
    overflow: hidden;
    margin-top: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: #f0f4f8;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 8px;
    }

.map-placeholder {
    text-align: center;
    color: var(--text-muted);
    width: 100%;
    height: 100%;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    padding: 80px 50px 30px;
    border-top: 2px solid #e2e8f0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0f172a, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: #64748b;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-link:hover {
        background: var(--accent);
        border-color: var(--accent);
        color: white;
        transform: translateY(-3px);
    }

.footer-column h4 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #0f172a;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
}

    .footer-column a:hover {
        color: var(--accent);
        transform: translateX(5px);
    }

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

    .footer-bottom p {
        color: var(--text-muted);
        font-size: 14px;
    }

.payment-methods {
    display: flex;
    gap: 15px;
}

.payment-icon {
    width: 40px;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
        text-align: center;
    }

    .hero-left {
        padding-right: 0;
        padding-top: 20px;
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-stats {
        justify-content: center;
        gap: 30px;
    }

    .stat-number {
        font-size: 28px;
    }

    .hero-right {
        display: none;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        gap: 12px;
        margin: 0 auto;
        padding: 0 16px;
    }

    .cta-button {
        width: 100%;
        max-width: 320px;
        text-align: center;
        padding: 16px 30px;
        margin: 0 auto;
        display: block;
        box-sizing: border-box;
    }

    .collections,
    .featured,
    .contact {
        padding: 80px 20px 50px;
    }

    section {
        scroll-margin-top: 60px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .collection-thumbnail {
        height: 250px;
    }

    .card-content {
        padding: 20px;
    }

    .featured-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .featured-content {
        padding: 25px;
    }

        .featured-content h2 {
            font-size: 32px;
        }

    .feature-timeline {
        padding: 20px;
    }

    .timeline-item {
        padding-left: 35px;
    }

    .feature-progress {
        margin: 25px 0;
    }

    .progress-item {
        margin-bottom: 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .map-section {
        height: 300px;
        margin-top: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Small Mobile Devices */
@media (max-width: 520px) {
    .section-title {
        font-size: 1.6rem;
        letter-spacing: 0.02em;
    }

    .section-subtitle {
        font-size: 0.85rem;
        letter-spacing: 0.04em;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

