 * { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --maroon: #6B1A2A;
            --maroon-dark: #4A0F1C;
            --maroon-light: #8B2A3E;
            --gold: #C8972A;
            --gold-light: #E8B84B;
            --cream: #FDF6EC;
            --cream-dark: #F5E8D0;
            --white: #FFFFFF;
            --text-dark: #2A0A12;
            --text-mid: #5A3040;
            --text-light: #8A6070;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background: var(--white);
        }

        /* ===================== TOPBAR ===================== */
        .topbar-one {
            background: var(--maroon-dark);
            padding: 9px 0;
            border-bottom: 1px solid rgba(200,151,42,0.3);
        }

        .topbar-inner {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .topbar-info {
            display: flex;
            align-items: center;
            gap: 6px;
            color: rgba(255,255,255,0.8);
            font-size: 0.82rem;
        }

        .topbar-info i { color: var(--gold-light); }

        .topbar-right {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .topbar-email-btn {
            background: var(--gold);
            color: var(--maroon-dark);
            padding: 5px 16px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.3s;
        }

        .topbar-email-btn:hover { background: var(--gold-light); }

        .topbar-socials a {
            color: rgba(255,255,255,0.65);
            font-size: 13px;
            margin-left: 10px;
            transition: color 0.3s;
            text-decoration: none;
        }

        .topbar-socials a:hover { color: var(--gold-light); }

        /* ===================== HEADER ===================== */
        .main-header {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(107,26,42,0.12);
            position: sticky;
            top: 0;
            z-index: 998;
        }

        .header-inner {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon-box {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            box-shadow: 0 4px 14px rgba(107,26,42,0.35);
        }

        .logo-text-wrap .logo-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--maroon-dark);
            line-height: 1;
        }

        .logo-text-wrap .logo-name span { color: var(--gold); }

        .logo-text-wrap .logo-tagline {
            font-size: 0.7rem;
            color: var(--text-light);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-top: 2px;
        }

        .main-nav ul {
            list-style: none;
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .main-nav ul a {
            text-decoration: none;
            color: var(--text-mid);
            font-weight: 500;
            font-size: 0.9rem;
            padding: 8px 14px;
            border-radius: 6px;
            transition: all 0.3s;
        }

        .main-nav ul a:hover {
            background: var(--cream);
            color: var(--maroon);
        }

        .nav-cta {
            background: linear-gradient(135deg, var(--maroon), var(--maroon-light)) !important;
            color: var(--white) !important;
            padding: 9px 22px !important;
            border-radius: 25px !important;
        }

        .nav-cta:hover {
            background: linear-gradient(135deg, var(--maroon-dark), var(--maroon)) !important;
            transform: translateY(-1px);
        }

        .header-call {
            display: flex;
            align-items: center;
            gap: 10px;
            border-left: 1px solid #eee;
            padding-left: 20px;
            margin-left: 10px;
        }

        .header-call-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--maroon-dark);
            font-size: 14px;
        }

        .header-call-text { line-height: 1.2; }
        .header-call-text small { font-size: 0.72rem; color: var(--text-light); display: block; }
        .header-call-text a {
            font-weight: 700;
            font-size: 0.88rem;
            color: var(--maroon);
            text-decoration: none;
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
        }

        .mobile-menu-btn span {
            width: 26px;
            height: 2px;
            background: var(--maroon);
            border-radius: 2px;
            transition: all 0.3s;
        }

        /* ===================== HERO SLIDER ===================== */
        .hero-slider {
            position: relative;
            overflow: hidden;
            height: 92vh;
            min-height: 560px;
        }

        .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1s ease;
        }

        .slide.active { opacity: 1; }

        .slide-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transform: scale(1.05);
            transition: transform 8s ease;
        }

        .slide.active .slide-bg { transform: scale(1); }

        .slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(74,15,28,0.82) 0%, rgba(107,26,42,0.55) 50%, rgba(0,0,0,0.2) 100%);
        }

        .slide-content {
            position: relative;
            z-index: 2;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .slide-text { max-width: 600px; }

        .slide-subtitle {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(200,151,42,0.2);
            border: 1px solid rgba(200,151,42,0.5);
            color: var(--gold-light);
            padding: 6px 18px;
            border-radius: 25px;
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 22px;
        }

        .slide-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.8rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1.18;
            margin-bottom: 18px;
        }

        .slide-title em {
            font-style: italic;
            color: var(--gold-light);
        }

        .slide-desc {
            color: rgba(255,255,255,0.78);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 34px;
        }

        .slide-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--maroon-dark);
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 6px 25px rgba(200,151,42,0.45);
        }

        .slide-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 35px rgba(200,151,42,0.55);
        }

        .slide-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 5;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: var(--gold-light);
            transform: scale(1.3);
        }

        /* ===================== ABOUT ===================== */
        .about-section {
            padding: 100px 0;
            background: var(--cream);
            overflow: hidden;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }

        .about-img-wrap {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(107,26,42,0.2);
        }

        .about-img-wrap img {
            width: 100%;
            height: 540px;
            object-fit: cover;
            display: block;
        }

        .about-img-badge {
            position: absolute;
            bottom: 30px;
            right: -20px;
            background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
            color: var(--white);
            padding: 20px 26px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(107,26,42,0.4);
        }

        .about-img-badge .badge-num {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--gold-light);
            display: block;
        }

        .about-img-badge small { font-size: 0.78rem; opacity: 0.85; }

        .section-tag {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gold);
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-tag::before, .section-tag::after {
            content: '';
            width: 30px;
            height: 1px;
            background: var(--gold);
            display: inline-block;
        }

        .about-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--maroon-dark);
            line-height: 1.3;
            margin-bottom: 18px;
        }

        .about-content p {
            color: var(--text-mid);
            line-height: 1.85;
            margin-bottom: 14px;
            font-size: 0.95rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin: 26px 0 32px;
        }

        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.88rem;
            color: var(--text-mid);
            font-weight: 500;
        }

        .about-feature-item i { color: var(--gold); font-size: 16px; }

        .btn-primary-maroon {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
            color: var(--white);
            padding: 13px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.92rem;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(107,26,42,0.3);
        }

        .btn-primary-maroon:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(107,26,42,0.45);
        }

        /* ===================== PRODUCTS SECTION ===================== */
        .products-section {
            padding: 100px 0;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--maroon-dark);
            margin: 10px 0 14px;
        }

        .section-header p {
            color: var(--text-light);
            font-size: 0.95rem;
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .product-card {
            background: var(--white);
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid #f0e8e0;
            box-shadow: 0 4px 20px rgba(107,26,42,0.07);
            transition: all 0.35s ease;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 50px rgba(107,26,42,0.16);
            border-color: var(--gold);
        }

        .product-img-wrap {
            position: relative;
            overflow: hidden;
            height: 240px;
            background: var(--cream);
        }

        .product-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .product-card:hover .product-img-wrap img { transform: scale(1.06); }

        .product-tag {
            position: absolute;
            top: 14px;
            left: 14px;
            background: var(--maroon);
            color: var(--white);
            font-size: 0.72rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.5px;
        }

        .product-info {
            padding: 20px;
        }

        .product-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--maroon-dark);
            margin-bottom: 8px;
        }

        .product-info p {
            font-size: 0.84rem;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 14px;
        }

        .product-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--gold);
            text-decoration: none;
            transition: gap 0.3s;
        }

        .product-link:hover { gap: 10px; }

        /* ===================== FEATURED PRODUCTS ===================== */
        .featured-section {
            padding: 100px 0;
            background: var(--cream);
        }

        .featured-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
        }

        .featured-card {
            background: var(--white);
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid #ede0d0;
            text-align: center;
            transition: all 0.3s;
            text-decoration: none;
            display: block;
        }

        .featured-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(107,26,42,0.14);
            border-color: var(--gold);
        }

        .featured-img {
            height: 200px;
            overflow: hidden;
        }

        .featured-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .featured-card:hover .featured-img img { transform: scale(1.08); }

        .featured-title {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--maroon-dark);
            padding: 16px 14px 18px;
        }

        /* ===================== CTA BANNER ===================== */
        .cta-banner {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 50%, #9B3050 100%);
        }

        .cta-pattern {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 20% 50%, rgba(200,151,42,0.12) 0%, transparent 50%),
                              radial-gradient(circle at 80% 30%, rgba(200,151,42,0.1) 0%, transparent 40%);
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 680px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.6rem;
            color: var(--white);
            font-weight: 700;
            line-height: 1.35;
            margin-bottom: 18px;
        }

        .cta-content h2 em { color: var(--gold-light); font-style: italic; }

        .cta-content p {
            color: rgba(255,255,255,0.78);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 36px;
        }

        .btn-gold {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--maroon-dark);
            padding: 15px 38px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 6px 25px rgba(200,151,42,0.4);
        }

        .btn-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 35px rgba(200,151,42,0.55);
        }

        /* ===================== TESTIMONIALS ===================== */
        .testimonials-section {
            padding: 100px 0;
            background: var(--white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .testimonial-card {
            background: var(--cream);
            border: 1px solid #ede0d0;
            border-radius: 18px;
            padding: 34px;
            position: relative;
            transition: all 0.3s;
        }

        .testimonial-card:hover {
            box-shadow: 0 12px 40px rgba(107,26,42,0.1);
            border-color: var(--gold);
        }

        .quote-icon {
            font-size: 3rem;
            color: var(--gold-light);
            line-height: 1;
            font-family: 'Playfair Display', serif;
            opacity: 0.5;
            margin-bottom: 10px;
        }

        .stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }

        .testimonial-card p {
            color: var(--text-mid);
            font-size: 0.9rem;
            line-height: 1.82;
            margin-bottom: 22px;
            font-style: italic;
        }

        .client-row {
            display: flex;
            align-items: center;
            gap: 12px;
            border-top: 1px solid #e8d8c8;
            padding-top: 18px;
        }

        .client-avatar {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--gold-light);
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .client-name {
            font-weight: 700;
            font-size: 0.88rem;
            color: var(--maroon-dark);
        }

        .client-loc {
            font-size: 0.76rem;
            color: var(--text-light);
        }

        /* ===================== WHY CHOOSE US ===================== */
        .why-section {
            padding: 100px 0;
            background: var(--cream);
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }

        .why-image-box {
            background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
            border-radius: 24px;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .why-image-box::before {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(200,151,42,0.12);
        }

        .why-emoji { font-size: 90px; display: block; margin-bottom: 20px; }

        .why-image-box h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--gold-light);
            font-weight: 700;
        }

        .why-image-box p {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
            margin-top: 10px;
        }

        .why-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 28px;
        }

        .why-stat {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(200,151,42,0.3);
            border-radius: 12px;
            padding: 16px;
            text-align: center;
        }

        .why-stat .num {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--gold-light);
            font-weight: 700;
            display: block;
        }

        .why-stat small {
            color: rgba(255,255,255,0.65);
            font-size: 0.76rem;
        }

        .why-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.4rem;
            color: var(--maroon-dark);
            font-weight: 700;
            margin: 10px 0 16px;
            line-height: 1.3;
        }

        .why-content > p {
            color: var(--text-mid);
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .feature-list { list-style: none; }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 18px 0;
            border-bottom: 1px solid #ede0d0;
        }

        .feature-list li:last-child { border-bottom: none; }

        .feature-icon-box {
            width: 46px;
            height: 46px;
            flex-shrink: 0;
            background: linear-gradient(135deg, rgba(107,26,42,0.1), rgba(107,26,42,0.06));
            border: 1px solid rgba(200,151,42,0.3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 17px;
        }

        .feature-list h4 {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--maroon-dark);
            margin-bottom: 5px;
        }

        .feature-list p {
            font-size: 0.84rem;
            color: var(--text-light);
            line-height: 1.65;
        }

        /* ===================== BLOG ===================== */
        .blog-section {
            padding: 100px 0;
            background: var(--white);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .blog-card {
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid #f0e8e0;
            background: var(--white);
            transition: all 0.35s;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .blog-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 45px rgba(107,26,42,0.12);
            border-color: var(--gold);
        }

        .blog-img {
            height: 220px;
            overflow: hidden;
        }

        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .blog-card:hover .blog-img img { transform: scale(1.06); }

        .blog-info { padding: 22px; }

        .blog-cat {
            font-size: 0.74rem;
            font-weight: 600;
            color: var(--gold);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .blog-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--maroon-dark);
            line-height: 1.55;
        }

        /* ===================== FOOTER ===================== */
        .main-footer {
            background: var(--maroon-dark);
            color: rgba(255,255,255,0.7);
        }

        .footer-top {
            padding: 70px 0 50px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 50px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            margin-bottom: 18px;
        }

        .footer-logo-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .footer-logo-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            color: var(--white);
            font-weight: 700;
        }

        .footer-logo-name span { color: var(--gold-light); }

        .footer-desc {
            font-size: 0.88rem;
            line-height: 1.8;
            color: rgba(255,255,255,0.6);
            margin-bottom: 22px;
        }

        .footer-info-list { list-style: none; }

        .footer-info-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 14px;
            font-size: 0.86rem;
            color: rgba(255,255,255,0.65);
        }

        .footer-info-list i {
            color: var(--gold-light);
            margin-top: 2px;
            flex-shrink: 0;
        }

        .footer-info-list a {
            color: rgba(255,255,255,0.65);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-info-list a:hover { color: var(--gold-light); }

        .footer-socials {
            display: flex;
            gap: 10px;
            margin-top: 6px;
        }

        .footer-socials a {
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(200,151,42,0.25);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.6);
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-socials a:hover {
            background: var(--gold);
            color: var(--maroon-dark);
            border-color: var(--gold);
        }

        .footer-widget-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            color: var(--white);
            font-weight: 700;
            margin-bottom: 22px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(200,151,42,0.25);
        }

        .footer-links { list-style: none; }

        .footer-links li { margin-bottom: 10px; }

        .footer-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.88rem;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a::before {
            content: '›';
            color: var(--gold);
            font-size: 1.1rem;
        }

        .footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

        .footer-products-list { list-style: none; }

        .footer-products-list li { margin-bottom: 10px; }

        .footer-products-list a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.87rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s;
        }

        .footer-products-list a i { color: var(--gold); font-size: 12px; }

        .footer-products-list a:hover { color: var(--gold-light); }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 20px 0;
        }

        .footer-bottom-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-copyright {
            font-size: 0.83rem;
            color: rgba(255,255,255,0.5);
        }

        .footer-copyright strong { color: var(--gold-light); }

        .footer-copyright a {
            color: var(--gold-light);
            text-decoration: none;
        }

        /* ===================== SCROLL TO TOP ===================== */
        .scroll-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 46px;
            height: 46px;
            background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
            color: var(--white);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 18px rgba(107,26,42,0.4);
            transition: all 0.3s;
            z-index: 999;
            text-decoration: none;
        }

        .scroll-top-btn.show { display: flex; }
        .scroll-top-btn:hover { transform: translateY(-3px); }

        /* ===================== MOBILE NAV ===================== */
        .mobile-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 9998;
            display: none;
        }

        .mobile-overlay.open { display: block; }

        .mobile-nav {
            position: fixed;
            top: 0;
            left: -320px;
            width: 290px;
            height: 100vh;
            background: var(--white);
            z-index: 9999;
            transition: left 0.35s ease;
            overflow-y: auto;
            padding: 30px 24px;
        }

        .mobile-nav.open { left: 0; }

        .mobile-nav-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            border: none;
            font-size: 22px;
            color: var(--maroon);
            cursor: pointer;
        }

        .mobile-nav-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--maroon-dark);
            font-weight: 700;
            margin-bottom: 30px;
        }

        .mobile-nav-logo span { color: var(--gold); }

        .mobile-nav ul { list-style: none; }

        .mobile-nav ul li { border-bottom: 1px solid #f0e8e0; }

        .mobile-nav ul a {
            display: block;
            padding: 13px 0;
            color: var(--text-mid);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .mobile-nav ul a:hover { color: var(--maroon); }

        /* ===================== RESPONSIVE ===================== */
        @media (max-width: 1100px) {
            .products-grid, .featured-grid { grid-template-columns: repeat(2, 1fr); }
            .blog-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 900px) {
            .main-nav, .header-call { display: none; }
            .mobile-menu-btn { display: flex; }
            .about-grid, .why-grid { grid-template-columns: 1fr; gap: 40px; }
            .about-img-badge { right: 10px; }
            .slide-title { font-size: 2.6rem; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 600px) {
            .products-grid, .featured-grid, .blog-grid, .testimonials-grid { grid-template-columns: 1fr; }
            .slide-title { font-size: 2rem; }
            .section-header h2, .about-content h2, .why-content h2, .cta-content h2 { font-size: 1.9rem; }
            .footer-grid { grid-template-columns: 1fr; }
            .about-features { grid-template-columns: 1fr; }
            .footer-bottom-inner { flex-direction: column; text-align: center; }
        }
        .logo-icon-box{
              width: 80px;
              height: 80px;
              display: flex;
              align-items: center;
              justify-content: center;
          }

          .logo-img{
              width: 100%;
              height: 100%;
              object-fit: contain;
              background-color: white;
          }

          .hero-slider{
              position: relative;
              width: 100%;
              height: 100vh;
              overflow: hidden;
          }

          .slide{
              position: absolute;
              width: 100%;
              height: 100%;
              opacity: 0;
              transition: opacity 0.8s ease-in-out;
          }

          .slide.active{
              opacity: 1;
              z-index: 2;
          }

          .slide-bg{
              width: 100%;
              height: 100%;
              background-size: cover;
              background-position: center;
              background-repeat: no-repeat;
          }

          .slide-overlay{
              position: absolute;
              top:0;
              left:0;
              width:100%;
              height:100%;
              background:rgba(0,0,0,.10);
          }

          .slide-dots{
              position:absolute;
              bottom:25px;
              left:50%;
              transform:translateX(-50%);
              display:flex;
              gap:10px;
              z-index:10;
          }

          .dot{
              width:12px;
              height:12px;
              border-radius:50%;
              border:none;
              background:#fff;
              opacity:.5;
              cursor:pointer;
          }

          .dot.active{
              opacity:1;
              background:#f4c542;
          }
          /*==========================
        Gallery Section
===========================*/

.gallery-section{
    padding:100px 0;
    background:#fff8f3;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:15px;
    background:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item:hover{
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

@media(max-width:991px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:240px;
    }
}
/*==============================
        CONTACT SECTION
===============================*/

.contact-section{
    padding:100px 0;
    background:#fff8f3;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:50px;
    margin-top:60px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-box{
    display:flex;
    gap:20px;
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.contact-box i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#6B1A2A;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.contact-box h4{
    margin-bottom:8px;
    color:#6B1A2A;
}

.contact-box a{
    color:#333;
    text-decoration:none;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    border:1px solid #ddd;
    border-radius:10px;
    padding:15px;
    margin-bottom:20px;
    outline:none;
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#C8972A;
}

.contact-form button{
    border:none;
    cursor:pointer;
}

@media(max-width:991px){
    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .contact-form{
        padding:30px;
    }
}

/*==========================
PAGE BANNER
==========================*/

.page-banner{
    background:linear-gradient(rgba(90,20,35,.75),rgba(90,20,35,.75)),
    url(images/banner.jpg) center/cover;
    padding:110px 20px;
    text-align:center;
    color:#fff;
}

.page-banner h1{
    font-size:48px;
    margin-bottom:15px;
    font-weight:700;
    letter-spacing:1px;
}

.page-banner nav{
    font-size:17px;
}

.page-banner nav a{
    color:#fff;
    text-decoration:none;
}

.page-banner nav span{
    color:#d4af37;
}


/*==========================
GALLERY
==========================*/

.gallery-area{
    padding:80px 0;
    background:#faf7f4;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.gallery-card{
    overflow:hidden;
    border-radius:16px;
    background:#fff;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.gallery-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.gallery-card img{
    width:100%;
    height:380px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.gallery-card:hover img{
    transform:scale(1.08);
}


/*==========================
TABLET
==========================*/

@media(max-width:991px){

.gallery-grid{

grid-template-columns:repeat(3,1fr);

gap:20px;

}

.gallery-card img{

height:320px;

}

.page-banner h1{

font-size:38px;

}

}


/*==========================
MOBILE
==========================*/

@media(max-width:767px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

gap:15px;

}

.gallery-card img{

height:250px;

}

.page-banner{

padding:80px 15px;

}

.page-banner h1{

font-size:30px;

}

}


/*==========================
SMALL MOBILE
==========================*/

@media(max-width:480px){

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-card img{

height:420px;

}

}
