       /* --- GLOBAL & HEADER VARIABLES --- */
        :root {
            --pro-brown: #36241A;
            --pro-dark: #1F1814;
            --pro-gold: #C5A065;
            --pro-grey: #6c757d;
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Montserrat', sans-serif;
            
            /* Slider Variables */
            --gold: #C5A065;
            --dark-overlay: rgba(10, 5, 0, 0.75);

            /* About Section Variables */
            --color-brown: #36241A;
            --color-gold: #C5A065;
            --color-bg-cream: #F9F7F4;

            /* Services Section Variables */
            --primary-dark: #36241A;
            --primary-light: #5e4b3e;
            --accent-gold: #c5a059;
            --bg-cream: #F7F5F0;
            --whatsapp-green: #25D366;
            --white: #ffffff;

            /* Premium/Why Choose Variables */
            --color-dark: #36241A;
            --color-gold-light: #F4EBD9;
            --color-bg: #FCFBF9; /* Very light cream */

            /* Trust Section Variables */
            --primary-gold: #C5A065;
            --card-bg: #2B1D15; /* Very dark brown for cards */
            --text-light: #F4F4F4;
            --bg-section: #FDFBF7;

            /* Contact Section Variables */
            --section-bg: #F9F7F4;
            --text-muted: #6c757d;

            /* Famous Section Variables */
            --fame-dark: #1E1510;       /* Very Dark Brown background */
            --fame-card-bg: #2C221C;    /* Slightly lighter card bg */
            --fame-gold: #C5A065;       /* Gold Accent */
            --fame-text: #E5E5E5;       /* Off-white text */
        }

        /* --- TOP BAR --- */
        #top-bar-pro {
            background-color: var(--pro-dark);
            font-family: var(--font-body);
            font-size: 12px;
            padding: 8px 0;
            border-bottom: 3px solid var(--pro-brown);
        }

        .top-info-list a {
            text-decoration: none;
            transition: 0.3s;
        }

        .top-info-list a:hover {
            color: var(--pro-gold) !important;
        }

        .social-link {
            color: #bbb;
            margin-left: 15px;
            font-size: 13px;
            transition: 0.3s;
        }

        .social-link:hover {
            color: var(--pro-gold);
        }

        .text-gold { color: var(--pro-gold); }

        /* --- MAIN HEADER --- */
        #header-pro {
            background: #fff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.06);
            border-bottom: 1px solid #eee;
        }

        /* Logo Area */
        .logo-img {
            height: 90px;
            width: auto;
        }

        /* Navigation Links */
        .nav-link-pro {
            text-decoration: none;
            color: var(--pro-brown);
            font-family: var(--font-body);
            font-weight: 500;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0 18px;
            padding: 10px 0;
            position: relative;
            transition: color 0.3s ease;
        }

        /* Subtle Underline Animation */
        .nav-link-pro::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 5px;
            left: 0;
            background-color: var(--pro-gold);
            transition: width 0.3s ease;
        }

        .nav-link-pro:hover, 
        .nav-link-pro.active {
            color: var(--pro-gold);
        }

        .nav-link-pro:hover::after,
        .nav-link-pro.active::after {
            width: 100%;
        }

        /* Professional Button */
        .btn-consult-pro {
            background: transparent;
            color: var(--pro-brown);
            border: 2px solid var(--pro-brown);
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 10px 25px;
            border-radius: 0; 
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .btn-consult-pro:hover {
            background: var(--pro-brown);
            color: #fff;
            border-color: var(--pro-brown);
        }

        /* Mobile Toggle (Hamburger) */
        .mobile-toggle {
            background: none;
            border: none;
            padding: 0;
            width: 30px;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .mobile-toggle .bar {
            width: 100%;
            height: 3px;
            background-color: var(--pro-brown);
            border-radius: 2px;
        }

        /* --- MOBILE MENU --- */
        .bg-dark-pro {
            background-color: var(--pro-dark);
        }

        .mobile-nav-list li {
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .mobile-nav-list a {
            display: block;
            color: #fff;
            text-decoration: none;
            font-family: var(--font-body);
            padding: 15px 20px;
            font-size: 1rem;
            transition: 0.3s;
        }

        .mobile-nav-list a:hover {
            background: rgba(197, 160, 101, 0.1); 
            color: var(--pro-gold);
            padding-left: 25px;
        }

        @media (max-width: 991px) {
            .btn-consult-pro {
                font-size: 0.75rem;
                padding: 8px 15px;
            }
        }

        /* --- HERO SLIDER --- */
        #hero-slider {
            height: 85vh; 
            min-height: 600px;
            background: #000;
        }

        .swiper {
            width: 100%;
            height: 100%;
        }

        .slide-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-size: cover;
            background-position: center;
            transform: scale(1);
            transition: transform 8s ease;
        }

        .swiper-slide-active .slide-bg {
            transform: scale(1.15); 
        }

        .slide-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(90deg, var(--dark-overlay) 0%, rgba(0,0,0,0.3) 100%);
            z-index: 1;
        }

        .font-playfair { font-family: 'Playfair Display', serif; }
        .font-montserrat { font-family: 'Montserrat', sans-serif; }
        .text-gold { color: var(--gold); }

        .badge-gold {
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
            padding: 8px 16px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            display: inline-block;
            border-radius: 2px;
        }

        /* Animations */
        .animate-text {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .swiper-slide-active .animate-text {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-1 { transition-delay: 0.2s; }
        .delay-2 { transition-delay: 0.4s; }
        .delay-3 { transition-delay: 0.6s; }
        .delay-4 { animation-delay: 0.8s; }

        .btn-gold-solid {
            background-color: var(--gold);
            color: #000;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid var(--gold);
            transition: 0.3s;
        }

        .btn-gold-solid:hover {
            background-color: transparent;
            color: var(--gold);
        }

        .btn-outline-light {
            padding: 12px 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 4px;
        }

        .btn-outline-light:hover {
            background-color: #fff;
            color: #000;
            border-color: #fff;
        }

        .custom-nav {
            color: var(--gold);
            width: 50px;
            height: 50px;
            background: rgba(0,0,0,0.5);
            border-radius: 50%;
            backdrop-filter: blur(5px);
        }

        .custom-nav:hover {
            background: var(--gold);
            color: #000;
        }

        .custom-pagination .swiper-pagination-bullet {
            background: #fff;
            opacity: 0.5;
            width: 10px;
            height: 10px;
        }

        .custom-pagination .swiper-pagination-bullet-active {
            background: var(--gold);
            opacity: 1;
            width: 30px; 
            border-radius: 5px;
        }

        @media (max-width: 768px) {
            #hero-slider { height: 70vh; }
            .display-3 { font-size: 2.5rem; }
            .lead { font-size: 1rem; }
            .btn { padding: 10px 20px; font-size: 0.85rem; }
        }

        /* --- ABOUT SECTION --- */
        .text-dark-brown { color: var(--color-brown); }

        .creative-content-block {
            background: #fff;
            background-image: radial-gradient(var(--color-brown) 0.5px, transparent 0.5px);
            background-size: 30px 30px;
            background-color: #fff;
        }

        .text-gold-highlight {
            color: var(--color-gold);
            position: relative;
            display: inline-block;
        }

        .section-line {
            width: 60px;
            height: 3px;
            background: var(--color-gold);
        }

        .text-muted {
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .creative-image-wrap {
            position: relative;
            padding: 15px; 
            transition: all 0.5s ease;
        }

        .main-image {
            position: relative;
            z-index: 2;
            border-radius: 8px;
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .image-offset-border {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 3px solid var(--color-gold);
            border-radius: 8px;
            z-index: 1;
            opacity: 0.6;
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .creative-image-wrap.right-orient .image-offset-border {
            top: auto; bottom: 0;
            left: auto; right: 0;
        }

        .creative-image-wrap:hover .main-image {
            transform: scale(1.03) translateY(-10px); 
            box-shadow: 0 20px 40px rgba(54, 36, 26, 0.2) !important;
        }

        .creative-image-wrap:hover .image-offset-border {
            transform: translate(15px, 15px); 
            opacity: 1;
            border-color: var(--color-brown);
        }
        .creative-image-wrap.right-orient:hover .image-offset-border {
            transform: translate(-15px, -15px); 
        }

        .premium-text-link {
            color: var(--color-brown);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            position: relative;
            padding-bottom: 5px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }

        .premium-text-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 2px;
            background: var(--color-gold);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .premium-text-link:hover {
            color: var(--color-gold);
        }

        .premium-text-link:hover::after {
            width: 100%;
        }

        .premium-text-link:hover i {
            transform: translateX(10px); 
        }

        /* On-Load Animations */
        .animate-fade-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUpEffect 0.8s ease-out forwards;
        }

        @keyframes fadeUpEffect {
            to { opacity: 1; transform: translateY(0); }
        }

        .animate-pop-in {
            opacity: 0;
            transform: scale(0.9);
            animation: popInEffect 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
        }

        @keyframes popInEffect {
            to { opacity: 1; transform: scale(1); }
        }

        @media (max-width: 991px) {
            .creative-text-wrap { text-align: center; }
            .section-line { margin: 0 auto 1rem auto; }
            .creative-image-wrap:hover .main-image { transform: none; }
            .creative-image-wrap:hover .image-offset-border { transform: none; }
        }

        /* --- SERVICES SECTION --- */
        #detective-services-full {
            background-color: var(--bg-cream);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .section-title { color: var(--primary-dark); }

        .highlight {
            color: var(--accent-gold);
            font-style: italic;
        }

        .divider {
            height: 4px;
            width: 60px;
            background: var(--accent-gold);
            border-radius: 2px;
        }

        .tracking-wide {
            letter-spacing: 2px;
            font-size: 0.8rem;
        }

        .service-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 20px rgba(54, 36, 26, 0.05); 
            border-bottom: 4px solid var(--primary-dark); 
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(54, 36, 26, 0.2); 
            border-bottom-color: var(--accent-gold);
        }

        .img-wrapper {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .service-card:hover .img-wrapper img {
            transform: scale(1.1); 
        }

        .overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(54, 36, 26, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover .overlay { opacity: 1; }

        .icon-box {
            font-size: 2rem;
            color: var(--accent-gold);
            border: 2px solid var(--accent-gold);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: scale(0);
            transition: transform 0.4s 0.1s ease;
        }

        .service-card:hover .icon-box { transform: scale(1); }

        .card-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            text-align: center;
        }

        .card-title {
            font-weight: 800;
            color: var(--primary-dark);
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            letter-spacing: 0.5px;
        }

        .card-text {
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .action-buttons {
            margin-top: auto; 
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .btn-custom {
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            padding: 8px 20px;
            transition: all 0.3s ease;
            border: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-call {
            background: var(--primary-dark);
            color: var(--white);
            box-shadow: 0 4px 10px rgba(54, 36, 26, 0.3);
        }

        .btn-call:hover {
            background: var(--primary-light);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(54, 36, 26, 0.4);
        }

        .btn-whatsapp {
            background: var(--whatsapp-green);
            color: var(--white);
            box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
        }

        .btn-whatsapp:hover {
            background: #1ebc57;
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
        }

        /* --- WHY CHOOSE PREMIUM --- */
        .why-choose-premium {
            background-color: var(--color-bg);
            overflow: hidden;
            font-family: 'Montserrat', sans-serif;
        }

        .bg-shape-decoration {
            position: absolute;
            top: -10%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(197, 160, 101, 0.05) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .sub-title {
            color: var(--color-gold);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            display: block;
            margin-bottom: 10px;
        }
        .text-highlight {
            position: relative;
            z-index: 1;
        }
        .text-highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: var(--color-gold-light);
            z-index: -1;
            opacity: 0.7;
        }

        .image-composition {
            position: relative;
            padding: 20px;
        }

        .pattern-dots {
            position: absolute;
            top: 0;
            left: 0;
            width: 100px;
            height: 100px;
            background-image: radial-gradient(var(--color-gold) 2px, transparent 2px);
            background-size: 10px 10px;
            opacity: 0.5;
            z-index: 0;
        }

        .img-frame {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(54, 36, 26, 0.15);
            z-index: 1;
            border: 1px solid rgba(255,255,255,0.5);
        }

        .main-img {
            width: 100%;
            transition: transform 0.7s ease;
        }

        .image-composition:hover .main-img {
            transform: scale(1.05);
        }

        .floating-badge {
            position: absolute;
            bottom: 30px;
            right: -20px;
            background: #fff;
            padding: 15px 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 2;
            animation: floatBadge 4s ease-in-out infinite;
        }

        .badge-icon-circle {
            width: 50px;
            height: 50px;
            background: var(--color-dark);
            color: var(--color-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .badge-content .years {
            display: block;
            font-weight: 800;
            font-size: 1.5rem;
            line-height: 1;
            color: var(--color-dark);
        }

        .badge-content .label {
            font-size: 0.7rem;
            text-transform: uppercase;
            color: #888;
            font-weight: 600;
        }

        @keyframes floatBadge {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .feature-card {
            background: #fff;
            padding: 15px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 15px;
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(197, 160, 101, 0.15);
            border-color: var(--color-gold);
        }

        .feature-card .icon-box {
            width: 45px;
            height: 45px;
            background: var(--color-gold-light);
            color: var(--color-dark);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            transform: none;
        }

        .feature-card:hover .icon-box {
            background: var(--color-dark);
            color: var(--color-gold);
        }

        .text-box h6 {
            margin: 0;
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--color-dark);
        }

        .text-box small {
            color: #888;
            font-size: 0.8rem;
        }

        .btn-call-premium {
            background: var(--color-dark);
            color: #fff;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            border: 2px solid var(--color-dark);
            text-decoration: none;
        }

        .btn-call-premium:hover {
            background: transparent;
            color: var(--color-dark);
        }

        .btn-whatsapp-premium {
            background: #fff;
            color: #25D366;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid #25D366;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-whatsapp-premium:hover {
            background: #25D366;
            color: #fff;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
        }

        @media (max-width: 991px) {
            .floating-badge {
                right: 10px;
                bottom: 10px;
                padding: 10px 15px;
            }
            .badge-icon-circle {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            .feature-card { padding: 12px; }
        }

        /* --- TRUST FEATURES --- */
        .ls-2 { letter-spacing: 2px; }

        #trust-features {
            background-color: var(--bg-section);
            background-image: radial-gradient(#36241a 0.5px, transparent 0.5px);
            background-size: 30px 30px;
        }

        .divider-gold {
            height: 3px;
            width: 60px;
            background: var(--primary-gold);
        }

        .trust-card {
            background: #fff; 
            border-radius: 12px;
            padding: 35px 25px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            z-index: 1;
        }

        .trust-card:hover {
            background: var(--primary-dark);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(54, 36, 26, 0.25);
            border-color: var(--primary-dark);
        }

        .card-number {
            position: absolute;
            top: -15px;
            right: -5px;
            font-size: 5rem;
            font-weight: 900;
            color: #f0f0f0; 
            opacity: 0.5;
            z-index: -1;
            font-family: 'Playfair Display', serif;
            transition: all 0.4s ease;
        }

        .trust-card:hover .card-number {
            color: rgba(255, 255, 255, 0.05); 
            transform: scale(1.2);
        }

        .trust-card .icon-wrapper {
            width: 60px;
            height: 60px;
            background: var(--primary-dark);
            color: var(--primary-gold);
            border-radius: 50%; 
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(54, 36, 26, 0.2);
        }

        .trust-card:hover .icon-wrapper {
            background: var(--primary-gold);
            color: var(--primary-dark);
            transform: rotateY(360deg);
        }

        .trust-card .card-title {
            font-family: 'Playfair Display', serif;
            color: var(--primary-dark);
            font-weight: 700;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .trust-card .card-text {
            font-family: 'Montserrat', sans-serif;
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            transition: color 0.3s ease;
        }

        .trust-card:hover .card-title { color: #fff; }
        .trust-card:hover .card-text { color: rgba(255, 255, 255, 0.8); }

        /* --- CONTACT FEATURE SECTION --- */
        .ls-1 { letter-spacing: 1px; }

        .contact-feature-section {
            background-color: var(--section-bg);
            font-family: 'Montserrat', sans-serif;
        }

        .bg-texture {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: radial-gradient(#e0dcd5 1px, transparent 1px);
            background-size: 20px 20px;
            opacity: 0.5;
            z-index: 1;
        }

        .contact-card-wrapper {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(54, 36, 26, 0.1);
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .card-header-custom {
            background-color: var(--primary-dark);
            padding: 20px;
            text-align: center;
            border-bottom: 4px solid var(--primary-gold);
        }

        .card-body-custom {
            padding: 30px;
        }

        .confidential-badge {
            position: absolute;
            top: 15px;
            right: -25px;
            background: #d9534f;
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 5px 30px;
            transform: rotate(45deg);
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            z-index: 10;
            letter-spacing: 1px;
        }

        .custom-input-group .input-group-text {
            background: #f8f9fa;
            border-right: none;
            color: var(--primary-dark);
            border-color: #ddd;
        }

        .custom-input-group .form-control {
            border-left: none;
            border-color: #ddd;
            background: #f8f9fa;
            box-shadow: none;
            font-size: 14px;
        }

        .custom-input-group .form-control:focus {
            background: #fff;
            border-color: var(--primary-gold);
        }

        .custom-input-group:focus-within .input-group-text {
            background: #fff;
            border-color: var(--primary-gold);
            color: var(--primary-gold);
        }

        .btn-submit-custom {
            background: linear-gradient(135deg, var(--primary-dark), #4a3328);
            color: #fff;
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .btn-submit-custom:hover {
            background: linear-gradient(135deg, var(--primary-gold), #b08d55);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(197, 160, 101, 0.4);
        }

        .feature-list-item {
            display: flex;
            align-items: center;
            background: #fff;
            padding: 12px 15px;
            border-radius: 8px;
            border-left: 3px solid var(--primary-gold);
            box-shadow: 0 2px 5px rgba(0,0,0,0.03);
            font-size: 0.9rem;
            font-weight: 500;
            color: #444;
            transition: transform 0.3s ease;
        }

        .feature-list-item:hover {
            transform: translateX(5px);
        }

        .btn-primary-custom {
            background-color: var(--primary-dark);
            color: #fff;
            border: 1px solid var(--primary-dark);
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
        }

        .btn-primary-custom:hover {
            background-color: #24160F;
            color: var(--primary-gold);
        }

        .btn-whatsapp-custom {
            background-color: #25D366;
            color: #fff;
            border: 1px solid #25D366;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
        }

        .btn-whatsapp-custom:hover {
            background-color: #1ebc57;
            color: #fff;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }

        /* --- FAMOUS / PREMIUM SECTION --- */
        #why-famous-premium {
            background-color: var(--fame-dark);
            font-family: 'Montserrat', sans-serif;
            overflow: hidden;
        }

        .bg-dark-texture {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: radial-gradient(rgba(197, 160, 101, 0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            z-index: 1;
        }

        .divider-center {
            width: 60px;
            height: 3px;
            background: var(--fame-gold);
            border-radius: 2px;
        }

        .fame-card {
            background: var(--fame-card-bg);
            padding: 30px 20px;
            border-radius: 12px;
            text-align: center;
            position: relative;
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .fame-card:hover {
            transform: translateY(-10px);
            border-color: var(--fame-gold);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .hover-glow {
            position: absolute;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(197, 160, 101, 0.2) 0%, transparent 70%);
            top: 50%; left: 50%;
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0.5s ease;
            pointer-events: none;
        }

        .fame-card:hover .hover-glow {
            transform: translate(-50%, -50%) scale(2.5);
        }

        .fame-icon {
            font-size: 2.5rem;
            color: var(--fame-gold);
            margin-bottom: 20px;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .fame-card:hover .fame-icon {
            transform: scale(1.2);
            color: #fff;
        }

        .fame-number {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 2rem;
            color: #fff;
            margin-bottom: 5px;
        }

        .fame-title {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        .highlight-card {
            background: linear-gradient(145deg, #362921, #2C221C);
            border: 1px solid rgba(197, 160, 101, 0.3);
        }

        /* --- FOOTER --- */
        #footer {
            background: linear-gradient(135deg, #36241A 0%, #2c1e15 100%);
            position: relative;
            overflow: hidden;
        }

        #footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #F0A81A, #8B7355, #F0A81A);
        }

        .footer-logo {
            position: relative;
            display: inline-block;
        }

        .footer-logo:hover .logo-img {
            transform: scale(1.05);
        }

        .logo-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 60px;
            background: rgba(240, 168, 26, 0.1);
            filter: blur(20px);
            border-radius: 50%;
            z-index: 1;
        }

        .footer-about {
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .trust-badges {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            background: rgba(240, 168, 26, 0.1);
            padding: 8px 12px;
            border-radius: 20px;
            border: 1px solid rgba(240, 168, 26, 0.3);
            font-size: 12px;
            transition: all 0.3s ease;
        }

        .trust-badge:hover {
            background: rgba(240, 168, 26, 0.2);
            transform: translateY(-2px);
        }

        .trust-badge i {
            color: #F0A81A;
            margin-right: 5px;
            font-size: 14px;
        }

        .footer-section-title {
            color: #F0A81A !important;
            font-weight: 700;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: #F0A81A;
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
            transition: transform 0.3s ease;
        }

        .footer-links li:hover {
            transform: translateX(5px);
        }

        .footer-links a {
            color: #d8d1ca;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-links a:hover {
            color: #F0A81A;
            transform: translateX(5px);
        }

        .footer-links i {
            font-size: 10px;
            color: #F0A81A;
            transition: transform 0.3s ease;
        }

        .footer-links a:hover i {
            transform: rotate(90deg);
        }

        .footer-contact {
            list-style: none;
            padding: 0;
        }

        .footer-contact li {
            margin-bottom: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            padding: 10px;
            border-radius: 8px;
        }

        .contact-item:hover {
            background: rgba(240, 168, 26, 0.1);
            transform: translateX(5px);
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(240, 168, 26, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            background: #F0A81A;
            transform: scale(1.1);
        }

        .contact-icon i {
            color: #F0A81A;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-icon i {
            color: #36241A;
        }

        .contact-text {
            display: flex;
            flex-direction: column;
        }

        .contact-label {
            font-size: 12px;
            color: #F0A81A;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact-value {
            font-size: 14px;
            color: #fff;
            font-weight: 500;
        }

        .social-icons {
            position: relative;
        }

        .footer-social {
            display: inline-flex;
            width: 45px;
            height: 45px;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            background: rgba(44, 30, 21, 0.8);
            color: #fff;
            margin-right: 12px;
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }

        .footer-social::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .footer-social:hover::before {
            left: 100%;
        }

        .footer-social:hover {
            background: #F0A81A;
            color: #36241A;
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 5px 15px rgba(240, 168, 26, 0.4);
        }

        .social-tooltip {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            background: #F0A81A;
            color: #36241A;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .footer-social:hover .social-tooltip {
            opacity: 1;
            visibility: visible;
            bottom: -35px;
        }

        .map-container {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }

        .map-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        }

        .map-overlay {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(240, 168, 26, 0.9);
            color: #36241A;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .footer-bottom {
            position: relative;
            background: rgba(44, 30, 21, 0.8);
            margin-top: 2rem !important;
        }

        .footer-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .btn-emergency {
            background: #dc3545;
            color: white;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid #dc3545;
        }

        .btn-emergency:hover {
            background: transparent;
            color: #dc3545;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
        }

        .copyright {
            font-size: 14px;
            color: #d8d1ca;
        }

        .policy-link {
            color: #F0A81A;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .policy-link:hover {
            color: #fff;
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .footer-logo { text-align: center; display: block; }
            .trust-badges { justify-content: center; }
            .social-icons { justify-content: center; }
            .footer-cta { flex-direction: column; text-align: center; }
            .map-container { margin-top: 1rem; }
        }

        @media (max-width: 576px) {
            .footer-social { width: 40px; height: 40px; margin-right: 8px; font-size: 16px; }
            .contact-item { flex-direction: column; text-align: center; padding: 15px 10px; }
            .contact-icon { margin-right: 0; margin-bottom: 10px; }
        }