        /* Base Styles */
        :root {
            --primary-color: #204173;
            --secondary-color: #00aae5;
            --accent-color: #e74c3c;
            --text-color: #333;
            --light-text: #f8f8f8;
            --background-light: #f8f8f8;
            --white: #ffffff;
            --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 20px;
        }
        
        h1 {
            font-size: 3.5rem;
        }
        
        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }
        
        p {
            margin-bottom: 20px;
            font-family: 'Open Sans', sans-serif;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--secondary-color);
            color: var(--white);
            border: none;
            border-radius: 5px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
        }
        
        .btn:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        
        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow);
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            margin-left: 20px;
        }
        
        .logo img {
            max-width: 100px;
            height: auto;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            position: relative;
            font-family: 'Montserrat', sans-serif;
        }
        
        .nav-menu a:hover {
            color: var(--accent-color);
        }
        
        .nav-menu a.active {
            color: var(--accent-color);
        }
        
        .nav-menu a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent-color);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }
        
        /* Hero Section */
        .hero {
            height: 80vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            overflow: hidden;
            margin-top: 70px;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)), url('../Imgs/slider/cont-1.jpg');
            background-size: cover;
            background-position: center;
            z-index: -2;
        }
        
        .wipe-effect {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(32, 65, 115, 0.8), rgba(0, 170, 229, 0.8));
            z-index: -1;
            clip-path: polygon(0 0, 0 100%, 0 100%, 0 0);
            animation: wipe 4s infinite alternate;
        }
        
        @keyframes wipe {
            0% {
                clip-path: polygon(0 0, 0 100%, 0 100%, 0 0);
            }
            50% {
                clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
            }
            100% {
                clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
            }
        }
        
        .floating-cat {
            position: absolute;
            top: 20%;
            left: -100px;
            font-size: 60px;
            animation: catMove 15s infinite linear;
            z-index: -1;
            opacity: 0.7;
        }
        
        @keyframes catMove {
            0% {
                left: -100px;
                transform: rotate(0deg);
            }
            50% {
                transform: rotate(180deg);
            }
            100% {
                left: calc(100% + 100px);
                transform: rotate(360deg);
            }
        }
        
        .floating-dots {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .dot {
            position: absolute;
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }
        
        @keyframes float {
            0% {
                transform: translateY(100vh) translateX(0);
            }
            100% {
                transform: translateY(-100px) translateX(20px);
            }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }
        
        /* Contact Info Section */
        .contact-info {
            background: var(--background-light);
            padding: 80px 0;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .contact-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .contact-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .contact-card:nth-child(1) {
            transition-delay: 0.2s;
        }
        
        .contact-card:nth-child(2) {
            transition-delay: 0.4s;
        }
        
        .contact-card:nth-child(3) {
            transition-delay: 0.6s;
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            background: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: var(--transition);
            position: relative;
        }
        
        .contact-icon::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border-radius: 50%;
            border: 2px solid var(--secondary-color);
            opacity: 0.5;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.3;
            }
            100% {
                transform: scale(1);
                opacity: 0.5;
            }
        }
        
        .contact-card:hover .contact-icon {
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(0, 170, 229, 0.5);
        }
        
        .contact-icon i {
            font-size: 2rem;
            color: var(--white);
        }
        
        .contact-card h3 {
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .contact-card p {
            margin-bottom: 10px;
        }
        
        /* Contact Form Section */
        .contact-form-section {
            padding: 80px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../Imgs/slider/what-3.jpg');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            color: var(--white);
        }
        
        .contact-form-section h2::after {
            background: var(--white);
        }
        
        .form-container {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            padding: 50px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .form-container.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .form-group {
            margin-bottom: 25px;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--secondary-color);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 0 3px rgba(0, 170, 229, 0.2);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Progress Bar Styles */
        .progress-container {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
            margin-bottom: 25px;
            overflow: hidden;
            display: none;
        }
        
        .progress-bar {
            height: 100%;
            width: 0%;
            background: var(--secondary-color);
            border-radius: 3px;
            transition: width 0.4s ease;
        }
        
        /* Submit Button Styles */
        .submit-btn {
            width: 100%;
            padding: 15px;
            background: var(--secondary-color);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .submit-btn:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .submit-btn:active {
            transform: translateY(-1px);
        }
        
        .submit-btn:disabled {
            background: #6c757d;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .submit-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%);
            transform-origin: 50% 50%;
        }
        
        .submit-btn:focus:not(:active)::after {
            animation: ripple 1s ease-out;
        }
        
        @keyframes ripple {
            0% {
                transform: scale(0, 0);
                opacity: 0.5;
            }
            100% {
                transform: scale(20, 20);
                opacity: 0;
            }
        }
        
        /* Loading Spinner */
        .spinner {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: var(--white);
            animation: spin 1s ease-in-out infinite;
            display: none;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Map Section */
        .map-section {
            padding: 80px 0;
            background: var(--background-light);
        }
        
        .map-container {
            max-width: 1100px;
            margin: 0 auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .map-container.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .map-placeholder {
            height: 400px;
            background: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.5s ease;
        }
        
        .faq-item.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .faq-item:nth-child(even) {
            transform: translateX(50px);
        }
        
        .faq-item:nth-child(even).visible {
            transform: translateX(0);
        }
        
        .faq-question {
            background: var(--primary-color);
            color: var(--white);
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background: #1a3560;
        }
        
        .faq-question h3 {
            margin: 0;
            font-size: 1.2rem;
        }
        
        .faq-icon {
            transition: var(--transition);
        }
        
        .faq-answer {
            background: var(--white);
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        .view-more-container {
            text-align: center;
            margin-top: 40px;
        }
        
        /* Footer */
        .footer {
            background: #000000;
            color: var(--light-text);
            padding: 60px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--light-text);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        
        .footer-links i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--light-text);
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        
        .developer-link {
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        .developer-link:hover {
            text-decoration: underline;
        }
        
        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: var(--white);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }
        
        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-to-top:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        /* WhatsApp Button Styles */
        .whatsapp-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: green;
            color: rgb(255, 255, 255);
            padding: 15px;
            border-radius: 50%;
            font-size: 30px;
            text-align: center;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 60px;
            height: 60px;
            z-index: 1000;
            border: none;
        }

        .whatsapp-btn i {
            color: white;
        }

        .whatsapp-btn:hover {
            background-color: #1ebe5d;
        }

        /* Ring animation around the button */
        @keyframes ring-pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .whatsapp-btn {
            animation: ring-pulse 2s infinite;
        }

        /* Modal styles */
        .whatsapp-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1001;
            justify-content: center;
            align-items: center;
            font-family: 'Montserrat', sans-serif;
        }

        .whatsapp-modal-content {
            background-color: white;
            border-radius: 20px;
            width: 90%;
            max-width: 380px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modal-appear 0.3s ease-out;
        }

        @keyframes modal-appear {
            from {
                opacity: 0;
                transform: scale(0.8) translateY(-20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        /* Top layer - Green gradient */
        .modal-top-layer {
            background: linear-gradient(135deg, #25D366, #128C7E);
            padding: 30px 25px 25px 25px;
            text-align: center;
            position: relative;
        }

        /* Close button */
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.3);
            border: none;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            font-size: 18px;
            cursor: pointer;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }

        .close-modal:hover {
            background: rgba(0, 0, 0, 0.5);
        }

        /* WhatsApp icon in modal with animation */
        .modal-whatsapp-icon {
            font-size: 48px;
            color: white;
            margin-bottom: 15px;
            animation: icon-pulse 2s infinite;
        }

        @keyframes icon-pulse {
            0% {
                transform: scale(1);
                text-shadow: 0 0 0 rgba(255, 255, 255, 0.7);
            }
            50% {
                transform: scale(1.1);
                text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
            }
            100% {
                transform: scale(1);
                text-shadow: 0 0 0 rgba(255, 255, 255, 0.7);
            }
        }

        .modal-title {
            color: white;
            font-size: 20px;
            font-weight: 700;
            margin: 0 0 8px 0;
        }

        .modal-description {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            margin: 0;
            line-height: 1.4;
        }

        /* Bottom layer - White */
        .modal-bottom-layer {
            padding: 25px;
        }

        .contact-info {
            text-align: center;
            margin-bottom: 25px;
        }

        .phone-number {
            font-size: 18px;
            font-weight: 600;
            color: #25D366;
            margin: 0 0 5px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .response-time {
            font-size: 14px;
            color: #666;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .modal-buttons {
            display: flex;
            gap: 12px;
        }

        .btn-modal {
            flex: 1;
            padding: 14px 14px;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-secondary {
            background-color: #f0f0f0;
            color: #333;
            border: 1px solid #e0e0e0;
        }

        .btn-secondary:hover {
            background-color: #e5e5e5;
        }

        .btn-primary {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            border: none;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #1ebe5d, #0d7a68);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }
        
        /* Responsive Styles */
        @media (max-width: 1024px) {
            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .hero {
                height: 60vh;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 80%;
                height: calc(100vh - 70px);
                background: var(--white);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: var(--transition);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .form-container {
                padding: 30px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .whatsapp-btn {
                width: 50px;
                height: 50px;
                font-size: 18px;
                bottom: 15px;
                right: 15px;
            }
            
            .whatsapp-modal-content {
                max-width: 350px;
            }
            
            .modal-top-layer {
                padding: 25px 20px 20px 20px;
            }
            
            .modal-bottom-layer {
                padding: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .whatsapp-btn {
                width: 45px;
                height: 45px;
                font-size: 16px;
                bottom: 10px;
                right: 10px;
            }
            
            .whatsapp-modal-content {
                max-width: 320px;
            }
            
            .modal-title {
                font-size: 18px;
            }
            
            .modal-buttons {
                flex-direction: column;
            }
            
            .btn-modal {
                padding: 12px 16px;
            }
        }
    
