
        :root {
            --gold: #C9A84C;
            --gold-light: #E8C96A;
            --gold-dark: #9B7B2E;
            --gold-pale: #FDF6E3;
            --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #E8C96A 50%, #C9A84C 100%);
            --dark: #1A1A2E;
            --dark2: #16213E;
            --charcoal: #2D2D2D;
            --text-muted: #7A7A8C;
            --white: #FFFFFF;
            --light-bg: #FAFAF8;
            --border: #E8DFC8;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--charcoal);
            background: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

        /* ===== TOPBAR ===== */
        .topbar {
            background: var(--dark);
            padding: 8px 0;
            font-size: 13px;
        }
        .topbar a { color: #B0B0C0; text-decoration: none; transition: color 0.3s; }
        .topbar a:hover { color: var(--gold); }
        .topbar .contact-item { display: inline-flex; align-items: center; gap: 6px; margin-right: 18px; }
        .topbar .contact-item i { color: var(--gold); font-size: 12px; }
        .topbar .social-links a {
            width: 28px; height: 28px;
            border: 1px solid rgba(201,168,76,0.3);
            border-radius: 50%;
            display: inline-flex; align-items: center; justify-content: center;
            color: #B0B0C0; font-size: 12px;
            transition: all 0.3s;
            margin-left: 6px;
        }
        .topbar .social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

        /* ===== HEADER ===== */
        .site-header {
            background: var(--white);
            padding: 14px 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            position: sticky; top: 0; z-index: 1000;
        }
        .logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo-icon {
            width: 52px; height: 52px;
            background: var(--gold-gradient);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 22px; color: var(--dark);
            box-shadow: 0 4px 15px rgba(201,168,76,0.4);
            flex-shrink: 0;
        }
        .logo-text .brand-name {
            font-family: 'Playfair Display', serif;
            font-size: 22px; font-weight: 800;
            color: var(--dark);
            line-height: 1;
            letter-spacing: -0.5px;
        }
        .logo-text .brand-name span { color: var(--gold); }
        .logo-text .brand-tagline { font-size: 11px; color: var(--text-muted); letter-spacing: 0.5px; margin-top: 2px; }

        /* Search bar */
        .header-search { position: relative; }
        .header-search .search-wrap {
            display: flex;
            border: 2px solid var(--border);
            border-radius: 50px;
            overflow: hidden;
            transition: border-color 0.3s;
        }
        .header-search .search-wrap:focus-within { border-color: var(--gold); }
        .header-search input {
            border: none; outline: none;
            padding: 11px 18px;
            font-size: 14px;
            flex: 1;
            font-family: 'DM Sans', sans-serif;
            color: var(--charcoal);
        }
        .header-search select {
            border: none; border-left: 1px solid var(--border);
            outline: none;
            padding: 11px 14px;
            font-size: 13px;
            font-family: 'DM Sans', sans-serif;
            color: var(--charcoal);
            background: #FAFAFA;
            cursor: pointer;
            width: 160px;
        }
        .header-search .btn-search {
            background: var(--gold-gradient);
            border: none;
            padding: 11px 22px;
            color: var(--dark);
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .header-search .btn-search:hover { opacity: 0.9; }

        /* Header quick contact */
        .header-quick { text-align: right; }
        .header-quick .q-contact { font-size: 12px; color: var(--text-muted); }
        .header-quick .q-number {
            font-size: 18px; font-weight: 700; color: var(--dark);
            font-family: 'DM Sans', sans-serif;
            line-height: 1;
        }
        .header-quick .q-number a { color: var(--dark); text-decoration: none; }
        .header-quick .q-number a:hover { color: var(--gold); }
        .header-quick .btn-whatsapp {
            background: #25D366;
            color: white;
            border: none;
            padding: 7px 16px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex; align-items: center; gap: 6px;
            margin-top: 4px;
            transition: opacity 0.3s;
        }
        .header-quick .btn-whatsapp:hover { opacity: 0.9; color: white; }

        /* ===== NAVBAR ===== */
        .main-nav {
            background: var(--dark);
            padding: 0;
        }
        .main-nav .navbar-nav .nav-link {
            color: rgba(255,255,255,0.85) !important;
            font-size: 14px;
            font-weight: 500;
            padding: 16px 16px !important;
            transition: color 0.3s;
            position: relative;
        }
        .main-nav .navbar-nav .nav-link:hover,
        .main-nav .navbar-nav .nav-link.active {
            color: var(--gold) !important;
        }
        .main-nav .navbar-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0; left: 16px; right: 16px;
            height: 2px;
            background: var(--gold);
        }
        .main-nav .dropdown-menu {
            background: var(--dark2);
            border: 1px solid rgba(201,168,76,0.2);
            border-radius: 8px;
            padding: 8px 0;
            margin-top: 0;
        }
        .main-nav .dropdown-menu .dropdown-item {
            color: rgba(255,255,255,0.75);
            font-size: 13px;
            padding: 9px 18px;
            transition: all 0.2s;
        }
        .main-nav .dropdown-menu .dropdown-item:hover {
            background: rgba(201,168,76,0.15);
            color: var(--gold);
            padding-left: 24px;
        }
        .main-nav .btn-post {
            background: var(--gold-gradient);
            color: var(--dark) !important;
            font-weight: 700;
            padding: 9px 22px !important;
            border-radius: 50px;
            margin: 10px 0;
            font-size: 13px;
        }
        .main-nav .btn-post:hover { opacity: 0.9; }
        .main-nav .btn-post::after { display: none !important; }
        .main-nav .navbar-toggler { border-color: rgba(201,168,76,0.3); }
        .main-nav .navbar-toggler-icon { filter: invert(1); }

        /* Category bar */
        .cat-bar {
            background: var(--gold);
            padding: 0;
        }
        .cat-bar a {
            color: var(--dark);
            font-size: 13px;
            font-weight: 600;
            padding: 8px 16px;
            text-decoration: none;
            display: inline-block;
            border-right: 1px solid rgba(0,0,0,0.1);
            transition: background 0.3s;
        }
        .cat-bar a:hover { background: rgba(0,0,0,0.1); }
        .cat-bar a i { margin-right: 5px; font-size: 12px; }

        /* ===== HERO ===== */
        .hero {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #0F3460 100%);
            padding: 70px 0 80px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute; inset: 0;
            pointer-events: none;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .hero-badge {
            display: inline-block;
            background: rgba(201,168,76,0.2);
            border: 1px solid var(--gold);
            color: var(--gold);
            font-size: 12px;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: 50px;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 18px;
        }
        .hero h1 {
            font-size: clamp(32px, 5vw, 58px);
            font-weight: 800;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 18px;
        }
        .hero h1 span { color: var(--gold); }
        .hero p {
            color: rgba(255,255,255,0.7);
            font-size: 17px;
            margin-bottom: 32px;
            max-width: 520px;
        }
        .hero-stats { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
        .hero-stat .num {
            font-family: 'Playfair Display', serif;
            font-size: 30px; font-weight: 800;
            color: var(--gold); display: block;
        }
        .hero-stat .lbl { font-size: 13px; color: rgba(255,255,255,0.6); }

        /* Hero search panel */
        .hero-search-panel {
            background: var(--white);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        .hero-search-panel h4 {
            font-size: 18px;
            color: var(--dark);
            margin-bottom: 20px;
            font-weight: 700;
        }
        .hero-search-panel .nav-tabs .nav-link {
            font-size: 13px; font-weight: 600;
            color: var(--text-muted);
            border: none;
            padding: 8px 16px;
            border-radius: 50px;
            margin-right: 4px;
        }
        .hero-search-panel .nav-tabs .nav-link.active {
            background: var(--gold);
            color: var(--dark);
        }
        .hero-search-panel .nav-tabs { border: none; margin-bottom: 20px; }
        .hero-search-panel .form-control,
        .hero-search-panel .form-select {
            border: 1.5px solid var(--border);
            border-radius: 8px;
            padding: 11px 14px;
            font-size: 14px;
            font-family: 'DM Sans', sans-serif;
            color: var(--charcoal);
            transition: border-color 0.3s;
        }
        .hero-search-panel .form-control:focus,
        .hero-search-panel .form-select:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
        }
        .hero-search-panel .btn-search-main {
            background: var(--gold-gradient);
            border: none;
            color: var(--dark);
            font-weight: 700;
            font-size: 15px;
            padding: 13px;
            border-radius: 8px;
            width: 100%;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .hero-search-panel .btn-search-main:hover { opacity: 0.9; }

        /* ===== SERVICES STRIP ===== */
        .services-strip {
            background: var(--light-bg);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 20px 0;
        }
        .service-item { display: flex; align-items: center; gap: 14px; }
        .service-item .s-icon {
            width: 46px; height: 46px;
            background: var(--gold-pale);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 20px; color: var(--gold);
            flex-shrink: 0;
        }
        .service-item .s-text h6 { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 2px; font-family: 'DM Sans',sans-serif; }
        .service-item .s-text p { font-size: 12px; color: var(--text-muted); margin: 0; }

        /* ===== SECTION HEADER ===== */
        .section-header { margin-bottom: 48px; }
        .section-header .label {
            display: inline-block;
            background: var(--gold-pale);
            color: var(--gold-dark);
            font-size: 12px; font-weight: 700;
            padding: 5px 14px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }
        .section-header h2 {
            font-size: clamp(26px, 4vw, 40px);
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 12px;
        }
        .section-header p { color: var(--text-muted); font-size: 16px; max-width: 560px; }
        .gold-line {
            width: 60px; height: 3px;
            background: var(--gold-gradient);
            border-radius: 2px;
            margin: 14px 0;
        }

        /* ===== PROPERTY CARDS ===== */
        .section-py { padding: 70px 0; }
        .property-card {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            background: var(--white);
            border: 1px solid var(--border);
        }
        .property-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(201,168,76,0.2);
        }
        .property-img {
            position: relative;
            height: 200px;
            overflow: hidden;
            background: linear-gradient(135deg, #E8DFC8 0%, #C9A84C22 100%);
            display: flex; align-items: center; justify-content: center;
        }
        .property-img .prop-icon { font-size: 60px; color: var(--gold); opacity: 0.4; }
        .property-badge {
            position: absolute; top: 12px; left: 12px;
            background: var(--gold-gradient);
            color: var(--dark);
            font-size: 11px; font-weight: 700;
            padding: 4px 10px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .property-badge.rent { background: linear-gradient(135deg,#1A1A2E,#0F3460); color: white; }
        .property-badge.land { background: linear-gradient(135deg,#2D5016,#4A8C2A); color: white; }
        .property-badge.commercial { background: linear-gradient(135deg,#7B2D00,#C44B00); color: white; }
        .property-badge.materials { background: linear-gradient(135deg,#1A4A6B,#1E7AB8); color: white; }
        .property-wishlist {
            position: absolute; top: 12px; right: 12px;
            width: 34px; height: 34px;
            background: white;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: var(--text-muted);
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
            border: none;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        .property-wishlist:hover { color: #E74C3C; transform: scale(1.1); }
        .property-verified {
            position: absolute; bottom: 12px; left: 12px;
            background: rgba(0,0,0,0.6);
            color: white;
            font-size: 11px; padding: 3px 10px; border-radius: 50px;
            display: flex; align-items: center; gap: 4px;
        }
        .property-verified i { color: #4CAF50; }
        .property-body { padding: 18px; }
        .property-type { font-size: 12px; color: var(--gold-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
        .property-title {
            font-size: 16px; font-weight: 700; color: var(--dark);
            margin: 6px 0;
            font-family: 'DM Sans', sans-serif;
            display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
        }
        .property-location { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
        .property-location i { color: var(--gold); margin-right: 4px; }
        .property-price {
            font-size: 20px; font-weight: 800;
            color: var(--dark);
            font-family: 'Playfair Display', serif;
        }
        .property-price span { font-size: 13px; font-weight: 500; color: var(--text-muted); }
        .property-features { display: flex; gap: 14px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
        .property-features .feat { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
        .property-features .feat i { color: var(--gold); }
        .property-actions { padding: 12px 18px; background: var(--light-bg); border-top: 1px solid var(--border); display: flex; gap: 8px; }
        .btn-gold {
            background: var(--gold-gradient);
            color: var(--dark);
            font-weight: 700;
            border: none;
            padding: 9px 18px;
            border-radius: 50px;
            font-size: 13px;
            cursor: pointer;
            transition: opacity 0.3s;
            text-decoration: none;
            display: inline-flex; align-items: center; gap: 6px;
        }
        .btn-gold:hover { opacity: 0.88; color: var(--dark); }
        .btn-outline-gold {
            background: transparent;
            color: var(--gold-dark);
            font-weight: 600;
            border: 1.5px solid var(--gold);
            padding: 9px 18px;
            border-radius: 50px;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex; align-items: center; gap: 6px;
        }
        .btn-outline-gold:hover { background: var(--gold); color: var(--dark); }

        /* ===== TABS ===== */
        .prop-tabs .nav-tabs { border-bottom: 2px solid var(--border); }
        .prop-tabs .nav-tabs .nav-link {
            font-size: 14px; font-weight: 600;
            color: var(--text-muted);
            border: none;
            padding: 12px 20px;
            position: relative;
        }
        .prop-tabs .nav-tabs .nav-link.active {
            color: var(--gold-dark);
            background: transparent;
        }
        .prop-tabs .nav-tabs .nav-link.active::after {
            content: '';
            position: absolute; bottom: -2px; left: 0; right: 0; height: 2px;
            background: var(--gold);
        }

        /* ===== CATEGORIES ===== */
        .cat-section { background: var(--light-bg); }
        .category-card {
            background: var(--white);
            border-radius: 16px;
            padding: 28px 20px;
            text-align: center;
            border: 1.5px solid var(--border);
            transition: all 0.3s;
            cursor: pointer;
            text-decoration: none;
            display: block;
            height: 100%;
        }
        .category-card:hover {
            border-color: var(--gold);
            box-shadow: 0 8px 30px rgba(201,168,76,0.15);
            transform: translateY(-4px);
        }
        .cat-icon {
            width: 64px; height: 64px;
            background: var(--gold-pale);
            border-radius: 16px;
            display: flex; align-items: center; justify-content: center;
            font-size: 26px;
            color: var(--gold-dark);
            margin: 0 auto 16px;
            transition: all 0.3s;
        }
        .category-card:hover .cat-icon { background: var(--gold); }
        .category-card h5 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; font-family: 'DM Sans',sans-serif; }
        .category-card p { font-size: 12px; color: var(--text-muted); margin: 0; }
        .cat-count {
            display: inline-block;
            background: var(--gold-pale);
            color: var(--gold-dark);
            font-size: 11px; font-weight: 700;
            padding: 3px 10px; border-radius: 50px;
            margin-top: 10px;
        }

        /* ===== MATERIALS SECTION ===== */
        .material-card {
            background: var(--white);
            border: 1.5px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
        }
        .material-card:hover {
            border-color: var(--gold);
            box-shadow: 0 8px 30px rgba(201,168,76,0.15);
        }
        .material-img {
            height: 140px;
            background: linear-gradient(135deg, #E8DFC8 0%, #D4C5A0 100%);
            display: flex; align-items: center; justify-content: center;
            font-size: 48px; color: var(--gold); opacity: 0.6;
        }
        .material-body { padding: 14px; }
        .material-body h6 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; font-family:'DM Sans',sans-serif; }
        .material-body .supplier { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }
        .material-body .price { font-size: 16px; font-weight: 800; color: var(--gold-dark); font-family:'Playfair Display',serif; }
        .material-body .unit { font-size: 12px; color: var(--text-muted); }

        /* ===== STATES SECTION ===== */
        .states-section { background: var(--dark); }
        .state-badge {
            display: inline-block;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(201,168,76,0.2);
            color: rgba(255,255,255,0.75);
            font-size: 13px; font-weight: 500;
            padding: 8px 16px;
            border-radius: 8px;
            margin: 4px;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
        }
        .state-badge:hover, .state-badge.active {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--dark);
        }

        /* ===== PROMO BANNERS ===== */
        .promo-banner {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            min-height: 220px;
            display: flex; align-items: center;
        }
        .promo-dark {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
            border: 1px solid rgba(201,168,76,0.2);
        }
        .promo-gold { background: var(--gold-gradient); }
        .promo-banner .promo-content { padding: 32px; position: relative; z-index: 2; }
        .promo-dark .promo-content h3 { color: var(--white); font-size: 24px; }
        .promo-dark .promo-content p { color: rgba(255,255,255,0.7); font-size: 14px; }
        .promo-gold .promo-content h3 { color: var(--dark); font-size: 24px; }
        .promo-gold .promo-content p { color: rgba(0,0,0,0.7); font-size: 14px; }
        .promo-icon {
            position: absolute; right: 30px; top: 50%;
            transform: translateY(-50%);
            font-size: 80px;
            opacity: 0.1;
        }
        .promo-dark .promo-icon { color: var(--gold); }
        .promo-gold .promo-icon { color: var(--dark); }

        /* ===== CONTACT SECTION ===== */
        .contact-section { background: var(--light-bg); }
        .contact-card {
            background: var(--white);
            border-radius: 16px;
            padding: 32px;
            border: 1.5px solid var(--border);
            height: 100%;
        }
        .contact-icon-box {
            width: 56px; height: 56px;
            background: var(--gold-gradient);
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 22px;
            color: var(--dark);
            margin-bottom: 16px;
        }
        .contact-card h5 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; font-family: 'DM Sans', sans-serif; }
        .contact-card a { color: var(--charcoal); text-decoration: none; transition: color 0.3s; }
        .contact-card a:hover { color: var(--gold-dark); }
        .contact-card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.8; }
        .contact-form-wrap { background: var(--white); border-radius: 16px; padding: 36px; border: 1.5px solid var(--border); }
        .contact-form-wrap h3 { font-size: 24px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
        .form-label { font-size: 13px; font-weight: 600; color: var(--charcoal); }
        .form-control, .form-select {
            border: 1.5px solid var(--border);
            border-radius: 8px;
            padding: 11px 14px;
            font-size: 14px;
            font-family: 'DM Sans', sans-serif;
            transition: border-color 0.3s;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
        }

        /* ===== NEWSLETTER ===== */
        .newsletter { background: var(--gold-gradient); padding: 60px 0; }
        .newsletter h2 { font-size: 34px; font-weight: 800; color: var(--dark); }
        .newsletter p { color: rgba(0,0,0,0.6); font-size: 16px; }
        .newsletter .nl-input {
            display: flex;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            max-width: 500px;
        }
        .newsletter .nl-input input {
            flex: 1; border: none; outline: none;
            padding: 14px 20px;
            font-size: 14px; font-family: 'DM Sans',sans-serif;
        }
        .newsletter .nl-input button {
            background: var(--dark);
            color: white; border: none;
            padding: 14px 24px;
            font-weight: 700; font-size: 14px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .newsletter .nl-input button:hover { background: var(--dark2); }

        /* ===== FOOTER ===== */
        .footer { background: var(--dark); padding: 60px 0 30px; }
        .footer-logo h3 { font-size: 24px; font-weight: 800; color: white; }
        .footer-logo h3 span { color: var(--gold); }
        .footer-logo p { font-size: 14px; color: rgba(255,255,255,0.55); margin-top: 10px; line-height: 1.7; }
        .footer h5 { font-size: 14px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; font-family:'DM Sans',sans-serif; }
        .footer-links { list-style: none; padding: 0; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: rgba(255,255,255,0.55); font-size: 14px; text-decoration: none; transition: color 0.3s; display: flex; align-items: center; gap: 6px; }
        .footer-links a::before { content: '›'; color: var(--gold); font-size: 16px; }
        .footer-links a:hover { color: var(--gold); padding-left: 4px; }
        .footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
        .footer-contact-item i { color: var(--gold); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
        .footer-contact-item span { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }
        .footer-contact-item a { color: rgba(255,255,255,0.65); text-decoration: none; }
        .footer-contact-item a:hover { color: var(--gold); }
        .footer-social a {
            width: 36px; height: 36px;
            border: 1px solid rgba(201,168,76,0.3);
            border-radius: 50%;
            display: inline-flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,0.6); font-size: 14px;
            margin-right: 8px;
            transition: all 0.3s;
            text-decoration: none;
        }
        .footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
        .footer-divider { border-color: rgba(255,255,255,0.08); margin: 30px 0; }
        .footer-bottom { font-size: 13px; color: rgba(255,255,255,0.4); }
        .footer-bottom a { color: var(--gold); text-decoration: none; }

        /* ===== TRUST BADGES ===== */
        .trust-section { background: var(--white); padding: 50px 0; border-bottom: 1px solid var(--border); }
        .trust-item { text-align: center; }
        .trust-item .t-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 800; color: var(--gold-dark); }
        .trust-item .t-label { font-size: 14px; color: var(--text-muted); }

        /* BACK TO TOP */
        .back-to-top {
            position: fixed; bottom: 24px; right: 24px;
            width: 44px; height: 44px;
            background: var(--gold-gradient);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: var(--dark); font-size: 16px;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(201,168,76,0.4);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .back-to-top.show { opacity: 1; }
        .back-to-top:hover { color: var(--dark); transform: scale(1.1); }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-up { animation: fadeInUp 0.6s ease forwards; }
        .fade-up-2 { animation: fadeInUp 0.6s ease 0.15s both; }
        .fade-up-3 { animation: fadeInUp 0.6s ease 0.3s both; }

        @media (max-width: 768px) {
            .topbar .contact-item:last-child { display: none; }
            .hero { padding: 50px 0 60px; }
            .hero-stats { gap: 20px; }
            .hero-search-panel { margin-top: 30px; }
            .cat-bar { overflow-x: auto; white-space: nowrap; }
            .trust-item { margin-bottom: 20px; }
        }
    