* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 0.5rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(30, 59, 114, 0.671);
            backdrop-filter: blur(10px);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #fff;
            text-decoration: none;
        }

        .logo i {
            color: #ff6b35;
            margin-right: 0.5rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: #ff6b35;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Premium Hero Section */
        .hero {
            display: flex;
            align-items: center;
            position: relative;
            background-image: url('../img/hero.webp');
            background-size: cover;
            background-position: bottom;
            overflow: hidden;
            padding-top: 8em; /* Account for fixed header */
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 50% 30% at 20% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse 40% 25% at 80% 60%, rgba(251, 113, 133, 0.15) 0%, transparent 50%);
            z-index: 1;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
            animation: heroFadeIn 1.2s ease-out;
        }

        @keyframes heroFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-text {
            color: white;
            text-align: center;
        }

        .hero h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: white;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            letter-spacing: -0.02em;
        }

        .hero .subtitle {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.25rem, 3vw, 1.875rem);
            font-weight: 600;
            color: #fbbf24;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            letter-spacing: -0.01em;
        }

        .hero .description {
            font-size: clamp(1rem, 2.2vw, 1.125rem);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-whatsapp {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            margin: 2rem auto;
            max-width: 500px;
        }

        .contact-whatsapp p {
            color: #666;
            margin-bottom: 1.5rem;
        }

        .whatsapp-contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: #25d366;
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            background: #20ba59;
        }

        .whatsapp-contact-btn i {
            font-size: 1.2rem;
        }


        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Enhanced focus states for accessibility */
        .cta-button:focus {
            outline: 2px solid #fbbf24;
            outline-offset: 2px;
        }



        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(255, 255, 255, 0.95);
            color: #0891b2;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            background: white;
        }

        .cta-button i {
            font-size: 1.1rem;
        }

        /* Removed complex floating elements, keeping simple bubbles */
        .bubble {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .bubble:nth-child(1) {
            width: 40px;
            height: 40px;
            left: 10%;
            animation-delay: 0s;
        }

        .bubble:nth-child(2) {
            width: 20px;
            height: 20px;
            left: 20%;
            animation-delay: 2s;
        }

        .bubble:nth-child(3) {
            width: 60px;
            height: 60px;
            left: 35%;
            animation-delay: 4s;
        }

        .bubble:nth-child(4) {
            width: 30px;
            height: 30px;
            right: 35%;
            animation-delay: 1s;
        }

        .bubble:nth-child(5) {
            width: 50px;
            height: 50px;
            right: 20%;
            animation-delay: 3s;
        }

        .bubble:nth-child(6) {
            width: 25px;
            height: 25px;
            right: 10%;
            animation-delay: 5s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
                opacity: 0.7;
            }
            50% {
                transform: translateY(-20px);
                opacity: 1;
            }
        }

        /* Sections */
        section {
            padding: 5rem 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #1e3c72;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            border-radius: 2px;
        }

        /* About Section */
        .about {
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }



        .about-text h3 {
            color: #1e3c72;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .about-image {
            text-align: center;
        }

        .about-image img {
            width: 100%;
            max-width: 470px;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-top: 4px solid #ff6b35;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .service-card i {
            font-size: 3rem;
            color: #2a5298;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            color: #1e3c72;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        /* Gallery Section */
        .gallery {
            background: #f8f9fa;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .gallery-item {
            height: 250px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }



        /* Contact Section */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }

        .contact-info {
            background: white;
            padding: 2rem;
            border-radius: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .contact-item i {
            font-size: 1.5rem;
            color: #ff6b35;
            margin-right: 1rem;
            width: 30px;
        }

        .contact-form {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #1e3c72;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2a5298;
        }

        .submit-btn {
            background: linear-gradient(45deg, #1e3c72, #2a5298);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
        }

        /* Footer */
        footer {
            background: #1e3c72;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
            animation: pulse 2s infinite;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        /* 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); }
        }

        /* Premium Responsive Design */
        
        /* Tablet and small desktop */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }



            .hero h1 {
                font-size: clamp(2.25rem, 5vw, 3.5rem);
            }

            .hero .subtitle {
                font-size: clamp(1.125rem, 2.5vw, 1.5rem);
            }

            .hero .description {
                max-width: 600px;
                margin: 0 auto 2.5rem;
            }
        }

        /* Mobile landscape and tablets */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: flex;
            }

            .hero {
                padding-top: 120px;
            }

            .hero a{
                margin-bottom: 4em ;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                padding: 0 1.5rem;
            }



            .hero .description {
                margin-bottom: 2rem;
            }

            .cta-button {
                padding: 0.875rem 1.75rem;
                font-size: 0.9rem;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-image img {
                max-width: 100%;
                height: auto;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: clamp(1.875rem, 5vw, 2.5rem);
            }

            .container {
                padding: 0 1.5rem;
            }
        }

        /* Mobile portrait */
        @media (max-width: 480px) {


            .hero h1 {
                font-size: clamp(2rem, 8vw, 2.75rem);
                margin-bottom: 1rem;
            }

            .hero .subtitle {
                font-size: clamp(1rem, 4vw, 1.25rem);
                margin-bottom: 1rem;
            }

            .hero .description {
                font-size: clamp(0.875rem, 3vw, 1rem);
                margin-bottom: 1.5rem;
            }

            .cta-button {
                padding: 0.75rem 1.5rem;
                font-size: 0.875rem;
                gap: 0.5rem;
            }

            .whatsapp-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
                bottom: 20px;
                right: 20px;
            }

            .container {
                padding: 0 1rem;
            }
        }

        /* Extra small devices */
        @media (max-width: 360px) {
            .hero h1 {
                font-size: clamp(1.75rem, 8vw, 2.25rem);
            }

            .cta-button {
                padding: 0.625rem 1.25rem;
                font-size: 0.8rem;
            }
        }

        .nav-links.active {
            display: flex !important;
            flex-direction: column;
            position: absolute;
            top: 70px;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            width: 100%;
            padding: 2rem 0;
            z-index: 999;
            gap: 1rem;
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
            text-align: center;
        }

        .nav-links.active li {
            margin: 0;
        }

        .nav-links.active a {
            padding: 1rem 2rem;
            display: block;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .nav-links.active a:hover {
            background: rgba(255,255,255,0.1);
        }

        .mobile-menu.open span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
            background: #ff6b35;
        }

        .mobile-menu.open span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu.open span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
            background: #ff6b35;
        }
