

        /* Floating Elements */
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .float-item {
            position: absolute;
            opacity: 0.04;
            font-size: 2rem;
            font-weight: 700;
            color: var(--blue-primary);
            animation: float 20s ease-in-out infinite;
        }

        .float-item:nth-child(1) {
            top: 15%;
            left: 5%;
            animation-delay: 0s;
        }

        .float-item:nth-child(2) {
            top: 30%;
            right: 8%;
            animation-delay: -4s;
            color: var(--green-primary);
        }

        .float-item:nth-child(3) {
            top: 50%;
            left: 10%;
            animation-delay: -8s;
        }

        .float-item:nth-child(4) {
            top: 70%;
            right: 5%;
            animation-delay: -12s;
            color: var(--green-primary);
        }

        .float-item:nth-child(5) {
            top: 85%;
            left: 8%;
            animation-delay: -16s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            25% {
                transform: translateY(-30px) rotate(5deg);
            }

            50% {
                transform: translateY(0) rotate(0deg);
            }

            75% {
                transform: translateY(30px) rotate(-5deg);
            }
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-hero);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--white);
            box-shadow: var(--shadow-medium);
        }

        .logo-text {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 1.3rem;
            color: var(--navy);
        }

        .logo-text span {
            color: var(--blue-primary);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--gray-600);
            font-weight: 600;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-hero);
            transition: width 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--blue-primary);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--gradient-hero);
            color: var(--white) !important;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 700 !important;
            box-shadow: var(--shadow-medium);
            transition: transform 0.3s ease, box-shadow 0.3s ease !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-strong) !important;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--navy);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Page Header */
        .page-header {
            padding: 160px 2rem 100px;
            background: linear-gradient(180deg, var(--blue-light) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -25%;
            width: 700px;
            height: 700px;
            background: var(--gradient-hero);
            border-radius: 50%;
            opacity: 0.05;
            animation: pulse 10s ease-in-out infinite;
        }

        .page-header::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: -15%;
            width: 500px;
            height: 500px;
            background: var(--gradient-cta);
            border-radius: 50%;
            opacity: 0.05;
            animation: pulse 8s ease-in-out infinite reverse;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.15);
            }
        }

        .page-header-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
            margin: 0 auto;
        }

        .page-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--white);
            color: var(--blue-primary);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-soft);
            animation: fadeInUp 0.8s ease forwards;
        }

        .page-title {
            font-family: 'Syne', sans-serif;
            font-size: 4rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.1s;
            opacity: 0;
        }

        .page-title .highlight {
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-subtitle {
            font-size: 1.3rem;
            color: var(--gray-600);
            line-height: 1.7;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.2s;
            opacity: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hero Banner */
        .hero-banner {
            padding: 0 2rem;
            margin-top: -50px;
            position: relative;
            z-index: 15;
        }

        .hero-banner-inner {
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-strong);
        }

        .hero-banner-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, var(--blue-primary) 0%, var(--green-primary) 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-illustration {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .contact-icons-group {
            display: flex;
            gap: 1.5rem;
        }

        .contact-icon-bubble {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
            animation: iconFloat 3s ease-in-out infinite;
        }

        .contact-icon-bubble:nth-child(2) {
            animation-delay: -1s;
        }

        .contact-icon-bubble:nth-child(3) {
            animation-delay: -2s;
        }

        @keyframes iconFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        .hero-banner-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2.5rem;
            background: linear-gradient(to top, rgba(10, 22, 40, 0.95), transparent);
            color: var(--white);
            text-align: center;
        }

        .hero-banner-overlay h2 {
            font-family: 'Syne', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .hero-banner-overlay p {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Contact Info Cards */
        .contact-info-section {
            padding: 5rem 2rem;
            background: var(--white);
        }

        .contact-info-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .contact-card {
            background: var(--off-white);
            border-radius: 24px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-hero);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .contact-card:hover::before {
            transform: scaleX(1);
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-strong);
        }

        .contact-card-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: var(--gradient-hero);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
            transition: transform 0.4s ease;
        }

        .contact-card:hover .contact-card-icon {
            transform: scale(1.1) rotate(10deg);
        }

        .contact-card:nth-child(2) .contact-card-icon {
            background: var(--gradient-cta);
        }

        .contact-card:nth-child(3) .contact-card-icon {
            background: var(--gradient-blue);
        }

        .contact-card-title {
            font-family: 'Syne', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.75rem;
        }

        .contact-card-text {
            font-size: 1rem;
            color: var(--gray-600);
            line-height: 1.6;
        }

        .contact-card-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1rem;
            color: var(--blue-primary);
            font-weight: 600;
            text-decoration: none;
            transition: gap 0.3s ease;
        }

        .contact-card-link:hover {
            gap: 0.75rem;
        }

        /* Main Contact Section */
        .main-contact {
            padding: 5rem 2rem;
            background: var(--off-white);
        }

        .main-contact-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        /* Contact Form */
        .contact-form-wrapper {
            background: var(--white);
            border-radius: 30px;
            padding: 3rem;
            box-shadow: var(--shadow-medium);
        }

        .form-header {
            margin-bottom: 2rem;
        }

        .form-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--blue-light);
            color: var(--blue-primary);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }

        .form-title {
            font-family: 'Syne', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }

        .form-subtitle {
            color: var(--gray-600);
            font-size: 1rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-group {
            position: relative;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .form-group label span {
            color: var(--green-primary);
        }

        .form-input {
            width: 100%;
            padding: 1rem 1.25rem;
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            background: var(--off-white);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--blue-primary);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
        }

        .form-input::placeholder {
            color: var(--gray-400);
        }

        textarea.form-input {
            min-height: 150px;
            resize: vertical;
        }

        .form-submit {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1.25rem 2rem;
            background: var(--gradient-cta);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 200, 83, 0.3);
        }

        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 200, 83, 0.4);
        }

        .form-submit:active {
            transform: translateY(-1px);
        }

        .form-note {
            text-align: center;
            color: var(--gray-600);
            font-size: 0.9rem;
            margin-top: 1rem;
        }

        .form-note i {
            color: var(--green-primary);
            margin-right: 0.5rem;
        }

        /* Map & Quick Actions */
        .map-actions-wrapper {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .map-container {
            background: var(--white);
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-medium);
        }

        .map-header {
            padding: 1.5rem 2rem;
            border-bottom: 1px solid var(--gray-200);
        }

        .map-title {
            font-family: 'Syne', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--navy);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .map-title i {
            color: var(--blue-primary);
        }

        .map-embed {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, var(--blue-light) 0%, var(--green-light) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .map-placeholder {
            text-align: center;
        }

        .map-placeholder-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-hero);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
            margin: 0 auto 1rem;
        }

        .map-placeholder-text {
            font-family: 'Syne', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }

        .map-placeholder-address {
            color: var(--gray-600);
            font-size: 0.9rem;
            max-width: 300px;
        }

        .map-directions-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1rem;
            padding: 0.75rem 1.5rem;
            background: var(--gradient-blue);
            color: var(--white);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .map-directions-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        /* Quick Actions */
        .quick-actions {
            background: var(--white);
            border-radius: 24px;
            padding: 2rem;
            box-shadow: var(--shadow-medium);
        }

        .quick-actions-title {
            font-family: 'Syne', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 1.5rem;
        }

        .action-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .action-btn {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            border-radius: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .action-btn:hover {
            transform: translateX(10px);
        }

        .action-btn.whatsapp {
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            color: var(--white);
        }

        .action-btn.whatsapp:hover {
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
        }

        .action-btn.call {
            background: var(--blue-light);
            color: var(--blue-primary);
            border-color: var(--blue-primary);
        }

        .action-btn.call:hover {
            background: var(--blue-primary);
            color: var(--white);
        }

        .action-btn.email {
            background: var(--green-light);
            color: var(--green-dark);
            border-color: var(--green-primary);
        }

        .action-btn.email:hover {
            background: var(--green-primary);
            color: var(--white);
        }

        .action-btn-icon {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }

        .action-btn.call .action-btn-icon,
        .action-btn.email .action-btn-icon {
            background: rgba(0, 0, 0, 0.05);
        }

        .action-btn-text {
            flex: 1;
        }

        .action-btn-text strong {
            display: block;
            font-size: 1rem;
            margin-bottom: 0.2rem;
        }

        .action-btn-text span {
            font-size: 0.85rem;
            opacity: 0.8;
        }

        .action-btn-arrow {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .action-btn:hover .action-btn-arrow {
            transform: translateX(5px);
        }

        /* FAQ Section */
        .faq-section {
            padding: 5rem 2rem;
            background: var(--white);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--green-light);
            color: var(--green-dark);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Syne', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--gray-600);
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            background: var(--off-white);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: var(--shadow-soft);
        }

        .faq-item.active {
            box-shadow: var(--shadow-medium);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem 2rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(0, 102, 255, 0.03);
        }

        .faq-question h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--navy);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .faq-question h3 i {
            color: var(--blue-primary);
            font-size: 1rem;
        }

        .faq-toggle {
            width: 35px;
            height: 35px;
            background: var(--blue-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blue-primary);
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            background: var(--gradient-hero);
            color: var(--white);
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer-content {
            padding: 0 2rem 1.5rem;
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* Social Section */
        .social-section {
            padding: 5rem 2rem;
            background: var(--gradient-hero);
            position: relative;
            overflow: hidden;
        }

        .social-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.05;
        }

        .social-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .social-title {
            font-family: 'Syne', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1rem;
        }

        .social-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }

        .social-link {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--white);
            color: var(--blue-primary);
            transform: translateY(-5px) rotate(5deg);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .social-link.facebook:hover {
            color: #1877f2;
        }

        .social-link.instagram:hover {
            color: #e4405f;
        }

        .social-link.youtube:hover {
            color: #ff0000;
        }

        .social-link.whatsapp:hover {
            color: #25d366;
        }

        /* Floating WhatsApp Button */
        .floating-whatsapp {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
        }

        .whatsapp-btn {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            color: var(--white);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
        }

        .whatsapp-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-btn i {
            font-size: 1.5rem;
        }

        .whatsapp-pulse {
            position: absolute;
            inset: 0;
            border-radius: 50px;
            animation: whatsappPulse 2s ease-in-out infinite;
        }

        @keyframes whatsappPulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
            }

            50% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
        }

      
        /* Success Message */
        .form-success {
            display: none;
            text-align: center;
            padding: 3rem;
        }

        .form-success.show {
            display: block;
        }

        .success-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient-cta);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--white);
            margin: 0 auto 1.5rem;
            animation: successPop 0.5s ease forwards;
        }

        @keyframes successPop {
            0% {
                transform: scale(0);
            }

            50% {
                transform: scale(1.2);
            }

            100% {
                transform: scale(1);
            }
        }

        .success-title {
            font-family: 'Syne', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 0.75rem;
        }

        .success-text {
            color: var(--gray-600);
            font-size: 1rem;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 2rem;
                box-shadow: var(--shadow-medium);
                gap: 1.5rem;
            }

            .nav-links.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .main-contact-container {
                grid-template-columns: 1fr;
            }

            .contact-cards {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-form-wrapper {
                padding: 2rem;
            }

            .hero-banner-image {
                height: 250px;
            }

            .social-links {
                flex-wrap: wrap;
            }

            .social-link {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .floating-whatsapp {
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-btn span {
                display: none;
            }

            .whatsapp-btn {
                padding: 1rem;
                border-radius: 50%;
            }
        }

        @media (max-width: 480px) {
            .page-header {
                padding: 140px 1.5rem 80px;
            }

            .page-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .faq-question {
                padding: 1rem 1.5rem;
            }

            .faq-question h3 {
                font-size: 1rem;
            }

            .faq-answer-content {
                padding: 0 1.5rem 1rem;
            }
        }
