/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #000;
    overflow-x: hidden;
    background: #ffffff;
    position: relative;
}

/* Enhanced background animation with smooth color transitions */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.01) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 0, 0, 0.015) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(0, 0, 0, 0.01) 0%, transparent 50%);
    animation: gentleColorFlow 25s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes gentleColorFlow {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) scale(1.05);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-10px) scale(0.95);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) scale(1.02);
        opacity: 0.25;
    }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.brand-logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.2);
    opacity: 1 !important;
}

.brand-logo img:hover {
    filter: brightness(1.4);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.nav-link:hover {
    color: #ffa500;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.7);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffa500, #ff6347);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.lang-btn {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.lang-btn:hover {
    background: rgba(255, 165, 0, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 165, 0, 0.3);
}

.lang-btn.active {
    background: #ffa500;
    color: #000;
    border-color: #ffa500;
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.5);
}

/* Theme Switcher */
.theme-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    width: 50px;
    height: 28px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 2px;
}

.theme-toggle:hover {
    background: rgba(255, 165, 0, 0.2);
    border-color: rgba(255, 165, 0, 0.5);
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.3);
}

.theme-toggle-slider {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    border-radius: 50%;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1);
    left: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-icon {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: #333;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.6s ease;
    opacity: 1;
    transform: rotate(0deg);
}

.theme-icon.moon-icon {
    opacity: 0;
    position: absolute;
    transform: rotate(-180deg);
}

.theme-icon.sun-icon {
    opacity: 1;
    position: absolute;
    transform: rotate(0deg);
}

/* Dark Theme */
[data-theme="dark"] {
    background: #000000;
    color: #ffffff;
}

[data-theme="dark"] .theme-icon.sun-icon {
    opacity: 0;
    transform: rotate(-180deg);
}

[data-theme="dark"] .theme-icon.moon-icon {
    opacity: 1;
    transform: rotate(0deg);
    fill: #ffffff;
}

[data-theme="dark"] .navbar {
    background: rgba(17, 17, 17, 0.95);
    border-bottom: 1px solid #333333;
}

[data-theme="dark"] .brand-logo img {
    filter: brightness(1.4);
}

[data-theme="dark"] .nav-link {
    color: #ffffff;
}

[data-theme="dark"] .nav-link:hover {
    color: #ffffff;
}

[data-theme="dark"] .lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333333;
    color: #ffffff;
}

[data-theme="dark"] .lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .lang-btn.active {
    background: #ffffff;
    color: #000000;
}

[data-theme="dark"] .theme-toggle {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 165, 0, 0.4);
}

[data-theme="dark"] .theme-toggle-slider {
    left: 27px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
}

[data-theme="dark"] .theme-icon.sun-icon {
    opacity: 0;
    transform: rotate(180deg);
}

[data-theme="dark"] .theme-icon.moon-icon {
    opacity: 1;
    transform: rotate(0deg);
}

[data-theme="dark"] .theme-icon {
    stroke: #fff;
}

[data-theme="dark"] .theme-toggle:hover {
    background: rgba(255, 165, 0, 0.2);
}

[data-theme="dark"] .theme-icon {
    stroke: #ffffff;
}

[data-theme="dark"] .language-switcher {
    border-left: 1px solid #333333;
}

[data-theme="dark"] .theme-switcher {
    border-left: 1px solid #333333;
}

[data-theme="dark"] .hamburger span {
    background: #ffffff;
}

[data-theme="dark"] .contact-hero {
    background: #000000;
}

[data-theme="dark"] .contact-content-section {
    background: #000000;
}

[data-theme="dark"] .page-title,
[data-theme="dark"] .page-subtitle {
    color: #ffffff;
}

[data-theme="dark"] .contact-info h2 {
    color: #ffffff;
}

[data-theme="dark"] .contact-item h4 {
    color: #ffffff;
}

[data-theme="dark"] .contact-item p {
    color: #ffffff;
}

[data-theme="dark"] .contact-form-container {
    background: #000000;
    border: 1px solid #333333;
}

[data-theme="dark"] .contact-form-container h2 {
    color: #ffffff;
}

[data-theme="dark"] .form-group label {
    color: #ffffff;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
    background: #111111;
    border: 1px solid #333333;
    color: #ffffff;
}

[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder {
    color: #ffffff;
}

[data-theme="dark"] .submit-btn {
    background: #ffffff;
    color: #000000;
}

[data-theme="dark"] .submit-btn:hover {
    background: #ffffff;
    color: #000000;
}

[data-theme="dark"] .map-section {
    background: #000000;
}

[data-theme="dark"] .section-title {
    color: #ffffff;
}

[data-theme="dark"] .map-content h3 {
    color: #ffffff;
}

[data-theme="dark"] .map-content p {
    color: #ffffff;
}

[data-theme="dark"] .map-placeholder {
    background: #111111;
    border: 1px solid #333333;
}

[data-theme="dark"] .faq-section {
    background: #000000;
}

[data-theme="dark"] .faq-item {
    background: #111111;
    border: 1px solid #333333;
}

[data-theme="dark"] .faq-item h3 {
    color: #ffffff;
}

[data-theme="dark"] .faq-item p {
    color: #ffffff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Contact Hero Section with enhanced animations */
.contact-hero {
    padding: 150px 0 100px;
    background: #ffffff;
    color: #000;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(0, 0, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(0, 0, 0, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.02) 0%, transparent 60%);
    animation: gentleOrbs 30s ease-in-out infinite;
}

@keyframes gentleOrbs {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    33% {
        transform: translateY(-15px) scale(1.05);
        opacity: 0.6;
    }
    66% {
        transform: translateY(-8px) scale(0.95);
        opacity: 1;
    }
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: #000;
    animation: slideInFromLeft 1.2s ease-out;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation-fill-mode: forwards;
}

.page-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: #333;
    animation: slideInFromRight 1.2s ease-out 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Slide in animations */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textGlow {
    0%, 100% {
        background-position: 0% 50%;
        filter: brightness(1) saturate(1);
    }
    50% {
        background-position: 100% 50%;
        filter: brightness(1.2) saturate(1.3);
    }
}

@keyframes subtleGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 0, 0.5), 0 0 30px rgba(255, 255, 0, 0.2);
    }
}

/* Contact Content Section with enhanced animations */
.contact-content-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

.contact-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(0, 0, 0, 0.01) 0%, 
        transparent 25%, 
        rgba(0, 0, 0, 0.005) 50%, 
        transparent 75%, 
        rgba(0, 0, 0, 0.01) 100%);
    animation: gentleDiagonalShift 35s linear infinite;
}

@keyframes gentleDiagonalShift {
    0% {
        transform: translateX(-50%) translateY(-50%);
    }
    100% {
        transform: translateX(50%) translateY(50%);
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Contact Info Section with animations */
.contact-info {
    animation: slideInFromLeft 1s ease-out 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #000;
    animation: slideInFromTop 1s ease-out 0.5s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    animation: slideInFromLeft 1s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.contact-item:nth-child(1) {
    animation-delay: 0.7s;
}

.contact-item:nth-child(2) {
    animation-delay: 0.9s;
}

.contact-item:nth-child(3) {
    animation-delay: 1.1s;
}

.contact-item:nth-child(4) {
    animation-delay: 1.3s;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.contact-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.contact-details p {
    color: #333;
    font-size: 1rem;
    opacity: 0.9;
}

/* Contact Form Section with animations */
.contact-form-container {
    background: rgba(0, 0, 0, 0.02);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    animation: slideInFromRight 1s ease-out 0.5s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.contact-form-container h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #000;
    text-align: center;
    animation: slideInFromTop 1s ease-out 0.7s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.form-group {
    margin-bottom: 1.5rem;
    animation: slideInFromBottom 1s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.form-group:nth-child(1) {
    animation-delay: 0.9s;
}

.form-group:nth-child(2) {
    animation-delay: 1.0s;
}

.form-group:nth-child(3) {
    animation-delay: 1.1s;
}

.form-group:nth-child(4) {
    animation-delay: 1.2s;
}

.form-group:nth-child(5) {
    animation-delay: 1.3s;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.02);
    color: #000;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.05);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #000, #333);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: slideInFromBottom 1s ease-out 1.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #333, #000);
}

/* WhatsApp Contact Styles */
.whatsapp-contact {
    position: relative;
    overflow: hidden;
}

.whatsapp-contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.whatsapp-contact:hover::after {
    opacity: 1;
}

.whatsapp-contact .contact-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.whatsapp-contact:hover .contact-icon {
    transform: scale(1.1);
}

.whatsapp-contact .contact-icon svg {
    transition: all 0.3s ease;
}

.whatsapp-contact:hover .contact-icon svg {
    filter: drop-shadow(0 4px 8px rgba(37, 211, 102, 0.3));
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.whatsapp-link:hover {
    color: #128C7E;
    transform: translateY(-1px);
}

.whatsapp-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #25D366, #128C7E);
    transition: width 0.3s ease;
}

.whatsapp-link:hover::after {
    width: 100%;
}

/* Add pulse animation for WhatsApp */
@keyframes whatsappPulse {
    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);
    }
}

.whatsapp-contact .contact-icon svg {
    border-radius: 50%;
    animation: whatsappPulse 2s infinite;
}

/* WhatsApp Chat Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.whatsapp-chat {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 450px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0) translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-chat.active {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.whatsapp-header {
    background: #075E54;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-avatar {
    width: 40px;
    height: 40px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.whatsapp-info h4 {
    margin: 0;
    font-size: 16px;
}

.whatsapp-info p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

.whatsapp-close {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.whatsapp-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.whatsapp-messages {
    height: 300px;
    padding: 20px;
    overflow-y: auto;
    background: #ECE5DD;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="whatsapp-bg" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(0,0,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23whatsapp-bg)"/></svg>');
}

.message {
    margin-bottom: 15px;
    max-width: 80%;
}

.message.bot {
    align-self: flex-start;
}

.message.user {
    align-self: flex-end;
    margin-left: auto;
}

.message-bubble {
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
}

.message.bot .message-bubble {
    background: white;
    border-bottom-left-radius: 5px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message.user .message-bubble {
    background: #DCF8C6;
    border-bottom-right-radius: 5px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.whatsapp-input {
    padding: 15px 20px;
    background: #f0f0f0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.whatsapp-input input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
    background: white;
}

.whatsapp-send {
    width: 40px;
    height: 40px;
    background: #25D366;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-send:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.whatsapp-send svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.map-content {
    max-width: 300px;
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.map-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.map-content p {
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    opacity: 0.8;
}

/* Form Success/Error Messages */
.form-message {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.scroll-animate-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.scroll-animate-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.scroll-animate-scale.animate {
    opacity: 1;
    transform: scale(1);
}

/* AI FAQ Widget */
.ai-faq-widget {
    position: fixed;
    bottom: 20px;
    right: 100px;
    z-index: 9999;
}

.ai-faq-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    animation: aiFaqPulse 3s infinite;
    position: relative;
    overflow: hidden;
}

.ai-faq-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}

.ai-faq-button.expanded {
    width: 400px;
    height: auto;
    min-height: 500px;
    border-radius: 20px;
    bottom: 20px;
    right: 20px;
    animation: none;
}

.ai-faq-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: 2;
}

.ai-faq-button.expanded .ai-faq-icon {
    top: 20px;
    left: 20px;
    transform: none;
    width: 30px;
    height: 30px;
}

.ai-faq-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
    transition: all 0.3s ease;
}

.ai-faq-button.expanded .ai-faq-icon svg {
    width: 20px;
    height: 20px;
}

@keyframes aiFaqPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(102, 126, 234, 0.7);
    }
}

.ai-faq-content-inside {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 60px 20px 20px 20px;
    height: 100%;
    overflow-y: auto;
}

.ai-faq-button.expanded .ai-faq-content-inside {
    opacity: 1;
    visibility: visible;
}

.ai-faq-header-inside {
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

.ai-faq-header-inside h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.ai-faq-header-inside p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.faq-items-inside {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item-inside {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item-inside:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.faq-question-inside {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question-inside::after {
    content: '▼';
    font-size: 12px;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.faq-answer-inside {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-link {
        color: #000;
        padding: 1rem 0;
        display: block;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu.active .lang-btn {
        color: #000;
        border-color: rgba(0, 0, 0, 0.2);
        background: rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu.active .lang-btn.active {
        background: #000;
        color: white;
        border-color: #000;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info h2,
    .contact-form-container h2 {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 2rem 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .language-switcher {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 1rem;
    }
    
    /* WhatsApp Widget Mobile Styles */
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-chat {
        width: 280px;
        height: 350px;
        bottom: 70px;
        right: 0;
    }
    
    .whatsapp-messages {
        height: 200px;
    }
    
    /* AI FAQ Widget Mobile Styles */
    .ai-faq-widget {
        bottom: 15px;
        right: 80px;
    }
    
    .ai-faq-button {
        width: 50px;
        height: 50px;
    }
    
    .ai-faq-button.expanded {
        width: 300px;
        min-height: 400px;
        bottom: 15px;
        right: 15px;
    }
    
    .ai-faq-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .ai-faq-button.expanded .ai-faq-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .ai-faq-content-inside {
        padding: 50px 15px 15px 15px;
    }
    
    .ai-faq-header-inside h3 {
        font-size: 1.1rem;
    }
    
    .ai-faq-header-inside p {
        font-size: 0.85rem;
    }
    
    .faq-item-inside {
        padding: 12px;
    }
    
    .faq-question-inside {
        font-size: 0.9rem;
    }
    
    .faq-answer-inside {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-icon {
        min-width: auto;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .map-icon {
        font-size: 3rem;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
    
    .whatsapp-chat {
        width: 260px;
        height: 320px;
        right: -10px;
    }
    
    .whatsapp-messages {
        height: 180px;
    }
    
    .whatsapp-input input {
        font-size: 14px;
    }
    
    /* AI FAQ Widget Extra Small Mobile */
    .ai-faq-widget {
        bottom: 10px;
        right: 70px;
    }
    
    .ai-faq-button {
        width: 45px;
        height: 45px;
    }
    
    .ai-faq-button.expanded {
        width: 280px;
        min-height: 350px;
        bottom: 10px;
        right: 10px;
    }
    
    .ai-faq-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .ai-faq-button.expanded .ai-faq-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .ai-faq-content-inside {
        padding: 45px 12px 12px 12px;
    }
    
    .ai-faq-header-inside h3 {
        font-size: 1rem;
    }
    
    .ai-faq-header-inside p {
        font-size: 0.8rem;
    }
    
    .faq-item-inside {
        padding: 10px;
        gap: 10px;
    }
    
    .faq-question-inside {
        font-size: 0.85rem;
    }
    
    .faq-answer-inside {
        font-size: 0.75rem;
    }
} 