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


        :root {
            --primary: #8B4513;
            --secondary: #DAA520;
            --accent: #C41E3A;
            --dark: #2C1810;
            --light: #FFF8F0;
            --cream: #F5E6D3;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            background: var(--light);
            line-height: 1.6;
        }

        /* Top Bar */
        .top-bar {
            background: var(--dark);
            color: var(--light);
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }

        .top-bar-content {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar-left {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .top-bar-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .top-bar-icon {
            color: var(--secondary);
            font-size: 1.1rem;
        }

        .top-bar-right {
            display: flex;
            gap: 1.5rem;
        }

        .social-link {
            color: var(--light);
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .social-link:hover {
            color: var(--secondary);
            transform: scale(1.1);
            background: rgba(218, 165, 32, 0.2);
        }

        /* Main Header */
        header {
            background: linear-gradient(135deg, var(--light) 0%, var(--cream) 100%);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 999;
        }

        .header-content {
            max-width: 1600px;
            margin: 0 auto;
            padding: 1.5rem 3rem;
            display: grid;
            grid-template-columns: 200px 1fr auto;
            gap: 3rem;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 4px solid var(--secondary);
            object-fit: cover;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .logo-image:hover {
            transform: rotate(5deg) scale(1.05);
        }

        .brand-section {
            text-align: center;
        }

        .brand-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
            letter-spacing: 3px;
            margin-bottom: 0.3rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .brand-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--accent);
            letter-spacing: 4px;
            font-weight: 600;
        }

        .brand-tagline {
            font-size: 0.95rem;
            color: var(--dark);
            margin-top: 0.5rem;
            font-weight: 500;
            letter-spacing: 1px;
        }

        .header-contact {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            text-align: right;
        }

        .contact-button {
            background: linear-gradient(135deg, var(--accent), #A01020);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            letter-spacing: 1px;
            font-size: 0.95rem;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
        }

        .contact-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
        }

        .header-info {
            font-size: 0.9rem;
            color: var(--dark);
        }

        .header-info strong {
            color: var(--primary);
        }

        .decorative-line {
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
        }

        /* Mobile Navigation */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger span {
            width: 30px;
            height: 3px;
            background: var(--primary);
            transition: all 0.3s ease;
            border-radius: 3px;
        }

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

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: right 0.4s ease;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
}

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

body.menu-open {
    overflow: hidden;
}

.mobile-menu-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.mobile-menu-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: menuGlow 4s ease-in-out infinite;
}

@keyframes menuGlow {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.5;
    }
    50% {
        transform: translate(20px, 20px);
        opacity: 0.8;
    }
}

/* Add close button */
.menu-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.menu-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.menu-close-btn::before,
.menu-close-btn::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
}

.menu-close-btn::before {
    transform: rotate(45deg);
}

.menu-close-btn::after {
    transform: rotate(-45deg);
}

.mobile-menu-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    animation: logoFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.mobile-menu-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.brand-line {
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    margin: 15px auto;
    animation: lineExpand 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes lineExpand {
    0%, 100% {
        width: 60px;
        opacity: 0.6;
    }
    50% {
        width: 100px;
        opacity: 1;
    }
}

/* Fix scrolling container */
.mobile-menu-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-links {
    padding: 2rem;
}

.mobile-menu-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--cream);
    transition: all 0.3s ease;
}

.mobile-menu-links a:hover {
    background: var(--cream);
    padding-left: 1.5rem;
    color: var(--accent);
}

.mobile-menu-links i {
    font-size: 1.2rem;
    color: var(--primary);
    width: 25px;
}

.mobile-social {
    padding: 1.5rem 2rem 2rem 2rem;
    border-top: 2px solid var(--cream);
    flex-shrink: 0;
}

.mobile-social h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary);
    margin-bottom: 1rem;
}

.mobile-social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.mobile-social-links a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-links a:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}







        /* Hero Section with Slider */
        .hero {
            position: relative;
            height: 700px;
            overflow: hidden;
            background: #2C1810;
            /* DARK BASE – prevents white flash */
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            z-index: 0;
            transition: opacity 0.8s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .hero-slide.active {
            opacity: 1;
            z-index: 1;
        }


        .hero-slider {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }


        .hero-slide::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(139, 69, 19, 0.85) 0%, rgba(196, 30, 58, 0.85) 100%);
        }

        .hero-slide-1 {
            background-image: url('bridal.jpeg');
        }

        .hero-slide-2 {
            background-image: url('readymade.jpeg');
        }

        .hero-slide-3 {
            background-image: url('party.jpeg');
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 3rem;
            text-align: center;
            color: white;
        }

        .hero h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
            animation: slideUp 1s ease-out;
        }

        .hero p {
            font-size: 1.5rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            opacity: 0.95;
            animation: slideUp 1s ease-out 0.3s both;
        }

        .hero-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: slideUp 1s ease-out 0.6s both;
        }

        .hero-btn {
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            letter-spacing: 1px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .hero-btn-primary {
            background: var(--secondary);
            color: var(--dark);
        }

        .hero-btn-secondary {
            background: white;
            color: var(--primary);
        }

        .hero-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

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

        .hero-indicator {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid white;
        }

        .hero-indicator.active {
            background: white;
            transform: scale(1.2);
        }

        .hero-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 20;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .hero-nav:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: translateY(-50%) scale(1.1);
        }

        .hero-nav-prev {
            left: 30px;
        }

        .hero-nav-next {
            right: 30px;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

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

        /* About Section */
        .about {
            padding: 6rem 3rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-content {
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInLeft 1s ease-out forwards;
        }

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

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

        .about-content h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 2rem;
        }

        .about-content p {
            font-size: 1.15rem;
            line-height: 1.9;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .about-feature {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            border-left: 4px solid var(--secondary);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transform: translateY(20px);
            opacity: 0;
            animation: featureSlideUp 0.6s ease-out forwards;
        }

        .about-feature:nth-child(1) {
            animation-delay: 0.2s;
        }

        .about-feature:nth-child(2) {
            animation-delay: 0.4s;
        }

        .about-feature:nth-child(3) {
            animation-delay: 0.6s;
        }

        .about-feature:nth-child(4) {
            animation-delay: 0.8s;
        }

        @keyframes featureSlideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

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

        .about-feature strong {
            color: var(--primary);
            font-size: 1.1rem;
            display: block;
            margin-bottom: 0.5rem;
        }

        .about-image {
            height: 500px;
            border-radius: 30px;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            opacity: 0;
            transform: translateX(50px);
            animation: slideInRight 1s ease-out forwards;
        }

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

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

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-image::before {
            content: '';
            position: absolute;
            inset: 20px;
            border: 3px solid rgba(255, 255, 255, 0.5);
            border-radius: 25px;
            z-index: 1;
            animation: borderPulse 3s ease-in-out infinite;
        }

        @keyframes borderPulse {

            0%,
            100% {
                inset: 20px;
                opacity: 0.5;
            }

            50% {
                inset: 30px;
                opacity: 0.8;
            }
        }

        /* Collections Section */
        .collections {
            padding: 6rem 3rem;
            background: white;
        }

        .collections h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeInDown 1s ease-out forwards;
        }

        .collections-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--accent);
            margin-bottom: 4rem;
            font-style: italic;
            opacity: 0;
            animation: fadeInDown 1s ease-out 0.3s forwards;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

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

        .collections-grid {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }

        .collection-card {
            background: linear-gradient(135deg, var(--light), white);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            border: 2px solid transparent;
            opacity: 0;
            transform: translateY(50px) scale(0.9);
            animation: cardPopUp 0.6s ease-out forwards;
        }

        .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;
        }

        @keyframes cardPopUp {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }

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

        .collection-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            border-color: var(--secondary);
        }

        .collection-image {
            height: 280px;
            position: relative;
            overflow: hidden;
        }

        .collection-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .collection-card:hover .collection-image img {
            transform: scale(1.1);
        }

        .collection-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 1px;
            z-index: 10;
        }

        .collection-info {
            padding: 2.5rem;
        }

        .collection-info h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .collection-desc {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1.5rem;
        }

        .collection-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }

        .highlight-tag {
            background: var(--cream);
            color: var(--primary);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .collection-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent);
            margin-top: 1rem;
        }

        /* Services Section */
        .services {
            padding: 6rem 3rem;
            background: var(--cream);
        }

        .services h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 4rem;
        }

        .services-grid {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.5rem;
        }

        .service-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-top: 5px solid var(--secondary);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
        }

        .service-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .service-desc {
            font-size: 1rem;
            line-height: 1.7;
            color: #666;
        }

        /* Why Choose Us */
        .why-choose {
            padding: 6rem 3rem;
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: white;
        }

        .why-choose h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .why-choose-subtitle {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 4rem;
            opacity: 0.9;
        }

        .why-choose-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .why-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 20px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .why-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-10px);
        }

        .why-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
        }

        .why-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .why-desc {
            font-size: 1.05rem;
            line-height: 1.8;
            opacity: 0.9;
        }

        /* Testimonials */
        .testimonials {
            padding: 6rem 3rem;
            background: white;
        }

        .testimonials h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 1rem;
        }

        .testimonials-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--accent);
            margin-bottom: 4rem;
            font-style: italic;
        }

        .testimonials-grid {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }

        .testimonial-card {
            background: var(--light);
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            border-left: 5px solid var(--secondary);
        }

        .quote-icon {
            font-size: 5rem;
            color: var(--secondary);
            opacity: 0.3;
            line-height: 0.5;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--dark);
            margin-bottom: 2rem;
            font-style: italic;
        }

        .customer-info {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .customer-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            font-weight: 700;
            border: 3px solid var(--secondary);
        }

        .customer-details h4 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 0.3rem;
        }

        .customer-location {
            font-size: 0.95rem;
            color: #666;
        }

        .rating {
            color: var(--secondary);
            font-size: 1.5rem;
            margin-top: 1rem;
            letter-spacing: 3px;
        }

        /* Offers Banner */
        .offers-banner {
            background: linear-gradient(135deg, var(--accent), #8B1020);
            color: white;
            padding: 4rem 3rem;
            text-align: center;
        }

        .offers-banner h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .offers-banner p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
        }

        .offers-grid {
            max-width: 1400px;
            margin: 2rem auto 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .offer-card {
            background: white;
            color: var(--dark);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .offer-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .offer-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 0.8rem;
            font-weight: 700;
        }

        .offer-desc {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #555;
        }

        /* Location Section */
        .location {
            padding: 6rem 3rem;
            background: var(--cream);
        }

        .location h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 1rem;
        }

        .location-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--accent);
            margin-bottom: 4rem;
            font-style: italic;
        }

        .location-grid {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
        }

        .address-card {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: white;
            padding: 3.5rem;
            border-radius: 30px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
        }

        .address-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 2.5rem;
        }

        .address-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .address-item:last-child {
            border-bottom: none;
        }

        .address-icon {
            font-size: 2rem;
            color: var(--secondary);
            min-width: 40px;
        }

        .address-text {
            font-size: 1.15rem;
            line-height: 1.8;
        }

        .address-text strong {
            display: block;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--secondary);
        }

        .map-container {
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
            height: 600px;
        }

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

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 4rem 3rem 2rem;
        }

        .footer-content {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-about img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 4px solid var(--secondary);
            margin-bottom: 1.5rem;
            object-fit: cover;
        }

        .footer-about h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .footer-about p {
            font-size: 1rem;
            line-height: 1.8;
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social a {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
            color: white;
        }

        .footer-social a:hover {
            background: var(--secondary);
            transform: scale(1.1);
        }

        .footer-section h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.9;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .footer-contact p {
            margin-bottom: 1rem;
            opacity: 0.9;
            line-height: 1.8;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 2rem;
            text-align: center;
        }

        .footer-bottom p {
            opacity: 0.8;
        }

        /* Scroll to Top */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }

        /* Disable scroll-top when mobile menu is open */
        body.menu-open .scroll-top {
            display: none !important;
        }


        /* Responsive Design */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-choose-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 968px) {
            .hamburger {
                display: flex;
            }

            .top-bar {
                display: none;
            }

            .header-content {
                grid-template-columns: auto 1fr auto;
                padding: 1rem 1.5rem;
                gap: 1rem;
            }

            .logo-image {
                width: 60px;
                height: 60px;
            }

            .brand-section {
                text-align: left;
            }

            .brand-name {
                font-size: 2rem;
            }

            .brand-subtitle {
                font-size: 1rem;
                letter-spacing: 2px;
            }

            .brand-tagline {
                font-size: 0.75rem;
            }

            .header-contact {
                display: none;
            }

            .hero {
                height: 500px;
            }

            .hero h2 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .hero-nav {
                width: 40px;
                height: 40px;
            }

            .hero-nav-prev {
                left: 15px;
            }

            .hero-nav-next {
                right: 15px;
            }

            .about {
                padding: 4rem 1.5rem;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .about-image {
                height: 300px;
            }

            .collections {
                padding: 4rem 1.5rem;
            }

            .collections h2 {
                font-size: 2.5rem;
            }

            .collections-grid {
                grid-template-columns: 1fr;
            }

            .services {
                padding: 4rem 1.5rem;
            }

            .services h2 {
                font-size: 2.5rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .why-choose {
                padding: 4rem 1.5rem;
            }

            .why-choose h2 {
                font-size: 2.5rem;
            }

            .why-choose-grid {
                grid-template-columns: 1fr;
            }

            .testimonials {
                padding: 4rem 1.5rem;
            }

            .testimonials h2 {
                font-size: 2.5rem;
            }

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

            .offers-banner {
                padding: 3rem 1.5rem;
            }

            .offers-banner h2 {
                font-size: 2.5rem;
            }

            .offers-grid {
                grid-template-columns: 1fr;
            }

            .location {
                padding: 4rem 1.5rem;
            }

            .location h2 {
                font-size: 2.5rem;
            }

            .location-grid {
                grid-template-columns: 1fr;
            }

            .map-container {
                height: 400px;
            }

            footer {
                padding: 3rem 1.5rem 2rem;
            }

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