  /* ==================== CSS RESET & BASE ==================== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --background: #151239;
            --foreground: #f5f0e8;
            --card: #0d0b26;
            --card-foreground: #f5f0e8;
            --primary: #f1592a;
            --primary-light: #d4b54a;
            --primary-dark: #9a7a1a;
            --primary-foreground: #0d0d0d;
            --secondary: #151239;
            --secondary-foreground: #e6e0d6;
            --muted: #262626;
            --muted-foreground: #999999;
            --border: #2e2e2e;
            --destructive: #dc2626;
            --whatsapp: #25D366;
            --radius: 0.5rem;
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;
            --gradient-gold: linear-gradient(135deg, #f1592a, #89280a);
            --shadow-gold: 0 4px 30px rgba(201, 162, 39, 0.2);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--background);
            color: var(--foreground);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
        }

        a {
            text-decoration: none;
            color: inherit;
        }
.navbar-logo img{width:65px;}
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
        }

        ul {
            list-style: none;
        }

        /* ==================== UTILITY CLASSES ==================== */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        @media (min-width: 768px) {
            .container {
                padding: 0 2rem;
            }
        }

        .section-padding {
            padding: 5rem 1rem;
        }

        @media (min-width: 768px) {
            .section-padding {
                padding: 7rem 2rem;
            }
        }

        .text-gradient-gold {
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .bg-gradient-gold {
            background: var(--gradient-gold);
        }

        .glass-card {
            /*background: rgba(20, 20, 20, 0.8);*/
            backdrop-filter: blur(10px);
            border: 1px solid rgba(46, 46, 46, 0.5);
            border-radius: var(--radius);
        }

        .gold-border {
            border: 1px solid rgba(201, 162, 39, 0.3);
            transition: border-color 0.3s ease;
        }

        .gold-border:hover {
            border-color: rgba(201, 162, 39, 0.6);
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: var(--gradient-gold);
            color: var(--primary-foreground);
            padding: 1rem 2rem;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            opacity: 0.9;
            box-shadow: var(--shadow-gold);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            border: 1px solid rgba(245, 240, 232, 0.3);
            color: var(--foreground);
            padding: 1rem 2rem;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-label {
            color: var(--primary);
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-size: 0.75rem;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        @media (min-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
        }

        @media (min-width: 1024px) {
            .section-title {
                font-size: 3rem;
            }
        }

        .section-desc {
            color: var(--muted-foreground);
            max-width: 42rem;
            margin: 0 auto;
        }

        /* ==================== ANIMATIONS ==================== */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes pulseGlow {
            0%, 100% { box-shadow: 0 0 20px rgba(201, 162, 39, 0.3); }
            50% { box-shadow: 0 0 40px rgba(201, 162, 39, 0.6); }
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(8px); }
        }

        .animate-fade-up {
            animation: fadeUp 0.8s ease-out forwards;
        }

        .animate-fade-in {
            animation: fadeIn 1s ease-out forwards;
        }

        .animate-scale-in {
            animation: scaleIn 0.6s ease-out forwards;
        }

        .animate-float {
            animation: float 3s ease-in-out infinite;
        }

        .animate-pulse-glow {
            animation: pulseGlow 2s ease-in-out infinite;
        }

        .hover-lift {
            transition: all 0.5s ease;
        }

        .hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        /* Scroll Animation Observer */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ==================== NAVBAR ==================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0 1rem;
            transition: all 0.5s ease;
        }

        @media (min-width: 768px) {
            .navbar {
                padding: 0 2rem;
            }
        }

        .navbar.scrolled {
            background: rgb(13 11 38);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .navbar-container {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 5rem;
        }

        .navbar-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background: white;
    padding: 1rem;
    border-radius: 10px;
        width: fit-content;
        }

        /* Updated Icon Style */
        .navbar-logo i {
            font-size: 2rem;
            color: var(--primary);
        }

        .navbar-logo span {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
        }

        .navbar-links {
            display: none;
            align-items: center;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .navbar-links {
                display: flex;
            }
        }

        .navbar-links a {
            color: rgba(245, 240, 232, 0.8);
            font-size: 0.875rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            transition: color 0.3s ease;
        }

        .navbar-links a:hover {
            color: var(--primary);
        }

        .navbar-cta {
            display: none;
        }

        @media (min-width: 768px) {
            .navbar-cta {
                display: block;
            }
        }

        .mobile-menu-btn {
            display: block;
            color: var(--foreground);
            font-size: 1.5rem; /* FontAwesome needs font-size, not width/height */
        }

        @media (min-width: 768px) {
            .mobile-menu-btn {
                display: none;
            }
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 5rem;
            left: 0;
            right: 0;
            background: rgba(13, 13, 13, 0.98);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            border-top: 1px solid var(--border);
        }

        .mobile-menu.open {
            display: block;
        }

        .mobile-menu a {
            display: block;
            padding: 0.75rem 0;
            color: rgba(245, 240, 232, 0.8);
            transition: color 0.3s ease;
        }

        .mobile-menu a:hover {
            color: var(--primary);
        }

        .mobile-menu .btn-primary {
            width: 100%;
            margin-top: 1rem;
        }

        /* ==================== HERO SECTION ==================== */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
        }

        .hero-swiper {
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: relative;
            height: 100%;
        }

        .hero-slide img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
        }

        .hero-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(13, 13, 13, 0.8) 0%, rgba(13, 13, 13, 0.4) 50%, transparent 100%);
        }

        .hero-content {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            z-index: 10;
        }

        .hero-text {
            max-width: 42rem;
        }

        .hero-label {
            color: var(--primary);
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1rem;
        }

        @media (min-width: 768px) {
            .hero-title {
                font-size: 3.5rem;
            }
        }

        @media (min-width: 1024px) {
            .hero-title {
                font-size: 4.5rem;
            }
        }

        .hero-subtitle {
            color: rgba(245, 240, 232, 0.7);
            font-size: 1.125rem;
            margin-bottom: 2rem;
        }

        @media (min-width: 768px) {
            .hero-subtitle {
                font-size: 1.25rem;
            }
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .hero-scroll {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: rgba(245, 240, 232, 0.6);
            z-index: 10;
        }

        .hero-scroll span {
            display: block;
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .hero-scroll i {
            animation: bounce 1.5s infinite;
            font-size: 1.5rem;
        }

        .swiper-pagination-bullet {
            background: var(--foreground) !important;
            opacity: 0.5 !important;
        }

        .swiper-pagination-bullet-active {
            background: var(--primary) !important;
            opacity: 1 !important;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: var(--primary) !important;
        }

        /* ==================== HIGHLIGHTS SECTION ==================== */
        .highlights {
            padding: 4rem 0;
            background: var(--card);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            overflow: hidden;
        }

        .highlights-track {
            display: flex;
            gap: 3rem;
            animation: scroll 30s linear infinite;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-shrink: 0;
        }

        .highlight-icon {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 50%;
            background: var(--gradient-gold);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .highlight-icon i {
            font-size: 1.75rem;
            color: var(--primary-foreground);
        }

        .highlight-value {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .highlight-label {
            color: var(--muted-foreground);
            font-size: 0.875rem;
        }

        /* ==================== ABOUT SECTION ==================== */
        .about {
            background: var(--background);
        }

        .about-grid {
            display: grid;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr 1fr;
                gap: 5rem;
            }
        }

        .about-image-wrapper {
            position: relative;
        }

        .about-image {
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
        }

        .about-image-border {
            position: absolute;
            bottom: -1.5rem;
            right: -1.5rem;
            width: 12rem;
            height: 12rem;
            border: 2px solid var(--primary);
            border-radius: var(--radius);
            z-index: -1;
        }

        .about-badge {
            position: absolute;
            top: -2rem;
            right: -2rem;
            width: 8rem;
            height: 8rem;
            background: var(--gradient-gold);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--primary-foreground);
            box-shadow: var(--shadow-lg);
        }

        .about-badge-value {
            font-family: var(--font-heading);
            font-size: 1.875rem;
            font-weight: 700;
        }

        .about-badge-label {
            font-size: 0.625rem;
            text-align: center;
        }

        .about-content h3 {
            color: var(--primary);
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-size: 0.75rem;
            margin-bottom: 1rem;
        }

        .about-content h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            .about-content h2 {
                font-size: 2.5rem;
            }
        }

        .about-content p {
            color: var(--muted-foreground);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .about-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .about-card {
            padding: 1.5rem;
        }

        .about-card h4 {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.75rem;
        }

        .about-card p {
            font-size: 0.875rem;
            margin-bottom: 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 5rem;
        }

        @media (min-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .stat-card {
            padding: 2rem;
            text-align: center;
        }

        .stat-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin: 0 auto 1rem;
            display: block;
        }

        .stat-value {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @media (min-width: 768px) {
            .stat-value {
                font-size: 2.5rem;
            }
        }

        .stat-label {
            color: var(--muted-foreground);
            font-size: 0.875rem;
            margin-top: 0.5rem;
        }

        /* ==================== SERVICES SECTION ==================== */
        .services {
            background: rgba(31, 31, 31, 0.3);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .service-card {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius);
            aspect-ratio: 4/5;
        }

        .service-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .service-card:hover img {
            transform: scale(1.1);
        }

        .service-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(13, 13, 13, 0.9) 100%);
        }

        .service-card-content {
            position: absolute;
            inset: 0;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .service-icon {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 50%;
            background: var(--gradient-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .service-icon i {
            font-size: 1.75rem;
            color: var(--primary-foreground);
        }

        .service-card h3 {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .service-card p {
            color: var(--muted-foreground);
            font-size: 0.875rem;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .service-card:hover p {
            opacity: 1;
        }

        /* ==================== GALLERY SECTION ==================== */
        .gallery {
            background: var(--background);
        }

        .gallery-filters {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .gallery-filter-btn {
            padding: 0.5rem 1.5rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
            background: var(--secondary);
            color: var(--foreground);
            transition: all 0.3s ease;
        }

        .gallery-filter-btn.active,
        .gallery-filter-btn:hover {
            background: var(--gradient-gold);
            color: var(--primary-foreground);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        @media (min-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .gallery-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius);
            cursor: pointer;
            aspect-ratio: 1;
        }

        .gallery-item.large {
            grid-column: span 2;
            grid-row: span 2;
        }

        .gallery-item img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item-overlay {
            position: absolute;
            inset: 0;
            background: rgba(13, 13, 13, 0);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .gallery-item:hover .gallery-item-overlay {
            background: rgba(13, 13, 13, 0.6);
        }

        .gallery-item-content {
            text-align: center;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }

        .gallery-item:hover .gallery-item-content {
            opacity: 1;
            transform: translateY(0);
        }

        .gallery-item-content span {
            color: var(--primary);
            font-size: 0.875rem;
            font-weight: 500;
        }

        .gallery-item-content h4 {
            font-family: var(--font-heading);
            font-size: 1.125rem;
        }

        .gallery-more {
            text-align: center;
            margin-top: 3rem;
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 2000;
            background: rgba(13, 13, 13, 0.95);
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .lightbox.open {
            display: flex;
        }

        .lightbox-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            background: var(--secondary);
            color: var(--foreground);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 1.5rem;
        }

        .lightbox-close:hover {
            background: var(--primary);
            color: var(--primary-foreground);
        }

        .lightbox img {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: var(--radius);
        }

        /* ==================== WHY CHOOSE US ==================== */
        .why-us {
            background: rgba(31, 31, 31, 0.3);
        }

        .why-us-grid {
            display: grid;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .why-us-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .why-us-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .why-us-card {
            padding: 2rem;
        }

        .why-us-card .icon-wrapper {
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            background: var(--gradient-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: box-shadow 0.3s ease;
        }

        .why-us-card:hover .icon-wrapper {
            animation: pulseGlow 2s ease-in-out infinite;
        }

        .why-us-card .icon-wrapper i {
            font-size: 2rem;
            color: var(--primary-foreground);
        }

        .why-us-card h3 {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .why-us-card p {
            color: var(--muted-foreground);
            line-height: 1.7;
        }

        /* ==================== TEAM SECTION ==================== */
        .team {
            background: var(--background);
        }

        .team-grid {
            display: grid;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .team-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .team-card {
            text-align: center;
        }

        .team-image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius);
            margin-bottom: 1.5rem;
        }

        .team-card img {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .team-card:hover img {
            transform: scale(1.1);
        }

        .team-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, var(--background) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .team-card:hover .team-overlay {
            opacity: 1;
        }

        .team-socials {
            position: absolute;
            bottom: 1rem;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            opacity: 0;
            transform: translateY(1rem);
            transition: all 0.3s ease;
        }

        .team-card:hover .team-socials {
            opacity: 1;
            transform: translateY(0);
        }

        .team-social-btn {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            background: var(--gradient-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-foreground);
            transition: opacity 0.3s ease;
        }

        .team-social-btn:hover {
            opacity: 0.8;
        }

        .team-social-btn i {
            font-size: 1.25rem;
        }

        .team-card h3 {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .team-card span {
            color: var(--primary);
            font-size: 0.875rem;
        }

        /* ==================== TESTIMONIALS ==================== */
        .testimonials {
            background: rgba(31, 31, 31, 0.3);
        }

        .testimonial-card {
            padding: 2rem;
            height: 100%;
            position: relative;
        }

        .testimonial-quote {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 2.5rem;
            color: rgba(201, 162, 39, 0.2);
        }

        .testimonial-stars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1rem;
        }

        .testimonial-stars i {
            font-size: 1.25rem;
            color: var(--primary);
        }

        .testimonial-text {
            color: var(--muted-foreground);
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            background: var(--gradient-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-foreground);
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.125rem;
        }

        .testimonial-info h4 {
            font-family: var(--font-heading);
            font-weight: 600;
        }

        .testimonial-info span {
            color: var(--primary);
            font-size: 0.875rem;
        }

        /* ==================== CTA SECTION ==================== */
        .cta {
            position: relative;
            padding: 8rem 1rem;
        }

        @media (min-width: 768px) {
            .cta {
                padding: 8rem 2rem;
            }
        }

        .cta-bg {
            position: absolute;
            inset: 0;
        }

        .cta-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cta-bg-overlay {
            position: absolute;
            inset: 0;
            background: rgba(13, 11, 38, 0.85);
        }

        .cta-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 48rem;
            margin: 0 auto;
        }

        .cta h3 {
            color: var(--primary);
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-size: 0.75rem;
            margin-bottom: 1rem;
        }

        .cta h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            .cta h2 {
                font-size: 2.5rem;
            }
        }

        @media (min-width: 1024px) {
            .cta h2 {
                font-size: 3rem;
            }
        }

        .cta p {
            color: var(--muted-foreground);
            font-size: 1.125rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        /* ==================== CONTACT SECTION ==================== */
        .contact {
            background: var(--background);
        }

        .contact-grid {
            display: grid;
            gap: 3rem;
        }

        @media (min-width: 1024px) {
            .contact-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .contact-info h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 2rem;
        }

        .contact-items {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .contact-item-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            background: var(--gradient-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-item-icon i {
            font-size: 1.25rem;
            color: var(--primary-foreground);
        }

        .contact-item h4 {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .contact-item p {
            color: var(--muted-foreground);
        }

        .whatsapp-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            width: 100%;
            background: var(--whatsapp);
            color: white;
            padding: 1rem 2rem;
            border-radius: 9999px;
            font-weight: 600;
            transition: opacity 0.3s ease;
        }

        .whatsapp-btn:hover {
            opacity: 0.9;
        }

        .whatsapp-btn i {
            font-size: 1.5rem;
        }

        .contact-form {
            padding: 2rem;
        }

        .form-row {
            display: grid;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            .form-row {
                grid-template-columns: 1fr 1fr;
            }
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            background: var(--secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 0.75rem 1rem;
            color: var(--foreground);
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--muted-foreground);
        }

        .form-group textarea {
            resize: none;
            min-height: 120px;
        }

        .form-group select {
            cursor: pointer;
        }

        .form-group select option {
            background: var(--background);
        }

        .form-submit {
            width: 100%;
        }

        .form-error {
            color: var(--destructive);
            font-size: 0.75rem;
            margin-top: 0.25rem;
        }

        /* ==================== FOOTER ==================== */
        .footer {
            background: var(--card);
            border-top: 1px solid var(--border);
        }

        .footer-content {
            padding: 4rem 0;
        }

        .footer-grid {
            display: grid;
            gap: 3rem;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1.5fr;
            }
        }

        .footer-brand p {
            color: var(--muted-foreground);
            margin: 1.5rem 0;
            line-height: 1.7;
        }

        .footer-socials {
            display: flex;
            gap: 1rem;
        }

        .footer-social {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--foreground);
            transition: all 0.3s ease;
        }

        .footer-social:hover {
            background: var(--primary);
            color: var(--primary-foreground);
        }

        .footer-social i {
            font-size: 1.25rem;
        }

        .footer-section h4 {
            font-family: var(--font-heading);
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-links a {
            color: var(--muted-foreground);
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-hours li {
            display: flex;
            justify-content: space-between;
            color: var(--muted-foreground);
            margin-bottom: 0.75rem;
        }

        .footer-hours .highlight {
            color: var(--primary);
            font-weight: 500;
            margin-top: 1.5rem;
        }

        .footer-bottom {
            border-top: 1px solid var(--border);
            padding: 1.5rem 0;
        }

        .footer-bottom-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        @media (min-width: 768px) {
            .footer-bottom-content {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        .footer-bottom p {
            color: var(--muted-foreground);
            font-size: 0.875rem;
        }

        .back-to-top {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary);
            transition: opacity 0.3s ease;
        }

        .back-to-top:hover {
            opacity: 0.8;
        }

        .back-to-top i {
            font-size: 1rem;
        }

        /* ==================== WHATSAPP FLOATING BUTTON ==================== */
        .whatsapp-float {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            z-index: 1000;
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 50%;
            background: var(--whatsapp);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: transform 0.3s ease;
            animation: fadeIn 1s ease-out 1s forwards;
            opacity: 0;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        .whatsapp-float i {
            font-size: 1.75rem;
        }

        /* ==================== SCROLLBAR ==================== */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--background);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--muted);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }