/* ==================== CSS RESET & VARIABLES ==================== */
        :root {
            --primary-green: #e86a92;
            --secondary-green: #f2a1b8;
            --accent-gold: #e2b66f;
            --accent-gold-soft: #f1c27d;
            --dark-bg: #5a2a3a;
            --dark-bg-soft: #6d3448;
            --glass-bg: rgba(190, 145, 172, 0.75);
            --glass-border: rgba(232, 106, 146, 0.35);
            --text-light: #ffffff;
            --text-muted: #e0c7cf;
            --text-gold: #d9a441;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }  
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: var(--dark-bg);
            color: var(--text-light);
            overflow-x: hidden;
            position: relative;
        }
        
        /* ==================== ANIMATED BACKGROUND ==================== */
        .animated-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-soft) 50%, var(--dark-bg) 100%);
            overflow: hidden;
        }
        
        .bubble {
            position: absolute;
            bottom: -100px;
            background: radial-gradient(circle, rgba(84, 25, 67, 0.4), rgba(232, 106, 146, 0.2));
            border-radius: 50%;
            animation: rise linear infinite;
            box-shadow: 0 0 20px rgba(133, 8, 88, 0.3);
        }
        
        @keyframes rise {
            to {
                bottom: 110%;
                transform: translateX(50px) scale(1.2);
            }
        }
        
        /* ==================== GLASSMORPHISM UTILITY ==================== */
        .glass {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        
        /* ==================== SHIMMERING TEXT ANIMATION ==================== */
        @keyframes shimmer {
            0% { background-position: -500px; }
            100% { background-position: 500px; }
        }
        
        .shimmer-text {
            background: linear-gradient(90deg, var(--text-gold) 0%, var(--accent-gold) 40%, var(--text-light) 50%, var(--accent-gold) 60%, var(--text-gold) 100%);
            background-size: 500px 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s infinite linear;
        }
        
        /* ==================== NAVIGATION ==================== */
        .navbar {
            background: var(--glass-bg) !important;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 1px solid var(--glass-border);
            padding: 1rem 0;
            transition: var(--transition);
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--text-gold) !important;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }
        
        .navbar-nav .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            position: relative;
            transition: var(--transition);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 80%;
        }

        .navbar-logo {
            height: 65px;
            width: auto;
        }

        .brand-text {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--accent-gold);   
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .navbar-logo {
                height: 50px;
            }

            .brand-text {
                font-size: 1.1rem;
            }
        }

        .navbar-brand {
            text-decoration: none;
        }

        .navbar-logo {
            filter: drop-shadow(0 0 6px rgba(226, 182, 92, 0.5));
        }

        .brand-text {
            text-shadow: 0 0 8px rgba(226, 182, 92, 0.4);
        }

       /* Hide the default browser tooltip while keeping the title attribute */
a[title] {
    position: relative;
}

/* Create empty content on hover to suppress default tooltip */
a[title]:hover::after {
    content: none !important;
}

        
        /* ================= MOBILE BOTTOM NAV ================= */
        .mobile-nav {
            position: fixed; 
            bottom: 0;  
            left: 0; 
            width: 100%; 
            background: var(--glass-bg); 
            backdrop-filter: blur(15px);  
            border-top: 1px solid var(--glass-border); 
            padding: 6px 0; 
            z-index: 1000;  
            display: none;
        }


        .mobile-nav .row {
            display: flex;
            flex-wrap: nowrap;
        }

        .mobile-nav .col {
            flex: 1;
            padding: 0;
        }


        /* Mobile Nav */
        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 6px 0;
            text-decoration: none;
            font-size: 0.65rem;
            color: var(--text-light);
        }

        .mobile-nav-item i {
            font-size: 1rem;
            margin-bottom: 2px;
        }

        .mobile-nav-item span {
            line-height: 1;
            white-space: nowrap;
        }

        .mobile-nav-item.active {
            color: var(--accent-gold);
        }

        .mobile-nav-item.active i {
            transform: scale(1.15);
        }

        @media (hover: none) {
            .mobile-nav-item:hover {
                color: inherit;
            }
        }

        @media (hover: hover) {
            .mobile-nav-item:not(.active):hover {
                color: #fff;
            }
        }

        @media (max-width: 768px) {
            .mobile-nav {
                display: block;
            }

            body {
                padding-bottom: 70px;
            }
        }

        .mobile-nav-item {
            -webkit-tap-highlight-color: transparent; 
            touch-action: manipulation; 
        }
        
        /* ==================== HERO SECTION ==================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../img/banner.avif');
            background-position: center;  
            background-size: cover; 
            background-repeat: no-repeat;  
            opacity: 0.2;
            z-index: -1;
        }
        
        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: var(--text-light);
        }
        
        .cta-btn {
            background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
            color: var(--dark-bg);
            padding: 1rem 3rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
            text-decoration: none;
            display: inline-block;
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
            color: var(--dark-bg);
        }
        .cta-btn i{
            transition: transform 0.3s ease;
        }

        .cta-btn:hover i{
            transform: translateX(6px);
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1rem;
            }
        }
        
        /* ==================== SECTION STYLING ==================== */
        section {
            padding: 5rem 0;
            position: relative;
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            display: block;
            width: 100%;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
        }
        
        /* ==================== ABOUT SECTION ==================== */
        .about-content {
            padding: 2.5rem;
        }
        
        .about-content p {
            line-height: 1.8;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }
        
        /* ==================== MISSION VISION MOTTO ==================== */
        .mvm-card {
            padding: 2.5rem;
            text-align: center;
            transition: var(--transition);
            height: 100%;
        }
        
        .mvm-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-gold);
        }
        
        .mvm-icon {
            font-size: 3.5rem;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            display: inline-block;
            padding: 1.5rem;
            border: 3px solid var(--accent-gold);
            border-radius: 50%;
            transition: var(--transition);
            width: 120px;
            height: 120px;
            line-height: 90px;
        }
        
        .mvm-card:hover .mvm-icon {
            transform: rotate(360deg);
        }
        
        .mvm-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--text-gold);
        }
        
        /* ==================== PACKAGES ==================== */
        .package-card {
            padding: 0;
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
        }
        
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
        }
        
        .package-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .package-content {
            padding: 2rem;
        }
        
        .package-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-gold);
            font-weight: bold;
        }
        
        .package-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }

        .package-list-one {
   
            padding-left: 18px;
   
            margin: 15px 0;

        }


        .package-list-one li {
            font-size: 14px;
            margin-bottom: 6px;
            color: #ddd;
        }

        .package-list li {
            font-size: 14px;
            margin-bottom: 6px;
            color: var(--text-muted);
        }


        .package-img {
            height: 300px;
            width: 100%;
            object-fit: cover;
            border-radius: 12px 12px 0 0;
        }

        .package-card .carousel-control-prev,
        .package-card .carousel-control-next {
            width: 12%;
        }

        /* BLACK carousel arrows */
        .package-card .carousel-control-prev-icon,
        .package-card .carousel-control-next-icon {
            filter: invert(1);
        }
        
        .book-btn {
            background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
            color: var(--text-light);
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
        }
        
        .book-btn:hover {
            background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
            color: var(--dark-bg);
            transform: scale(1.05);
        }

        /* ==================== PACKAGES PAGE ==================== */

        #packages {
            padding: 80px 0;
            background: var(--dark-bg);
        }

        #packages .section-title {
            font-size: 2.5rem;
            color: var(--accent-gold); 
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
        }

        #packages .section-title::after {
            content: '';
            width: 60px;
            height: 3px;
            background: #f5d632;
            display: block;
            margin: 10px auto 0;
            border-radius: 2px;
        }

        #packages .package-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }

        #packages .package-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        }

        #packages .package-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        #packages .package-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        #packages .package-title {
            font-size: 1.5rem;
            color: var(--accent-gold);
            margin-bottom: 10px;
        }

        #packages .package-content p {
            color: var(--text-light);
            flex: 1;
        }

        #packages .package-price {
            font-weight: 700;
            color: var(--accent-gold);
            margin-top: 15px;
            font-size: 1.2rem;
        }

        #packages .book-btn {
            margin-top: 15px;
            background: linear-gradient(135deg,var(--secondary-green),var(--primary-green));
            border: none;
            color: #fff;
            padding: 10px 0;
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        #packages .book-btn:hover {
            background: #dc5c9e;
            box-shadow: 0 5px 20px rgba(255,255,255,0.3);
            transform: translateY(-3px);
        }

        /* ==================== CTA BUTTONS ==================== */
        #packages-cta {
            padding: 60px 20px;
            color: #fff;
        }


        #packages-cta .section-title {
            font-size: 2rem;
            color: #f5d632;
            margin-bottom: 15px;
        }

        #packages-cta p {
            font-size: 1.1rem;
            color: #e0e0b0;
        }

        #packages-cta .btn-gold {
            background: #f5d632;
            color: #1d3a1f;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }


        #packages-cta .btn-gold:hover {
            background: #fff176;
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(255, 255, 255, 0.4);
        }

        #packages-cta .btn-outline-gold {
            color: #f5d632;
            border: 2px solid #f5d632;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }


        #packages-cta .btn-outline-gold:hover {
            background: #f5d632;
            color: #1d3a1f;
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
        }

        #packages-intro {
            padding-top: 10px; 
            padding-bottom: 50px;
        }

        #packages .package-img {
            height: 300px;  
        }

        #packages .package-content {
            padding: 15px;  
        }

        #packages .package-title {
            font-size: 1.3rem;
        }

        .package-list li,
        .package-list-one li {
            font-size: 15px;
            margin-bottom: 4px;
        }
       
        /* ==================== WHY US ==================== */
        .why-item {
            text-align: center;
            padding: 2rem;
            transition: var(--transition);
        }
        
        .why-item:hover {
            transform: translateY(-5px);
        }
        
        .why-icon {
            font-size: 3rem;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }
        
        .why-item h4 {
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: var(--text-gold);
        }

        #why-us .why-item{    
            background: rgba(255,255,255,0.08);   
            border-radius: 18px;    
            padding: 30px 22px;    
            text-align: center;    
            display: flex;    
            flex-direction: column;    
            justify-content: space-between;   
            transition: all .4s ease;  
            height: 100%;
        }

        #why-us .why-item:hover{
            transform: translateY(-10px);
            box-shadow: 0 18px 40px rgba(0,0,0,.35);
        }

        #why-us .why-icon{
            font-size: 42px;
            color: var(--primary-gold);
            margin-bottom: 15px;
            transition: transform .3s ease;
        }

        #why-us .why-item:hover .why-icon{
            transform: scale(1.15) rotate(5deg);
        }

        .shine-outline{
            position: relative;
            border-radius: 18px;
        }

        .shine-outline::before{
            content: "";
            position: absolute;
            inset: -3px;  
            border-radius: inherit;
            border: 2px solid rgba(212,175,55,0.95);
            box-shadow:
            0 0 10px rgba(212,175,55,0.7),
            0 0 20px rgba(212,175,55,0.45);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .shine-outline:hover::before,
        .shine-outline:active::before{
            opacity: 1;
        }

        .shine-outline:hover::after,
        .shine-outline:active::after{
            opacity: 1;
            animation: shineMove 1.2s ease forwards;
        }

        @keyframes shineMove{
            from{ left: -100%; }
            to{ left: 120%; }
        }

        /* ===== Founder Section ===== */
        #founder{
            padding: 80px 0;
        }

        .founder-img-wrapper{
            display: inline-block;
            padding: 10px;
            border-radius: 50%;
        }

        .founder-img{
            width: 220px;
            height: 220px;
            object-fit: cover;
            border-radius: 50%;
        }

        .founder-content{
            padding: 30px;
            border-radius: 18px;
        }

        .founder-name{
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 5px;
        }

        .founder-role{
            color: var(--primary-gold);
            font-weight: 500;
            margin-bottom: 15px;
        }

        .founder-social a{
            margin-right: 12px;
            font-size: 1.2rem;
            color: #fff;
            transition: color 0.3s ease;
        }

        .founder-social a:hover{
            color: var(--primary-gold);
        }
   
        /* ==================== GALLERY ==================== */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            cursor: pointer;
            aspect-ratio: 1;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(225, 166, 205, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay i {
            font-size: 3rem;
            color: var(--accent-gold);
        }

        
        
        /* ==================== TEAM ==================== */
        .team-card {
            padding: 2rem;
            text-align: center;
            transition: var(--transition);
        }
        
        .team-card:hover {
            transform: translateY(-10px);
        }
        
        .team-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            border: 4px solid var(--accent-gold);
        }
        
        .team-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--text-gold);
        }
        
        .team-role {
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }

        .team-focus {
            font-size: 1rem;
            color: #ccc;
            margin-top: 6px;
        }
        
        .social-links a {
            color: var(--text-light);
            font-size: 1.2rem;
            margin: 0 0.5rem;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            color: var(--accent-gold);
        }
        
        /* ==================== TESTIMONIALS ==================== */
        .testimonial-card {
            padding: 2.5rem;
            text-align: center;
            margin: 1rem 0;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .testimonial-text {
            font-style: italic;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.8;
            flex-grow: 1;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--accent-gold);
        }
        
        .stars {
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }

        /* ==================== TESTIMONIAL AUTO SLIDER ==================== */
        .testimonials-slider {
            width: 100%;
            overflow: hidden;
            padding: 20px 0;
        }
        .testimonials-track {
            display: flex;
            width: fit-content;
            animation: testimonials-scroll 25s linear infinite;
        }

        .testimonials-track:hover {
            animation-play-state: paused;

        }


        #testimonials .row {
            flex-wrap: nowrap;
        }


        #testimonials .col-lg-4 {  
            flex: 0 0 380px;
        }


        /* Smooth auto scroll */

        @keyframes testimonials-scroll {
            0% {    
                transform: translateX(0);  
            }  
            100% {   
                transform: translateX(-1140px); 
            }
        }

        /* Responsive tuning */

        @media (max-width: 991px) {
            #testimonials .col-lg-4 {
                flex: 0 0 320px;
            }

            @keyframes testimonials-scroll {
                100% {
                    transform: translateX(-960px);
                }
            }
        }


        @media (max-width: 767px) {
            #testimonials .col-lg-4 {
                flex: 0 0 280px;
            }

            @keyframes testimonials-scroll {
                100% {
                    transform: translateX(-840px);
                }
            }
        }

        #testimonials {
            overflow: hidden;
        }

        .testimonials-slider {
            overflow: hidden;
            width: 100%;
        }

        .testimonials-track .row {
            flex-wrap: nowrap;
        }

        .testimonial-card {
            height: 100%;
        }

        @media (max-width: 768px) {
            .testimonials-track .row {
                gap: 15px;
            }

            .testimonials-track .col-lg-4,
            .testimonials-track .col-md-6 {
                flex: 0 0 85%;
                max-width: 85%;
            }

            .testimonial-card {
                padding: 20px;
            }

            .section-title {
                font-size: 22px;
                text-align: center;
            }

            .testimonial-text {
                font-size: 14px;
                line-height: 1.6;
            }

            .testimonial-author {
                font-size: 13px;
            }
        }
       
        /* ==================== FAQ ==================== */
        .faq-item {
            margin-bottom: 1rem;
        }
        
        .faq-question {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        
        .faq-question:hover {
            border-color: var(--accent-gold);
        }
        
        .faq-question h5 {
            margin: 0;
            font-weight: 600;
            color: var(--text-gold);
        }
        
        .faq-icon {
            color: var(--accent-gold);
            transition: var(--transition);
            font-size: 1.5rem;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 1.5rem;
        }
        
        .faq-answer.active {
            max-height: 500px;
            padding: 1.5rem;
        }
        
        /* ==================== CONTACT FORM ==================== */
        .contact-form {
            padding: 2.5rem;
        }

        .contact-info i {
            color: var(--primary-gold);
        }

        .map-container iframe {
            box-shadow: 0 10px 30px rgba(0,0,0,0.25);
        }

        @media (max-width: 991px) {
            .map-container iframe {
                height: 200px;
            }
        }
   
        .form-control, .form-select {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            color: var(--text-light);
            padding: 0.8rem 1rem;
            border-radius: 10px;
            margin-bottom: 1rem;
        }
        
        .form-control:focus, .form-select:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--accent-gold);
            color: var(--text-light);
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
        }
        
        .form-control::placeholder {
            color: rgba(232, 245, 233, 0.5);
        }
        
        .form-select option {
            background: var(--dark-bg);
            color: var(--text-light);
        }
        
        /* ==================== FOOTER ==================== */
        footer {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-top: 1px solid var(--glass-border);
            padding: 3rem 0 1rem;
        }
        
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            margin: 0 1rem;
            transition: var(--transition);
            display: block;
            margin: 0.5rem 0;
        }
        
        .footer-links a:hover {
            color: var(--accent-gold);
        }
        
        .developer-credit {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--glass-border);
            text-align: center;
        }
        
        .developer-credit a {
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .developer-credit a:hover {
            color: var(--text-gold);
        }
        
        /* ==================== FLOATING ACTION BUTTONS ==================== */
        .floating-actions {
            position: fixed;
            bottom: 90px;
            right: 20px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .float-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            text-decoration: none;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            transition: var(--transition);
        }
        
        .float-btn:hover {
            transform: scale(1.1);
            color: white;
        }
        
        .whatsapp-btn {
            background: #25D366;
        }
        
        .call-btn {
            background: var(--accent-gold);
        }
        
        @media (max-width: 768px) {
            .floating-actions {
                bottom: 80px;
                right: 15px;
            }
            .float-btn {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
        }
        
        /* ==================== LIGHTBOX ==================== */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }
        
        .lightbox.active {
            display: flex;
        }
        
        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 10px;
        }
        
        .lightbox-close {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 3rem;
            color: white;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .lightbox-close:hover {
            color: var(--accent-gold);
        }