
:root {
            --luxury-orange: #ec008c;
            --deep-black: #000000;
            --pure-white: #FFFFFF;
            --charcoal-gray: #1E1E1E;
            --soft-gray: #F5F5F5;
            --transition: all 0.4s ease-in-out;
        }

        .dark-mode {
            --luxury-orange: #EC008C;
            --deep-black: #FFFFFF;
            --pure-white: #1E1E1E;
            --charcoal-gray: #F5F5F5;
            --soft-gray: #121212;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--deep-black);
            background-color: var(--pure-white);
            letter-spacing: 0.5px;
            transition: var(--transition);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--luxury-orange);
        }

        h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 1.5rem;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            transition: var(--transition);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .dark-mode header {
            background-color: rgba(30, 30, 30, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        header.scrolled {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-img {
            height: 50px;
            width: auto;
            transition: var(--transition);
        }

        .logo:hover .logo-img {
            transform: scale(1.05);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav li {
            margin-left: 30px;
        }

        nav a {
            text-decoration: none;
            color: var(--deep-black);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .dark-mode nav a {
            color: var(--deep-black);
        }

        nav a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--luxury-orange);
            transition: var(--transition);
        }

        nav a:hover {
            color: var(--luxury-orange);
        }

        nav a:hover:after {
            width: 100%;
        }

        .theme-toggle {
            background: none;
            border: none;
            font-size: 1.2rem;
            color: var(--deep-black);
            cursor: pointer;
            transition: var(--transition);
            margin-left: 20px;
        }

        .dark-mode .theme-toggle {
            color: var(--deep-black);
        }

        .theme-toggle:hover {
            color: var(--luxury-orange);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--deep-black);
            cursor: pointer;
        }

        .dark-mode .mobile-menu-btn {
            color: var(--deep-black);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--pure-white);
            position: relative;
            animation: fadeIn 1.5s ease-out;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            animation: slideUp 1s ease-out 0.5s both;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            font-family: 'Montserrat', sans-serif;
        }

        .btn-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 0;
            text-decoration: none;
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
            transition: var(--transition);
            cursor: pointer;
            border: 2px solid transparent;
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--luxury-orange);
            color: var(--pure-white);
        }

        .btn-primary:hover {
            background-color: transparent;
            border-color: var(--luxury-orange);
            color: var(--luxury-orange);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--pure-white);
            border-color: var(--pure-white);
        }

        .btn-secondary:hover {
            background-color: var(--pure-white);
            color: var(--deep-black);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--pure-white);
            font-size: 1.5rem;
            animation: bounce 2s infinite;
        }

        /* Introduction Section */
        .intro {
            background-color: var(--soft-gray);
            transition: var(--transition);
        }

        .dark-mode .intro {
            background-color: var(--charcoal-gray);
        }

        .intro-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .intro-content {
            flex: 1;
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .intro-content.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .intro-media {
            flex: 1;
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .intro-media.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .intro-media img {
            width: 100%;
            border-radius: 5px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background-color: var(--pure-white);
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
        }

        .dark-mode .service-card {
            background-color: var(--charcoal-gray);
            color: var(--deep-black);
        }

        .service-card:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .service-card:hover:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 2px solid;
            border-image: linear-gradient(45deg, var(--luxury-orange), #ffb74d) 1;
            z-index: 1;
            pointer-events: none;
        }

        .service-img {
            height: 200px;
            overflow: hidden;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            margin-bottom: 10px;
            color: var(--deep-black);
        }

        .dark-mode .service-content h3 {
            color: var(--deep-black);
        }

        /* Projects Section */
        .projects {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1858&q=80') fixed center center/cover;
            color: var(--pure-white);
            text-align: center;
            position: relative;
        }

        .projects h2:after {
            background: var(--pure-white);
        }

        .projects-carousel {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 5px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-slide {
            min-width: 100%;
            position: relative;
        }

        .carousel-slide img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 20px;
            text-align: left;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .carousel-dot.active {
            background-color: var(--luxury-orange);
        }

        /* Testimonials Section */
        .testimonials {
            background-color: var(--charcoal-gray);
            color: var(--pure-white);
            transition: var(--transition);
        }

        .dark-mode .testimonials {
            background-color: var(--soft-gray);
            color: var(--deep-black);
        }

        .testimonials-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-slide {
            text-align: center;
            padding: 0 20px;
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            transition: opacity 0.5s ease;
        }

        .testimonial-slide.active {
            opacity: 1;
            position: relative;
        }

        .testimonial-icon {
            font-size: 2rem;
            color: var(--luxury-orange);
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 30px;
        }

        .testimonial-author {
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
        }

        /* CTA Section */
        .cta {
            background-color: var(--luxury-orange);
            color: var(--pure-white);
            text-align: center;
            padding: 100px 0;
        }

        .cta h2 {
            margin-bottom: 30px;
        }

        .cta h2:after {
            background: var(--pure-white);
        }

        .cta .btn {
            background-color: var(--pure-white);
            color: var(--luxury-orange);
        }

        .cta .btn:hover {
            background-color: transparent;
            color: var(--pure-white);
            border-color: var(--pure-white);
        }

        /* Footer */
        footer {
            background-color: var(--deep-black);
            color: var(--pure-white);
            padding: 60px 0 30px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--luxury-orange);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--luxury-orange);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--pure-white);
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--luxury-orange);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pure-white);
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 999;
            transition: var(--transition);
            animation: pulse 2s infinite;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { 
                opacity: 0;
                transform: translateY(50px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-10px) translateX(-50%);
            }
            60% {
                transform: translateY(-5px) translateX(-50%);
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .intro-container {
                flex-direction: column;
            }
            
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
           h1 {
    font-size: 1.5rem; /* Tight and subtle */
}

            
            h2 {
                font-size: 2rem;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--pure-white);
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                transition: var(--transition);
                pointer-events: none;
            }
            
            .dark-mode nav {
                background-color: var(--charcoal-gray);
            }
            
            nav.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }
            
            nav ul {
                flex-direction: column;
                padding: 20px;
            }
            
            nav li {
                margin: 10px 0;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
        }


        /* End of styles.css */





        /* ABOUT PAGE CSS FILES */
        :root {
            --luxury-orange: #EC008C;
            --deep-black: #000000;
            --pure-white: #FFFFFF;
            --charcoal-gray: #1E1E1E;
            --soft-gray: #F5F5F5;
            --transition: all 0.4s ease-in-out;
        }

        .dark-mode {
            --luxury-orange: #EC008C;
            --deep-black: #FFFFFF;
            --pure-white: #1E1E1E;
            --charcoal-gray: #F5F5F5;
            --soft-gray: #121212;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--deep-black);
            background-color: var(--pure-white);
            letter-spacing: 0.5px;
            transition: var(--transition);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 2rem;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--luxury-orange);
        }

        h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 1.5rem;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            transition: var(--transition);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .dark-mode header {
            background-color: rgba(30, 30, 30, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        header.scrolled {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-img {
            height: 50px;
            width: auto;
            transition: var(--transition);
        }

        .logo:hover .logo-img {
            transform: scale(1.05);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav li {
            margin-left: 30px;
        }

        nav a {
            text-decoration: none;
            color: var(--deep-black);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .dark-mode nav a {
            color: var(--deep-black);
        }

        nav a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--luxury-orange);
            transition: var(--transition);
        }

        nav a:hover {
            color: var(--luxury-orange);
        }

        nav a:hover:after {
            width: 100%;
        }

        .theme-toggle {
            background: none;
            border: none;
            font-size: 1.2rem;
            color: var(--deep-black);
            cursor: pointer;
            transition: var(--transition);
            margin-left: 20px;
        }

        .dark-mode .theme-toggle {
            color: var(--deep-black);
        }

        .theme-toggle:hover {
            color: var(--luxury-orange);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--deep-black);
            cursor: pointer;
        }

        .dark-mode .mobile-menu-btn {
            color: var(--deep-black);
        }

        /* Page Header */
        .page-header {
            height: 60vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--pure-white);
            margin-top: 80px;
        }

        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .page-header p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* About Intro */
        .about-intro {
            background-color: var(--soft-gray);
            transition: var(--transition);
        }

        .dark-mode .about-intro {
            background-color: var(--charcoal-gray);
        }

        .about-intro-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-intro-content {
            flex: 1;
        }

        .about-intro-media {
            flex: 1;
        }

        .about-intro-media img {
            width: 100%;
            border-radius: 5px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Timeline Section */
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--luxury-orange);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .timeline-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-item:nth-child(odd) {
            left: 0;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-content {
            padding: 20px 30px;
            background-color: var(--pure-white);
            position: relative;
            border-radius: 6px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .dark-mode .timeline-content {
            background-color: var(--charcoal-gray);
            color: var(--deep-black);
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .timeline-item:nth-child(odd) .timeline-content::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background-color: var(--pure-white);
            top: 22px;
            border-radius: 50%;
            z-index: 1;
            border: 4px solid var(--luxury-orange);
        }

        .timeline-item:nth-child(even) .timeline-content::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            left: -10px;
            background-color: var(--pure-white);
            top: 22px;
            border-radius: 50%;
            z-index: 1;
            border: 4px solid var(--luxury-orange);
        }

        .timeline-year {
            font-weight: bold;
            color: var(--luxury-orange);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        /* Values Section */
        .values {
            background-color: var(--soft-gray);
            transition: var(--transition);
        }

        .dark-mode .values {
            background-color: var(--charcoal-gray);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .value-card {
            background-color: var(--pure-white);
            padding: 40px 30px;
            text-align: center;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }

        .dark-mode .value-card {
            background-color: var(--charcoal-gray);
            color: var(--deep-black);
        }

        .value-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .value-icon {
            font-size: 2.5rem;
            color: var(--luxury-orange);
            margin-bottom: 20px;
        }

        /* Stats Section */
        .stats {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1858&q=80') fixed center center/cover;
            color: var(--pure-white);
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .stat-item {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .stat-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: var(--luxury-orange);
        }

        .stat-label {
            font-size: 1.2rem;
        }

        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .team-member {
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .team-member.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .team-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
            border: 3px solid var(--luxury-orange);
        }

        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        /* Focus taller portraits higher (show chest → head) */
        .team-img img.focus-top {
            object-position: center 5%;
        }

        .team-member:hover .team-img img {
            transform: scale(1.1);
        }

        .team-name {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .team-role {
            color: var(--luxury-orange);
            margin-bottom: 15px;
            font-weight: 500;
        }

        /* CTA Section */
        .cta {
            background-color: var(--luxury-orange);
            color: var(--pure-white);
            text-align: center;
            padding: 100px 0;
        }

        .cta h2 {
            margin-bottom: 30px;
        }

        .cta h2:after {
            background: var(--pure-white);
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 0;
            text-decoration: none;
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
            transition: var(--transition);
            cursor: pointer;
            border: 2px solid transparent;
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--pure-white);
            color: var(--luxury-orange);
        }

        .btn-primary:hover {
            background-color: transparent;
            color: var(--pure-white);
            border-color: var(--pure-white);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Footer */
        footer {
            background-color: var(--deep-black);
            color: var(--pure-white);
            padding: 60px 0 30px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--luxury-orange);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--luxury-orange);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--pure-white);
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--luxury-orange);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pure-white);
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 999;
            transition: var(--transition);
            animation: pulse 2s infinite;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        /* Animations */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .values-grid, .stats-grid, .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .about-intro-container {
                flex-direction: column;
            }
            
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
            
            .timeline-item:nth-child(odd) .timeline-content::after,
            .timeline-item:nth-child(even) .timeline-content::after {
                left: 21px;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--pure-white);
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                transition: var(--transition);
                pointer-events: none;
            }
            
            .dark-mode nav {
                background-color: var(--charcoal-gray);
            }
            
            nav.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }
            
            nav ul {
                flex-direction: column;
                padding: 20px;
            }
            
            nav li {
                margin: 10px 0;
            }
            
            .values-grid, .stats-grid, .team-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
        }

        /* End of styles.css */




        /* SERVICES PAGE CSS FILES */
        :root {
            --luxury-orange: #EC008C;
            --deep-black: #000000;
            --pure-white: #FFFFFF;
            --charcoal-gray: #1E1E1E;
            --soft-gray: #F5F5F5;
            --transition: all 0.4s ease-in-out;
        }

        .dark-mode {
            --luxury-orange: #EC008C;
            --deep-black: #FFFFFF;
            --pure-white: #1E1E1E;
            --charcoal-gray: #F5F5F5;
            --soft-gray: #121212;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--deep-black);
            background-color: var(--pure-white);
            letter-spacing: 0.5px;
            transition: var(--transition);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 3rem;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--luxury-orange);
        }

        h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 1.5rem;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            transition: var(--transition);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .dark-mode header {
            background-color: rgba(30, 30, 30, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        header.scrolled {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-img {
            height: 50px;
            width: auto;
            transition: var(--transition);
        }

        .logo:hover .logo-img {
            transform: scale(1.05);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav li {
            margin-left: 30px;
        }

        nav a {
            text-decoration: none;
            color: var(--deep-black);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .dark-mode nav a {
            color: var(--deep-black);
        }

        nav a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--luxury-orange);
            transition: var(--transition);
        }

        nav a:hover {
            color: var(--luxury-orange);
        }

        nav a:hover:after {
            width: 100%;
        }

        .theme-toggle {
            background: none;
            border: none;
            font-size: 1.2rem;
            color: var(--deep-black);
            cursor: pointer;
            transition: var(--transition);
            margin-left: 20px;
        }

        .dark-mode .theme-toggle {
            color: var(--deep-black);
        }

        .theme-toggle:hover {
            color: var(--luxury-orange);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--deep-black);
            cursor: pointer;
        }

        .dark-mode .mobile-menu-btn {
            color: var(--deep-black);
        }

        /* Page Header */
        .page-header {
            height: 60vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--pure-white);
            margin-top: 80px;
        }

        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .page-header p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Services Overview */
        .services-overview {
            background-color: var(--soft-gray);
            transition: var(--transition);
        }

        .dark-mode .services-overview {
            background-color: var(--charcoal-gray);
        }

        .services-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .service-card {
            background-color: var(--pure-white);
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
            opacity: 0;
            transform: translateY(30px);
        }

        .dark-mode .service-card {
            background-color: var(--charcoal-gray);
            color: var(--deep-black);
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-card:hover:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 2px solid;
            border-image: linear-gradient(45deg, var(--luxury-orange), #ffb74d) 1;
            z-index: 1;
            pointer-events: none;
        }

        .service-img {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background-color: var(--luxury-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pure-white);
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(10deg);
        }

        .service-content {
            padding: 30px;
        }

        .service-content h3 {
            margin-bottom: 15px;
            color: var(--deep-black);
            display: flex;
            align-items: center;
        }

        .dark-mode .service-content h3 {
            color: var(--deep-black);
        }

        .service-content p {
            margin-bottom: 20px;
        }

        .service-features {
            list-style: none;
            margin-bottom: 25px;
        }

        .service-features li {
            margin-bottom: 8px;
            padding-left: 25px;
            position: relative;
        }

        .service-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--luxury-orange);
            font-weight: bold;
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 0;
            text-decoration: none;
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
            transition: var(--transition);
            cursor: pointer;
            border: 2px solid transparent;
            font-size: 0.9rem;
        }

        .btn-outline {
            background-color: transparent;
            color: var(--luxury-orange);
            border-color: var(--luxury-orange);
        }

        .btn-outline:hover {
            background-color: var(--luxury-orange);
            color: var(--pure-white);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(244, 122, 31, 0.3);
        }

        /* Process Section */
        .process {
            background-color: var(--pure-white);
            transition: var(--transition);
        }

        .dark-mode .process {
            background-color: var(--charcoal-gray);
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .process-steps:before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: var(--soft-gray);
            z-index: 1;
        }

        .dark-mode .process-steps:before {
            background-color: var(--charcoal-gray);
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .process-step.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .step-number {
            width: 80px;
            height: 80px;
            background-color: var(--luxury-orange);
            color: var(--pure-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin: 0 auto 20px;
            position: relative;
            transition: var(--transition);
        }

        .process-step:hover .step-number {
            transform: scale(1.1);
            box-shadow: 0 10px 20px rgba(244, 122, 31, 0.3);
        }

        .step-content h3 {
            margin-bottom: 10px;
        }

        /* FAQ Section */
        .faq {
            background-color: var(--soft-gray);
            transition: var(--transition);
        }

        .dark-mode .faq {
            background-color: var(--charcoal-gray);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 15px;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .faq-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-question {
            background-color: var(--pure-white);
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .dark-mode .faq-question {
            background-color: var(--charcoal-gray);
            color: var(--deep-black);
        }

        .faq-question:hover {
            background-color: rgba(244, 122, 31, 0.05);
        }

        .faq-question h3 {
            margin: 0;
            font-size: 1.2rem;
        }

        .faq-icon {
            color: var(--luxury-orange);
            transition: var(--transition);
        }

        .faq-answer {
            background-color: var(--pure-white);
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .dark-mode .faq-answer {
            background-color: var(--charcoal-gray);
            color: var(--deep-black);
        }

        .faq-item.active .faq-answer {
            padding: 20px 25px;
            max-height: 500px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* CTA Section */
        .cta {
            background-color: var(--luxury-orange);
            color: var(--pure-white);
            text-align: center;
            padding: 100px 0;
        }

        .cta h2 {
            margin-bottom: 30px;
        }

        .cta h2:after {
            background: var(--pure-white);
        }

        .btn-primary {
            background-color: var(--pure-white);
            color: var(--luxury-orange);
        }

        .btn-primary:hover {
            background-color: transparent;
            color: var(--pure-white);
            border-color: var(--pure-white);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Footer */
        footer {
            background-color: var(--deep-black);
            color: var(--pure-white);
            padding: 60px 0 30px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--luxury-orange);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--luxury-orange);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--pure-white);
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--luxury-orange);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pure-white);
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 999;
            transition: var(--transition);
            animation: pulse 2s infinite;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        /* Animations */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .process-steps {
                flex-direction: column;
                gap: 40px;
            }
            
            .process-steps:before {
                display: none;
            }
            
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--pure-white);
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                transition: var(--transition);
                pointer-events: none;
            }
            
            .dark-mode nav {
                background-color: var(--charcoal-gray);
            }
            
            nav.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }
            
            nav ul {
                flex-direction: column;
                padding: 20px;
            }
            
            nav li {
                margin: 10px 0;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
        }


        /* End of services page CSS */





        /* PORTFOLIO PAGE  CSS FILES */
        :root {
            --luxury-orange: #EC008C;
            --deep-black: #000000;
            --pure-white: #FFFFFF;
            --charcoal-gray: #1E1E1E;
            --soft-gray: #F5F5F5;
            --transition: all 0.4s ease-in-out;
        }

        .dark-mode {
            --luxury-orange: #EC008C;
            --deep-black: #FFFFFF;
            --pure-white: #1E1E1E;
            --charcoal-gray: #F5F5F5;
            --soft-gray: #121212;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--deep-black);
            background-color: var(--pure-white);
            letter-spacing: 0.5px;
            transition: var(--transition);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 3rem;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--luxury-orange);
        }

        h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 1.5rem;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            transition: var(--transition);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .dark-mode header {
            background-color: rgba(30, 30, 30, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        header.scrolled {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-img {
            height: 50px;
            width: auto;
            transition: var(--transition);
        }

        .logo:hover .logo-img {
            transform: scale(1.05);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav li {
            margin-left: 30px;
        }

        nav a {
            text-decoration: none;
            color: var(--deep-black);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .dark-mode nav a {
            color: var(--deep-black);
        }

        nav a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--luxury-orange);
            transition: var(--transition);
        }

        nav a:hover {
            color: var(--luxury-orange);
        }

        nav a:hover:after {
            width: 100%;
        }

        .theme-toggle {
            background: none;
            border: none;
            font-size: 1.2rem;
            color: var(--deep-black);
            cursor: pointer;
            transition: var(--transition);
            margin-left: 20px;
        }

        .dark-mode .theme-toggle {
            color: var(--deep-black);
        }

        .theme-toggle:hover {
            color: var(--luxury-orange);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--deep-black);
            cursor: pointer;
        }

        .dark-mode .mobile-menu-btn {
            color: var(--deep-black);
        }

        /* Page Header */
        .page-header {
            height: 60vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1616486029423-aaa4789e8c9a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--pure-white);
            margin-top: 80px;
        }

        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .page-header p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Portfolio Intro */
        .portfolio-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
        }

        /* Filter Buttons */
        .filter-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
        }

        .filter-btn {
            padding: 12px 25px;
            background-color: transparent;
            border: 2px solid var(--luxury-orange);
            color: var(--luxury-orange);
            border-radius: 30px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-btn:hover, .filter-btn.active {
            background-color: var(--luxury-orange);
            color: var(--pure-white);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(244, 122, 31, 0.3);
        }

        /* Masonry Grid */
        .masonry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            grid-auto-rows: 10px;
            gap: 20px;
        }

        .portfolio-item {
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            opacity: 0;
            transform: translateY(30px);
            transition: var(--transition);
            grid-row-end: span 30;
        }

        .portfolio-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .portfolio-item.hidden {
            display: none;
        }

        .portfolio-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
            opacity: 0;
            transition: var(--transition);
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-item:hover .portfolio-img {
            transform: scale(1.05);
        }

        .portfolio-category {
            color: var(--luxury-orange);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .portfolio-title {
            color: var(--pure-white);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .portfolio-desc {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* Video Section */
        .video-section {
            background-color: var(--soft-gray);
            transition: var(--transition);
        }

        .dark-mode .video-section {
            background-color: var(--charcoal-gray);
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .video-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }

        .video-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .video-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .video-thumbnail {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background-color: var(--luxury-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pure-white);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .video-item:hover .video-play-btn {
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .video-content {
            padding: 20px;
            background-color: var(--pure-white);
        }

        .dark-mode .video-content {
            background-color: var(--charcoal-gray);
            color: var(--deep-black);
        }

        .video-content h3 {
            margin-bottom: 10px;
        }

        /* Lightbox */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .lightbox-img {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 5px;
        }

        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            background: none;
            border: none;
            color: var(--pure-white);
            font-size: 2rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .lightbox-close:hover {
            color: var(--luxury-orange);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--pure-white);
            font-size: 2.5rem;
            cursor: pointer;
            transition: var(--transition);
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-nav:hover {
            color: var(--luxury-orange);
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .lightbox-prev {
            left: -70px;
        }

        .lightbox-next {
            right: -70px;
        }

        .lightbox-caption {
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            text-align: center;
            color: var(--pure-white);
            padding: 10px;
        }

        /* CTA Section */
        .cta {
            background-color: var(--luxury-orange);
            color: var(--pure-white);
            text-align: center;
            padding: 100px 0;
        }

        .cta h2 {
            margin-bottom: 30px;
        }

        .cta h2:after {
            background: var(--pure-white);
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 0;
            text-decoration: none;
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
            transition: var(--transition);
            cursor: pointer;
            border: 2px solid transparent;
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--pure-white);
            color: var(--luxury-orange);
        }

        .btn-primary:hover {
            background-color: transparent;
            color: var(--pure-white);
            border-color: var(--pure-white);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Footer */
        footer {
            background-color: var(--deep-black);
            color: var(--pure-white);
            padding: 60px 0 30px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--luxury-orange);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--luxury-orange);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--pure-white);
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--luxury-orange);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pure-white);
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 999;
            transition: var(--transition);
            animation: pulse 2s infinite;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        /* Animations */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .masonry-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .video-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .lightbox-nav {
                position: static;
                transform: none;
                margin: 0 10px;
            }
            
            .lightbox-prev, .lightbox-next {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
            }
            
            .lightbox-prev {
                left: 10px;
            }
            
            .lightbox-next {
                right: 10px;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--pure-white);
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                transition: var(--transition);
                pointer-events: none;
            }
            
            .dark-mode nav {
                background-color: var(--charcoal-gray);
            }
            
            nav.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }
            
            nav ul {
                flex-direction: column;
                padding: 20px;
            }
            
            nav li {
                margin: 10px 0;
            }
            
            .masonry-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
        }

        /* End of portfolio page CSS */



        /* CONTACT PAGE CSS FILES */
        :root {
            --luxury-orange: #EC008C;
            --deep-black: #000000;
            --pure-white: #FFFFFF;
            --charcoal-gray: #1E1E1E;
            --soft-gray: #F5F5F5;
            --transition: all 0.4s ease-in-out;
        }

        .dark-mode {
            --luxury-orange: #EC008C;
            --deep-black: #FFFFFF;
            --pure-white: #1E1E1E;
            --charcoal-gray: #F5F5F5;
            --soft-gray: #121212;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--deep-black);
            background-color: var(--pure-white);
            letter-spacing: 0.5px;
            transition: var(--transition);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 3rem;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--luxury-orange);
        }

        h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 1.5rem;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            transition: var(--transition);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .dark-mode header {
            background-color: rgba(30, 30, 30, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        header.scrolled {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-img {
            height: 50px;
            width: auto;
            transition: var(--transition);
        }

        .logo:hover .logo-img {
            transform: scale(1.05);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav li {
            margin-left: 30px;
        }

        nav a {
            text-decoration: none;
            color: var(--deep-black);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .dark-mode nav a {
            color: var(--deep-black);
        }

        nav a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--luxury-orange);
            transition: var(--transition);
        }

        nav a:hover {
            color: var(--luxury-orange);
        }

        nav a:hover:after {
            width: 100%;
        }

        .theme-toggle {
            background: none;
            border: none;
            font-size: 1.2rem;
            color: var(--deep-black);
            cursor: pointer;
            transition: var(--transition);
            margin-left: 20px;
        }

        .dark-mode .theme-toggle {
            color: var(--deep-black);
        }

        .theme-toggle:hover {
            color: var(--luxury-orange);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--deep-black);
            cursor: pointer;
        }

        .dark-mode .mobile-menu-btn {
            color: var(--deep-black);
        }

        /* Page Header */
        .page-header {
            height: 60vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--pure-white);
            margin-top: 80px;
        }

        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .page-header p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Contact Section */
        .contact-section {
            background-color: var(--soft-gray);
            transition: var(--transition);
        }

        .dark-mode .contact-section {
            background-color: var(--charcoal-gray);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        /* Contact Info */
        .contact-info {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .contact-info.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .contact-info h2 {
            text-align: left;
            margin-bottom: 30px;
        }

        .contact-info h2:after {
            left: 0;
            transform: none;
        }

        .contact-desc {
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-bottom: 40px;
        }

        .contact-method {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: var(--luxury-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pure-white);
            font-size: 1.5rem;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .contact-method:hover .contact-icon {
            transform: scale(1.1);
            box-shadow: 0 10px 20px rgba(244, 122, 31, 0.3);
        }

        .contact-details h3 {
            margin-bottom: 5px;
        }

        .contact-details p {
            margin-bottom: 0;
            color: var(--deep-black);
            opacity: 0.8;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--luxury-orange);
            color: var(--pure-white);
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .social-links a:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* Contact Form */
        .contact-form {
            background-color: var(--pure-white);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .dark-mode .contact-form {
            background-color: var(--charcoal-gray);
            color: var(--deep-black);
        }

        .contact-form.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .contact-form h3 {
            margin-bottom: 30px;
            text-align: center;
        }

        .form-group {
            position: relative;
            margin-bottom: 30px;
        }

        .form-input {
            width: 100%;
            padding: 15px 0;
            border: none;
            border-bottom: 2px solid #ddd;
            background-color: transparent;
            font-size: 1rem;
            transition: var(--transition);
            color: var(--deep-black);
        }

        .dark-mode .form-input {
            color: var(--deep-black);
            border-bottom-color: #555;
        }

        .form-input:focus {
            outline: none;
            border-bottom-color: var(--luxury-orange);
        }

        .form-label {
            position: absolute;
            top: 15px;
            left: 0;
            font-size: 1rem;
            color: #999;
            pointer-events: none;
            transition: var(--transition);
        }

        .dark-mode .form-label {
            color: #aaa;
        }

        .form-input:focus ~ .form-label,
        .form-input:not(:placeholder-shown) ~ .form-label {
            top: -20px;
            font-size: 0.8rem;
            color: var(--luxury-orange);
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 0;
            text-decoration: none;
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
            transition: var(--transition);
            cursor: pointer;
            border: 2px solid transparent;
            font-size: 1rem;
            width: 100%;
        }

        .btn-primary {
            background-color: var(--luxury-orange);
            color: var(--pure-white);
        }

        .btn-primary:hover {
            background-color: transparent;
            border-color: var(--luxury-orange);
            color: var(--luxury-orange);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(244, 122, 31, 0.3);
        }

        /* Map Section */
        .map-section {
            padding: 0;
        }

        .map-container {
            height: 500px;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .map-container.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pure-white);
            text-align: center;
            filter: grayscale(100%);
            transition: var(--transition);
        }

        .map-placeholder:hover {
            filter: grayscale(0%);
        }

        .map-info {
            max-width: 400px;
            padding: 30px;
            background-color: rgba(30, 30, 30, 0.8);
            border-radius: 8px;
        }

        .map-info h3 {
            color: var(--luxury-orange);
            margin-bottom: 15px;
        }

        .map-info p {
            margin-bottom: 10px;
        }

        /* FAQ Section */
        .faq-section {
            background-color: var(--pure-white);
            transition: var(--transition);
        }

        .dark-mode .faq-section {
            background-color: var(--charcoal-gray);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 15px;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .dark-mode .faq-item {
            background-color: var(--charcoal-gray);
        }

        .faq-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-question {
            background-color: var(--soft-gray);
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .dark-mode .faq-question {
            background-color: var(--charcoal-gray);
            color: var(--deep-black);
        }

        .faq-question:hover {
            background-color: rgba(244, 122, 31, 0.05);
        }

        .faq-question h3 {
            margin: 0;
            font-size: 1.2rem;
        }

        .faq-icon {
            color: var(--luxury-orange);
            transition: var(--transition);
        }

        .faq-answer {
            background-color: var(--pure-white);
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .dark-mode .faq-answer {
            background-color: var(--charcoal-gray);
            color: var(--deep-black);
        }

        .faq-item.active .faq-answer {
            padding: 20px 25px;
            max-height: 500px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* CTA Section */
        .cta {
            background-color: var(--luxury-orange);
            color: var(--pure-white);
            text-align: center;
            padding: 100px 0;
        }

        .cta h2 {
            margin-bottom: 30px;
        }

        .cta h2:after {
            background: var(--pure-white);
        }

        .btn-secondary {
            background-color: var(--pure-white);
            color: var(--luxury-orange);
        }

        .btn-secondary:hover {
            background-color: transparent;
            color: var(--pure-white);
            border-color: var(--pure-white);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Footer */
        footer {
            background-color: var(--deep-black);
            color: var(--pure-white);
            padding: 60px 0 30px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--luxury-orange);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--luxury-orange);
            padding-left: 5px;
        }

        .footer-social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--pure-white);
            transition: var(--transition);
        }

        .footer-social-links a:hover {
            background-color: var(--luxury-orange);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pure-white);
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 999;
            transition: var(--transition);
            animation: pulse 2s infinite;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        /* Call Button */
        .call-btn {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: var(--luxury-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pure-white);
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 999;
            transition: var(--transition);
            animation: pulse 2s infinite;
            animation-delay: 1s;
        }

        .call-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        /* Animations */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--pure-white);
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                transition: var(--transition);
                pointer-events: none;
            }
            
            .dark-mode nav {
                background-color: var(--charcoal-gray);
            }
            
            nav.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }
            
            nav ul {
                flex-direction: column;
                padding: 20px;
            }
            
            nav li {
                margin: 10px 0;
            }
            
            .contact-form {
                padding: 30px 20px;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .call-btn {
                bottom: 170px;
            }
        }