* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #e74c3c;
            --secondary: #2c3e50;
            --accent: #f39c12;
            --light: #ecf0f1;
            --dark: #1a1a2e;
            --gradient: linear-gradient(135deg, #e74c3c, #c0392b);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background: #fff;
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s, visibility 0.5s;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader {
            width: 100px;
            height: 100px;
            position: relative;
        }

        .loader::before {
            content: '👟';
            font-size: 50px;
            position: absolute;
            animation: bounce 1s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(10deg); }
        }

        .loader-text {
            color: white;
            margin-top: 120px;
            font-size: 14px;
            animation: pulse 1s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--primary);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            transition: transform 0.1s;
        }

        .cursor-follower {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            transition: transform 0.3s;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
            padding: 15px 5%;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            animation: rotateShoe 3s infinite;
        }

        @keyframes rotateShoe {
            0%, 100% { transform: rotateY(0deg); }
            50% { transform: rotateY(180deg); }
        }

        .logo-text h1 {
            font-size: 18px;
            color: var(--dark);
            font-weight: 700;
            line-height: 1.2;
        }

        .logo-text span {
            font-size: 10px;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            position: relative;
            transition: color 0.3s;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        nav ul li a:hover {
            color: var(--primary);
        }

        .header-icons {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .header-icons a {
            color: var(--dark);
            font-size: 20px;
            transition: transform 0.3s, color 0.3s;
        }

        .header-icons a:hover {
            color: var(--primary);
            transform: scale(1.2);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 30px;
            height: 3px;
            background: var(--dark);
            transition: all 0.3s;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-bg-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            animation: float 6s infinite;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: rgba(231, 76, 60, 0.1);
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            background: rgba(243, 156, 18, 0.1);
            bottom: 100px;
            left: -50px;
            animation-delay: 2s;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            background: rgba(44, 62, 80, 0.1);
            top: 50%;
            right: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            width: 100%;
            gap: 50px;
        }

        .hero-text {
            flex: 1;
            z-index: 10;
        }

        .hero-text .subtitle {
            display: inline-block;
            background: var(--gradient);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            margin-bottom: 20px;
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-100px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .hero-text h1 {
            font-size: 60px;
            color: var(--dark);
            line-height: 1.2;
            margin-bottom: 20px;
            animation: slideInLeft 1s ease-out 0.2s both;
        }

        .hero-text h1 span {
            color: var(--primary);
            position: relative;
        }

        .hero-text h1 span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 10px;
            background: rgba(231, 76, 60, 0.2);
            z-index: -1;
        }

        .hero-text p {
            font-size: 18px;
            color: #666;
            margin-bottom: 30px;
            animation: slideInLeft 1s ease-out 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            animation: slideInLeft 1s ease-out 0.6s both;
        }

        .btn {
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
            border: none;
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--dark);
            border: 2px solid var(--dark);
        }

        .btn-secondary:hover {
            background: var(--dark);
            color: white;
            transform: translateY(-5px);
        }

        /* ===== HANGING SHOE STYLES ===== */

.hero-image {
    flex: 1;
    position: relative;
    z-index: 10;
    animation: slideInRight 1s ease-out;
}

.hero-image-container {
    position: relative;
    width: 450px;
    height: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hook/Nail at top */
.hook {
    position: absolute;
    bottom: 82%;
    left: 51%;
    transform: translateX(-50%);
    z-index: 10;
}

.hook-nail {
    width: 20px;
    height: 20px;
    background: linear-gradient(145deg, #666, #333);
    border-radius: 50%;
    box-shadow: 
        inset -2px -2px 5px rgba(0,0,0,0.5),
        inset 2px 2px 5px rgba(255,255,255,0.2),
        0 3px 10px rgba(0,0,0,0.3);
    position: relative;
}

.hook-nail::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #222;
    border-radius: 50%;
}

/* Rope/String */
/* .rope {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 4px;
    height: 80px;
    background: linear-gradient(90deg, #8B4513, #A0522D, #8B4513);
    transform-origin: top center;
    animation: ropeSwing 3s ease-in-out infinite;
    border-radius: 2px;
    z-index: 5;
} */

/* .rope::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 6px;
    height: 100%;
    background: repeating-linear-gradient(
        180deg,
        transparent,
        transparent 8px,
        rgba(0,0,0,0.2) 8px,
        rgba(0,0,0,0.2) 10px
    );
} */

/* @keyframes ropeSwing {
    0% { transform: translateX(-50%) rotate(15deg); }
    50% { transform: translateX(-50%) rotate(-15deg); }
    100% { transform: translateX(-50%) rotate(15deg); }
} */

/* Pendulum Container */
.pendulum {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: top center;
    animation: pendulumSwing 3s ease-in-out infinite;
    z-index: 5;
}

@keyframes pendulumSwing {
    0% {
        transform: translateX(-50%) rotate(15deg);
    }
    50% {
        transform: translateX(-50%) rotate(-15deg);
    }
    100% {
        transform: translateX(-50%) rotate(15deg);
    }
}

/* Your Shoe Image */
.shoe-image {
    width: 350px;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(5px 10px 20px rgba(0,0,0,0.4));
    transition: filter 0.3s ease;
}

.shoe-image:hover {
    filter: drop-shadow(8px 15px 30px rgba(0,0,0,0.5));
}

/* Ground Shadow */
.ground-shadow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: shadowMove 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes shadowMove {
    0% {
        transform: translateX(calc(-50% + 60px)) scaleX(0.6) scaleY(0.8);
        opacity: 0.3;
    }
    25% {
        transform: translateX(-50%) scaleX(1) scaleY(1);
        opacity: 0.5;
    }
    50% {
        transform: translateX(calc(-50% - 60px)) scaleX(0.6) scaleY(0.8);
        opacity: 0.3;
    }
    75% {
        transform: translateX(-50%) scaleX(1) scaleY(1);
        opacity: 0.5;
    }
    100% {
        transform: translateX(calc(-50% + 60px)) scaleX(0.6) scaleY(0.8);
        opacity: 0.3;
    }
}

/* ===== RESPONSIVE STYLES ===== */

@media (max-width: 1024px) {
    .hero-image-container {
        width: 380px;
        height: 480px;
    }
    
    .shoe-image {
        width: 300px;
    }
    
    .ground-shadow {
        width: 160px;
    }
}

@media (max-width: 768px) {
    .hero-image-container {
        width: 300px;
        height: 400px;
    }
    
    .shoe-image {
        width: 240px;
    }
    
    /* .rope {
        height: 60px;
    } */
    
    .pendulum {
        top: 70px;
    }
    
    .ground-shadow {
        width: 140px;
        height: 25px;
        bottom: 10px;
    }
}

@media (max-width: 480px) {
    .hero-image-container {
        width: 250px;
        height: 350px;
    }
    
    .shoe-image {
        width: 200px;
    }
    
    /* .rope {
        height: 50px;
    } */
    
    .pendulum {
        top: 60px;
    }
    
    .ground-shadow {
        width: 120px;
        height: 20px;
    }
    
    .hook-nail {
        width: 15px;
        height: 15px;
    }
}

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 40px;
            animation: slideInLeft 1s ease-out 0.8s both;
        }

        .stat {
            text-align: center;
        }

        .stat h3 {
            font-size: 36px;
            color: var(--primary);
            font-weight: 700;
        }

        .stat p {
            font-size: 14px;
            color: #666;
        }

        /* Marquee */
        .marquee-section {
            background: var(--dark);
            padding: 20px 0;
            overflow: hidden;
        }

        .marquee {
            display: flex;
            animation: marquee 20s linear infinite;
        }

        .marquee-content {
            display: flex;
            gap: 50px;
            padding: 0 25px;
        }

        .marquee-content span {
            color: white;
            font-size: 18px;
            font-weight: 600;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .marquee-content span i {
            color: var(--primary);
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* About Section */
        .about {
            padding: 100px 5%;
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header span {
            display: inline-block;
            background: rgba(231, 76, 60, 0.1);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .section-header h2 {
            font-size: 48px;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .section-header p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 80px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-image {
            flex: 1;
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 5px solid var(--primary);
            border-radius: 20px;
            z-index: -1;
        }

        .experience-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 150px;
            height: 150px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
            animation: pulse2 2s infinite;
        }

        @keyframes pulse2 {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .experience-badge h3 {
            font-size: 40px;
            font-weight: 700;
        }

        .experience-badge p {
            font-size: 12px;
            text-align: center;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 36px;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .about-text p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .owner-info {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
            padding: 20px;
            background: var(--light);
            border-radius: 15px;
        }

        .owner-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--gradient);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            color: white;
        }

        .owner-details h4 {
            font-size: 20px;
            color: var(--dark);
        }

        .owner-details p {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 0;
        }

        /* Products Section */
        .products {
            padding: 100px 5%;
            background: linear-gradient(135deg, #f5f7fa 0%, #e8ecef 100%);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }

        .product-image {
            height: 250px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 80px;
            position: relative;
            overflow: hidden;
        }

        .product-card:nth-child(2) .product-image {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .product-card:nth-child(3) .product-image {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .product-card:nth-child(4) .product-image {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        .product-card:nth-child(5) .product-image {
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }

        .product-card:nth-child(6) .product-image {
            background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
        }

        /* .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            opacity: 0;
            transition: opacity 0.3s;
        } */

        .product-card:hover  {
            opacity: 1;
        }

        /* .product-overlay a {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--dark);
            transition: all 0.3s;
            transform: translateY(20px);
        } */

        .product-card:hover  {
            transform: translateY(0);
        }

        /* .product-overlay a:hover {
            background: var(--primary);
            color: white;
        } */

        .product-info {
            padding: 25px;
        }

        .product-category {
            color: var(--primary);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .product-info h3 {
            font-size: 22px;
            color: var(--dark);
            margin: 10px 0;
        }

        .product-info p {
            color: #666;
            font-size: 14px;
        }

        .product-tag {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--primary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

       /* ===== BRANDS SECTION STYLES ===== */

.brands {
    padding: 100px 5%;
    background: white;
}

.brands-container {
    max-width: 1200px;
    margin: 0 auto;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.brand-card {
    background: var(--light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: left 0.4s;
    z-index: 0;
}

.brand-card:hover::before {
    left: 0;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.3);
}

/* Brand Logo Container */
.brand-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    transition: all 0.4s;
    overflow: hidden;
}

.brand-card:hover .brand-logo {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Brand Logo Image */
.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s;
    filter: grayscale(0%);
}

.brand-card:hover .brand-logo img {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.1);
}

/* Text-based logos for brands without image */
.text-logo {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s;
}

.brand-card:hover .text-logo {
    color: var(--primary);
}

/* Individual brand text logo styles */
.annie-logo .text-logo {
    font-family: 'Georgia', serif;
    font-size: 18px;
    font-style: italic;
    color: #e91e63;
}

.silverrose-logo .text-logo {
    font-family: 'Times New Roman', serif;
    font-size: 12px;
    color: #9c27b0;
    letter-spacing: 2px;
}

.magnolia-logo .text-logo {
    font-family: 'Brush Script MT', cursive;
    font-size: 20px;
    color: #ff5722;
    text-transform: capitalize;
}

.elegance-logo .text-logo {
    font-family: 'Palatino', serif;
    font-size: 14px;
    color: #795548;
    letter-spacing: 3px;
    font-weight: 400;
}

.sequence-logo .text-logo {
    font-family: 'Arial Black', sans-serif;
    font-size: 13px;
    color: #2196f3;
    letter-spacing: 1px;
}

/* Brand Card Text */
.brand-card h4 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: color 0.4s;
}

.brand-card p {
    color: #666;
    font-size: 14px;
    position: relative;
    z-index: 1;
    transition: color 0.4s;
}

/* Hover text color change */
.brand-card:hover h4,
.brand-card:hover p {
    color: white;
}

/* ===== RESPONSIVE STYLES ===== */

@media (max-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .brand-logo {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 768px) {
    .brands {
        padding: 80px 5%;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .brand-card {
        padding: 30px 20px;
    }
    
    .brand-logo {
        width: 80px;
        height: 80px;
        padding: 12px;
    }
    
    .brand-card h4 {
        font-size: 16px;
    }
    
    .brand-card p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .brand-card {
        padding: 25px 15px;
    }
    
    .brand-logo {
        width: 70px;
        height: 70px;
        padding: 10px;
    }
    
    .text-logo {
        font-size: 11px !important;
    }
    
    .brand-card h4 {
        font-size: 14px;
    }
    
    .brand-card p {
        font-size: 11px;
    }
}

        /* Features Section */
        .features {
            padding: 100px 5%;
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .features::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: rgba(231, 76, 60, 0.1);
            border-radius: 50%;
        }

        .features .section-header span {
            background: rgba(231, 76, 60, 0.2);
        }

        .features .section-header h2 {
            color: white;
        }

        .features .section-header p {
            color: rgba(255, 255, 255, 0.7);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            text-align: center;
            padding: 40px 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            transition: all 0.4s;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-10px);
            border-color: var(--primary);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 20px;
            font-size: 30px;
            color: white;
            transition: transform 0.4s;
        }

        .feature-card:hover .feature-icon {
            transform: rotateY(180deg);
        }

        .feature-card h4 {
            color: white;
            font-size: 20px;
            margin-bottom: 10px;
        }

        .feature-card p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        /* Gallery Section */
        .gallery {
            padding: 100px 5%;
            background: white;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            height: 250px;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
        }

        .gallery-item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2;
            height: 520px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay h4 {
            color: white;
            font-size: 24px;
            transform: translateY(20px);
            transition: transform 0.3s;
        }

        .gallery-item:hover .gallery-overlay h4 {
            transform: translateY(0);
        }

        .gallery-overlay p {
            color: rgba(255, 255, 255, 0.7);
            transform: translateY(20px);
            transition: transform 0.3s 0.1s;
        }

        .gallery-item:hover .gallery-overlay p {
            transform: translateY(0);
        }

        /* Testimonials Section */
        .testimonials {
            padding: 100px 5%;
            background: linear-gradient(135deg, #f5f7fa 0%, #e8ecef 100%);
        }

        .testimonials-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .testimonial-slider {
            position: relative;
            overflow: hidden;
        }

        .testimonial-slide {
            display: none;
            animation: fadeIn 0.5s;
        }

        .testimonial-slide.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .testimonial-content {
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            text-align: center;
            position: relative;
        }

        .quote-icon {
            font-size: 60px;
            color: rgba(231, 76, 60, 0.2);
            position: absolute;
            top: 20px;
            left: 40px;
        }

        .testimonial-content p {
            font-size: 20px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .author-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--gradient);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            color: white;
        }

        .author-info h4 {
            font-size: 20px;
            color: var(--dark);
        }

        .author-info p {
            font-size: 14px;
            color: var(--primary);
            margin-bottom: 0;
            font-style: normal;
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        /* Contact Section */
        .contact {
            padding: 100px 5%;
            background: white;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info {
            padding: 40px;
            background: var(--dark);
            border-radius: 20px;
            color: white;
        }

        .contact-info h3 {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .contact-info > p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .info-text h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .info-text p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 40px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 18px;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .contact-form {
            padding: 40px;
            background: var(--light);
            border-radius: 20px;
        }

        .contact-form h3 {
            font-size: 32px;
            color: var(--dark);
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            color: var(--dark);
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 16px;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
        }

        /* Map Section */
        .map-section {
            height: 400px;
            position: relative;
        }

        .map-section iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .map-overlay {
            position: absolute;
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            max-width: 350px;
        }

        .map-overlay h4 {
            font-size: 24px;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .map-overlay p {
            color: #666;
            line-height: 1.8;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 80px 5% 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-brand .logo {
            margin-bottom: 20px;
        }

        .footer-brand .logo-text h1 {
            color: white;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-section h4 {
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
        }

        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-section ul li a:hover {
            color: var(--primary);
            padding-left: 10px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 50px;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: var(--primary);
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
            box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 30px;
            z-index: 999;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
            animation: pulse3 2s infinite;
        }

        @keyframes pulse3 {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .hero-text h1 {
                font-size: 42px;
            }

            .hero-image-container {
                width: 350px;
                height: 350px;
            }

            .brands-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: white;
                padding: 80px 40px;
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
                transition: right 0.3s;
            }

            nav.active {
                right: 0;
            }

            nav ul {
                flex-direction: column;
                gap: 20px;
            }

            .hero-content {
                flex-direction: column;
                text-align: center;
                padding-top: 120px;
            }

            .hero-text h1 {
                font-size: 36px;
            }

            .hero-buttons {
                justify-content: center;
                flex-wrap: wrap;
            }

            .hero-image-container {
                width: 280px;
                height: 280px;
            }

            .hero-stats {
                justify-content: center;
            }

            .about-content {
                flex-direction: column;
            }

            .about-image::before {
                display: none;
            }

            .experience-badge {
                right: 20px;
                bottom: 20px;
                width: 100px;
                height: 100px;
            }

            .experience-badge h3 {
                font-size: 28px;
            }

            .section-header h2 {
                font-size: 32px;
            }

            .brands-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .gallery-item:nth-child(1) {
                grid-column: span 1;
                grid-row: span 1;
                height: 250px;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .map-overlay {
                position: relative;
                top: auto;
                left: auto;
                transform: none;
                margin: 20px;
                max-width: 100%;
            }

            .cursor,
            .cursor-follower {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 28px;
            }

            .btn {
                padding: 12px 25px;
                font-size: 14px;
            }

            .stat h3 {
                font-size: 24px;
            }

            .brands-grid {
                grid-template-columns: 1fr 1fr;
            }

            .brand-card {
                padding: 25px 15px;
            }

            .brand-icon {
                font-size: 35px;
            }

            .brand-card h4 {
                font-size: 16px;
            }

            .contact-info,
            .contact-form {
                padding: 25px;
            }
        }