
        /* ===== CSS VARIABLES ===== */
        :root {
            --gold: #C9A84C;
            --gold-light: #E8C96A;
            --gold-dark: #8B6914;
            --cream: #FAF7F2;
            --charcoal: #1A1A1A;
            --slate: #2D3142;
            --warm-gray: #6B6560;
            --copper: #B87333;
            --white: #FFFFFF;
            --card-bg: #FFFFFF;
            --shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
            --radius: 16px;
            --nav-h: 72px;
        }

        /* ===== RESET & BASE ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--cream);
            color: var(--charcoal);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'Playfair Display', serif;
        }

        a {
            text-decoration: none;
        }

        /* ===== SCROLL REVEAL ===== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* ===== NAV ===== */

        .navbar {
            height: var(--nav-h);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(201, 168, 76, 0.2);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .navbar-nav{
            background-color: rgba(255, 255, 255, 0.95);
            margin: 20px;
            padding: 20px;
            border-radius:20px ;
            color: ;
        }

        .navbar.scrolled {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.10);
            background: rgba(255, 255, 255, 0.98);
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--charcoal) !important;
            letter-spacing: -0.5px;
        }

        .navbar-brand span {
            color: var(--gold);
        }

        .navbar-brand sup {
            font-size: 0.5em;
            color: var(--gold);
        }

        .nav-link {
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--slate) !important;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            padding: 0.4rem 0.9rem !important;
            border-radius: 6px;
            transition: all 0.2s;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--gold) !important;
            background: rgba(201, 168, 76, 0.08);
        }

        .nav-cta {
            background: var(--gold);
            color: var(--white) !important;
            border-radius: 8px;
            padding: 0.4rem 1.2rem !important;
        }

        .nav-cta:hover {
            background: var(--gold-dark) !important;
            color: var(--white) !important;
        }

        /* ===== HERO ===== */
        #home {
            min-height: 100vh;
            background: linear-gradient(135deg, #1A1208 0%, #2D2010 40%, #1A1208 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle at 20% 20%, rgba(201, 168, 76, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(184, 115, 51, 0.12) 0%, transparent 50%),
                repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(201, 168, 76, 0.03) 40px, rgba(201, 168, 76, 0.03) 41px);
        }

        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            animation: float 8s ease-in-out infinite;
        }

        .orb1 {
            width: 500px;
            height: 500px;
            background: rgba(201, 168, 76, 0.12);
            top: -100px;
            right: -100px;
        }

        .orb2 {
            width: 300px;
            height: 300px;
            background: rgba(184, 115, 51, 0.10);
            bottom: 100px;
            left: -50px;
            animation-delay: -4s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-30px) scale(1.05);
            }
        }

        .hero-badge {
            display: inline-block;
            background: rgba(201, 168, 76, 0.15);
            border: 1px solid rgba(201, 168, 76, 0.4);
            color: var(--gold-light);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 0.35rem 1rem;
            border-radius: 100px;
            margin-bottom: 1.5rem;
            animation: fadeDown 1s ease 0.2s both;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 7vw, 6rem);
            font-weight: 900;
            color: var(--white);
            line-height: 1.05;
            animation: fadeUp 1s ease 0.4s both;
        }

        .hero-title .gold {
            color: var(--gold);
        }

        .hero-title .line-decor {
            position: relative;
            display: inline-block;
        }

        .hero-title .line-decor::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), transparent);
            border-radius: 2px;
        }

        .hero-subtitle {
            color: rgba(255, 255, 255, 0.65);
            font-size: 1.1rem;
            font-weight: 300;
            line-height: 1.7;
            max-width: 520px;
            animation: fadeUp 1s ease 0.6s both;
        }

        .hero-stats {
            display: flex;
            gap: 2.5rem;
            animation: fadeUp 1s ease 0.8s both;
        }

        .hero-stat-num {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--gold);
            line-height: 1;
        }

        .hero-stat-lbl {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--gold), var(--copper));
            color: var(--white);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.85rem 2rem;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
            animation: fadeUp 1s ease 1s both;
        }

        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(201, 168, 76, 0.5);
            color: #fff;
        }

        .hero-btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: transparent;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.85rem 2rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            animation: fadeUp 1s ease 1.1s both;
        }

        .hero-btn-outline:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.4);
            color: #fff;
        }

        .hero-visual {
            position: relative;
            animation: fadeLeft 1.2s ease 0.5s both;
        }

        .hero-img-wrap {
            position: relative;
            width: 100%;
            max-width: 480px;
            margin: 0 auto;
        }

        .hero-img-main {
            width: 100%;
            border-radius: 24px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
            background: linear-gradient(135deg, #2D2010, #3D3015);
            aspect-ratio: 4/3;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 7rem;
        }

        .hero-float-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 14px;
            padding: 1rem 1.2rem;
            color: white;
            font-size: 0.85rem;
            animation: floatCard 6s ease-in-out infinite;
        }

        .hfc1 {
            top: -20px;
            left: -20px;
            animation-delay: 0s;
        }

        .hfc2 {
            bottom: 40px;
            right: -20px;
            animation-delay: -3s;
        }

        @keyframes floatCard {

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

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

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

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

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

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

        @keyframes fadeLeft {
            from {
                opacity: 0;
                transform: translateX(60px);
            }

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

        /* ===== SECTION COMMON ===== */
        section {
            padding: 6rem 0;
        }

        .section-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            background: rgba(201, 168, 76, 0.1);
            border: 1px solid rgba(201, 168, 76, 0.3);
            padding: 0.3rem 1rem;
            border-radius: 100px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 700;
            color: var(--charcoal);
            line-height: 1.2;
        }

        .section-title .accent {
            color: var(--gold);
        }

        .gold-divider {
            display: block;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), transparent);
            border-radius: 2px;
            margin: 1rem 0 1.5rem;
        }

        .section-subtitle {
            color: var(--warm-gray);
            font-size: 1.05rem;
            line-height: 1.7;
        }

        /* ===== ABOUT SECTION ===== */
        #about {
            background: var(--white);
        }

        .about-card {
            background: var(--cream);
            border-radius: var(--radius);
            padding: 2rem;
            border: 1px solid rgba(201, 168, 76, 0.15);
        }

        .about-icon-box {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--gold), var(--copper));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .timeline-item {
            position: relative;
            padding-left: 2.5rem;
            margin-bottom: 2rem;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 6px;
            bottom: -2rem;
            width: 2px;
            background: linear-gradient(180deg, var(--gold), transparent);
        }

        .timeline-item:last-child::before {
            display: none;
        }

        .timeline-dot {
            position: absolute;
            left: 0;
            top: 4px;
            width: 22px;
            height: 22px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.6rem;
            color: white;
            font-weight: 700;
        }

        .timeline-year {
            font-size: 0.78rem;
            color: var(--gold);
            font-weight: 700;
            letter-spacing: 1px;
        }

        .timeline-text {
            font-size: 0.93rem;
            color: var(--warm-gray);
            margin-top: 0.2rem;
        }

        /* ===== PRODUCTS ===== */
        #products {
            background: var(--cream);
        }

        .product-filter-tabs .btn {
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 500;
            padding: 0.45rem 1.3rem;
            border: 1.5px solid rgba(201, 168, 76, 0.3);
            color: var(--warm-gray);
            background: transparent;
            transition: all 0.25s;
            margin: 0.2rem;
        }

        .product-filter-tabs .btn:hover,
        .product-filter-tabs .btn.active {
            background: var(--gold);
            color: white;
            border-color: var(--gold);
        }

        .product-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .product-img {
            height: 200px;
            background: linear-gradient(135deg, #F8F4EC, #F0E8D5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }

        .product-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.04));
        }

        .quality-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 0.25rem 0.7rem;
            border-radius: 100px;
        }

        .badge-gold {
            background: #FFF3CC;
            color: #8B6914;
            border: 1px solid #E8C96A;
        }

        .badge-silver {
            background: #F0F0F0;
            color: #555;
            border: 1px solid #CCC;
        }

        .badge-premium {
            background: #1A1A1A;
            color: #C9A84C;
        }

        .discount-ribbon {
            position: absolute;
            top: 12px;
            right: 12px;
            background: #E74C3C;
            color: white;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
        }

        .product-body {
            padding: 1.4rem;
        }

        .product-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--charcoal);
        }

        .product-meta {
            font-size: 0.82rem;
            color: var(--warm-gray);
            margin-top: 0.25rem;
        }

        .product-price {
            display: flex;
            align-items: baseline;
            gap: 0.5rem;
            margin-top: 0.8rem;
        }

        .price-current {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--gold);
            font-family: 'Playfair Display', serif;
        }

        .price-old {
            font-size: 0.88rem;
            color: #aaa;
            text-decoration: line-through;
        }

        .product-stars {
            color: var(--gold);
            font-size: 0.85rem;
        }

        .product-specs-list {
            font-size: 0.82rem;
            color: var(--warm-gray);
            margin-top: 0.8rem;
        }

        .product-specs-list li {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin-bottom: 0.2rem;
        }

        .product-specs-list i {
            color: var(--gold);
            font-size: 0.7rem;
        }

        .btn-add-cart {
            width: 100%;
            background: linear-gradient(135deg, var(--gold), var(--copper));
            color: white;
            font-weight: 600;
            font-size: 0.88rem;
            border: none;
            border-radius: 10px;
            padding: 0.65rem;
            margin-top: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-add-cart:hover {
            opacity: 0.9;
            transform: scale(1.02);
        }

        /* ===== DISCOUNTS ===== */
        #discounts {
            background: var(--slate);
            color: white;
        }

        .discount-day-card {
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius);
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s;
            cursor: default;
            position: relative;
            overflow: hidden;
        }

        .discount-day-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .discount-day-card:hover {
            transform: translateY(-6px);
            border-color: rgba(201, 168, 76, 0.4);
        }

        .discount-day-card:hover::before {
            opacity: 1;
        }

        .discount-day-card.today {
            border-color: var(--gold);
            background: rgba(201, 168, 76, 0.12);
        }

        .today-tag {
            position: absolute;
            top: -1px;
            right: 16px;
            background: var(--gold);
            color: var(--charcoal);
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 0.15rem 0.6rem;
            border-radius: 0 0 6px 6px;
        }

        .day-name {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.5);
        }

        .day-percent {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--gold);
            line-height: 1;
            margin: 0.5rem 0;
        }

        .day-category {
            font-size: 0.83rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* ===== SPECIFICATIONS ===== */
        #specifications {
            background: var(--white);
        }

        .spec-table {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .spec-table thead {
            background: linear-gradient(135deg, var(--charcoal), var(--slate));
            color: white;
        }

        .spec-table thead th {
            padding: 1.1rem 1.4rem;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        .spec-table tbody tr {
            transition: background 0.2s;
        }

        .spec-table tbody tr:hover {
            background: rgba(201, 168, 76, 0.05) !important;
        }

        .spec-table td {
            padding: 0.9rem 1.4rem;
            font-size: 0.9rem;
            vertical-align: middle;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .spec-table td:first-child {
            font-weight: 600;
            color: var(--charcoal);
        }

        .quality-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-right: 6px;
        }

        .q-gold {
            background: var(--gold);
        }

        .q-silver {
            background: #A8A8A8;
        }

        .q-premium {
            background: var(--charcoal);
        }

        /* ===== COMPARISON ===== */
        #comparison {
            background: var(--cream);
        }

        .compare-selector {
            background: var(--white);
            border: 1.5px solid rgba(201, 168, 76, 0.3);
            border-radius: 10px;
            padding: 0.6rem 1rem;
            font-size: 0.9rem;
            color: var(--charcoal);
            font-family: 'DM Sans', sans-serif;
            transition: border-color 0.2s;
            width: 100%;
        }

        .compare-selector:focus {
            outline: none;
            border-color: var(--gold);
        }

        .compare-table {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .compare-table thead tr {
            background: linear-gradient(135deg, var(--charcoal), var(--slate));
        }

        .compare-table th {
            padding: 1rem 1.2rem;
            color: white;
            font-weight: 600;
            font-size: 0.88rem;
        }

        .compare-table td {
            padding: 0.8rem 1.2rem;
            font-size: 0.88rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .compare-table tr:nth-child(even) td {
            background: rgba(201, 168, 76, 0.04);
        }

        .compare-attr {
            font-weight: 600;
            color: var(--charcoal);
        }

        .win-cell {
            color: #27AE60;
            font-weight: 600;
        }

        .neutral-cell {
            color: var(--warm-gray);
        }

        .check-icon {
            color: #27AE60;
        }

        .cross-icon {
            color: #E74C3C;
        }

        /* ===== ABOUT US ===== */
        #about-us {
            background: var(--white);
        }

        .team-card {
            background: var(--cream);
            border-radius: var(--radius);
            padding: 2rem 1.5rem;
            text-align: center;
            border: 1px solid rgba(201, 168, 76, 0.15);
            transition: all 0.3s;
        }

        .team-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow);
            border-color: rgba(201, 168, 76, 0.4);
        }

        .team-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--gold), var(--copper));
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }

        .team-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .team-role {
            font-size: 0.82rem;
            color: var(--gold);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .team-desc {
            font-size: 0.85rem;
            color: var(--warm-gray);
            margin-top: 0.6rem;
            line-height: 1.6;
        }

        .value-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(201, 168, 76, 0.1);
            border: 1px solid rgba(201, 168, 76, 0.25);
            border-radius: 100px;
            padding: 0.45rem 1rem;
            font-size: 0.85rem;
            color: var(--charcoal);
            margin: 0.25rem;
        }

        .value-pill i {
            color: var(--gold);
        }

        /* ===== CONTACT ===== */
        #contact {
            background: var(--cream);
        }

        .location-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 1.8rem;
            box-shadow: var(--shadow);
            border: 1px solid rgba(201, 168, 76, 0.1);
            transition: all 0.3s;
            height: 100%;
        }

        .location-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(201, 168, 76, 0.3);
        }

        .location-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--gold), var(--copper));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
        }

        .location-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .location-detail {
            font-size: 0.85rem;
            color: var(--warm-gray);
            margin-top: 0.15rem;
            display: flex;
            align-items: flex-start;
            gap: 0.4rem;
        }

        .location-detail i {
            color: var(--gold);
            margin-top: 2px;
            flex-shrink: 0;
        }

        .contact-form-wrap {
            background: var(--white);
            border-radius: var(--radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
            border: 1px solid rgba(201, 168, 76, 0.1);
        }

        .form-ctrl {
            width: 100%;
            background: var(--cream);
            border: 1.5px solid rgba(201, 168, 76, 0.2);
            border-radius: 10px;
            padding: 0.75rem 1rem;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            color: var(--charcoal);
            transition: border-color 0.2s;
            margin-bottom: 1rem;
        }

        .form-ctrl:focus {
            outline: none;
            border-color: var(--gold);
            background: white;
        }

        textarea.form-ctrl {
            resize: vertical;
            min-height: 100px;
        }

        .btn-gold {
            background: linear-gradient(135deg, var(--gold), var(--copper));
            color: white;
            font-weight: 600;
            border: none;
            border-radius: 10px;
            padding: 0.8rem 2rem;
            cursor: pointer;
            font-size: 0.95rem;
            transition: all 0.3s;
            box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
        }

        .btn-gold:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        /* ===== FEEDBACK ===== */
        #feedback {
            background: var(--white);
        }

        .star-rating {
            display: flex;
            gap: 0.4rem;
            margin-bottom: 1rem;
        }

        .star-btn {
            font-size: 1.6rem;
            cursor: pointer;
            color: #DDD;
            transition: color 0.15s;
            background: none;
            border: none;
            padding: 0;
        }

        .star-btn.active,
        .star-btn:hover~.star-btn {
            color: var(--gold);
        }

        .star-btn.lit {
            color: var(--gold);
        }

        .feedback-card {
            background: var(--cream);
            border-radius: var(--radius);
            padding: 1.5rem;
            border: 1px solid rgba(201, 168, 76, 0.15);
            margin-bottom: 1rem;
            transition: all 0.3s;
        }

        .feedback-card:hover {
            border-color: rgba(201, 168, 76, 0.4);
        }

        .fb-author {
            font-weight: 600;
            font-size: 0.95rem;
        }

        .fb-stars {
            color: var(--gold);
            font-size: 0.85rem;
            margin-bottom: 0.4rem;
        }

        .fb-text {
            font-size: 0.88rem;
            color: var(--warm-gray);
            line-height: 1.6;
        }

        .fb-tag {
            font-size: 0.72rem;
            background: rgba(201, 168, 76, 0.12);
            color: var(--gold-dark);
            padding: 0.2rem 0.6rem;
            border-radius: 100px;
            font-weight: 600;
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--charcoal);
            color: rgba(255, 255, 255, 0.7);
            padding: 4rem 0 2rem;
        }

        .footer-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: white;
            font-weight: 700;
        }

        .footer-brand span {
            color: var(--gold);
        }

        .footer-tagline {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.45);
            margin-top: 0.5rem;
        }

        .footer-heading {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            color: white;
            margin-bottom: 1rem;
        }

        .footer-link {
            display: block;
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 0.5rem;
            transition: color 0.2s;
            cursor: pointer;
        }

        .footer-link:hover {
            color: var(--gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 2rem;
            padding-top: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .footer-bottom-text {
            font-size: 0.82rem;
        }

        .social-icons a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 1.2rem;
            margin-left: 0.8rem;
            transition: color 0.2s;
        }

        .social-icons a:hover {
            color: var(--gold);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .hero-stats {
                gap: 1.5rem;
            }

            .hero-btn,
            .hero-btn-outline {
                padding: 0.7rem 1.4rem;
                font-size: 0.88rem;
            }
        }

        .form-ctrl.error {
    border: 1px solid #dc3545;
}

.form-ctrl {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-ctrl.error-border {
    border-color: red;
}

.error {
    color: red;
    font-size: 12px;
    display: block;
    margin-bottom: 8px;
}

.star-btn {
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #ccc;
}

.star-btn.active {
    color: #d4af37;
}

.label-title {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}


.star-btn {
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #ccc;
}

.star-btn.active {
    color: gold;
}

.error {
    color: red;
    font-size: 0.75rem;
}
   