
    :root {
        --primary: #bb0000;
        --secondary: #ffffff;
        --accent: #F97316;
        --text: #000000;
        --background: #F9FAFB;
        --white: #FFFFFF;
        --gray-light: #E5E7EB;
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        --border-radius: 16px;
        --border-radius-sm: 12px;
        --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        --box-shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
        --logo-red: #E63946;
        --logo-black: #000000;
        --animation-duration: 0.8s;
    }

    /* === RESET & BASE STYLES === */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px;
        width: 100%;
        overflow-x: hidden;
    }

    body {
        font-family: 'Inter', sans-serif;
        color: var(--text);
        background-color: var(--background);
        line-height: 1.6;
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        line-height: 1.3;
    }

    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    section {
        padding: 80px 0;
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    /* === ANIMATIONS === */
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
    }

    @keyframes shimmer {
        0% {
            background-position: -1000px 0;
        }
        100% {
            background-position: 1000px 0;
        }
    }

    /* === BUTTONS === */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 28px;
        border-radius: var(--border-radius-sm);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        cursor: pointer;
        transition: var(--transition);
        border: none;
        font-family: 'Poppins', sans-serif;
        text-align: center;
        min-height: 48px;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.7s ease;
        z-index: -1;
    }

    .btn:hover::before {
        left: 100%;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--primary), #000000);
        color: var(--white);
        box-shadow: 0 4px 15px rgba(187, 0, 0, 0.25);
        border: none;
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(187, 0, 0, 0.35);
        animation: pulse 0.5s ease;
    }

    .btn-secondary {
        background: linear-gradient(135deg, black, #00ff40);
        color: var(--white);
        box-shadow: 0 4px 15px rgba(0, 255, 64, 0.25);
        border: none;
    }

    .btn-secondary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 255, 64, 0.35);
    }

    .btn-accent {
        background: linear-gradient(135deg, var(--accent), #ea580c);
        color: var(--white);
        box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
        border: none;
    }

    .btn-accent:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
    }

    .btn-outline {
        background-color: transparent;
        color: var(--primary);
        border: 2px solid var(--primary);
        position: relative;
        z-index: 1;
        overflow: hidden;
    }

    .btn-outline::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: var(--primary);
        transition: width 0.4s ease;
        z-index: -1;
    }

    .btn-outline:hover {
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: 0 4px 15px rgba(187, 0, 0, 0.25);
        border-color: var(--primary);
    }

    .btn-outline:hover::after {
        width: 100%;
    }

    /* === NAVBAR (MOBILE FIRST) === */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 20px 0;
        transition: var(--transition);
        backdrop-filter: blur(10px);
        background-color: transparent;
    }

    .navbar.scrolled {
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 15px 0;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
        width: 100%;
    }

    .logo {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--white);
        text-decoration: none;
        display: flex;
        align-items: center;
        transition: var(--transition);
    }

    .logo.scrolled-logo {
        color: var(--logo-black);
    }

    .logo i {
        margin-right: 8px;
        color: var(--logo-red);
        font-size: 1.8rem;
    }

    .logo span:first-child {
        color: var(--white);
        font-weight: 900;
    }

    .logo span:last-child {
        color: var(--logo-red);
        font-weight: 900;
    }

    .scrolled-logo span:first-child {
        color: var(--logo-black);
    }

    /* === MOBILE TOGGLE === */
    .mobile-toggle {
        display: flex;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--white);
        cursor: pointer;
        transition: var(--transition);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        z-index: 1001;
    }

    .mobile-toggle.scrolled-toggle {
        color: var(--logo-black);
        background: rgba(0, 0, 0, 0.05);
    }

    .mobile-toggle.active {
        color: var(--logo-red);
        transform: rotate(90deg);
    }

    /* === NAV MENU (MOBILE) === */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 100px 20px 40px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        z-index: 999;
        list-style: none;
    }

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

    .nav-item {
        margin-bottom: 10px;
        width: 100%;
        position: relative;
    }

    .nav-link {
        color: var(--text);
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: var(--transition);
        padding: 15px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
        position: relative;
    }

    .nav-link.active {
        color: var(--primary);
    }

    .nav-link:hover {
        color: var(--primary);
    }

    .dropdown-icon {
        margin-left: 5px;
        transition: transform 0.3s ease;
        font-size: 0.9rem;
    }

    .dropdown-icon.rotated {
        transform: rotate(180deg);
    }

    /* === DROPDOWN MENU (MOBILE) === */
    .dropdown {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        margin-left: 15px;
        border-left: 2px solid var(--primary);
        padding-left: 15px;
    }

    .dropdown.active {
        max-height: 400px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .dropdown-item {
        display: block;
        padding: 12px 0;
        color: var(--text);
        text-decoration: none;
        transition: var(--transition);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-weight: 500;
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .dropdown-item:hover {
        color: var(--primary);
        padding-left: 10px;
    }

    /* === CONTACT HERO === */
    .contact-hero {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(187, 0, 0, 0.7)), url('images/contact-hero.jpg');
        background-size: cover;
        background-position: center;
        color: var(--white);
        text-align: center;
        padding: 180px 0 100px;
        margin-top: 0;
        min-height: 80vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .contact-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23bb0000' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        animation: shimmer 20s linear infinite;
    }

    .contact-hero-content {
        max-width: 100%;
        z-index: 3;
        opacity: 1;
        transform: translateY(0);
        padding: 0 15px;
        width: 100%;
    }

    .contact-hero h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        background: linear-gradient(135deg, #ffffff, #ff9999);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .contact-hero p {
        font-size: 1.3rem;
        max-width: 700px;
        margin: 0 auto 30px;
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    }

    .floating-icons {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
    }

    .floating-icon {
        position: absolute;
        font-size: 2rem;
        color: rgba(255, 255, 255, 0.2);
        animation: float 6s ease-in-out infinite;
    }

    .floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
    .floating-icon:nth-child(2) { top: 60%; left: 85%; animation-delay: 1s; }
    .floating-icon:nth-child(3) { top: 40%; left: 90%; animation-delay: 2s; }
    .floating-icon:nth-child(4) { top: 80%; left: 15%; animation-delay: 3s; }
    .floating-icon:nth-child(5) { top: 30%; left: 5%; animation-delay: 4s; }

    /* === CONTACT MAIN === */
    .contact-main {
        position: relative;
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }

    .contact-container {
        display: flex;
        flex-direction: column;
        gap: 60px;
        width: 100%;
    }

    /* === CONTACT CARDS === */
    .contact-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
    }

    .contact-card {
        background: var(--white);
        border-radius: var(--border-radius);
        padding: 40px 30px;
        box-shadow: var(--box-shadow-lg);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
        position: relative;
        overflow: hidden;
        border-top: 5px solid var(--primary);
        opacity: 0;
        transform: translateY(30px);
    }

    .contact-card.animated {
        animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .contact-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 60px rgba(187, 0, 0, 0.15);
    }

    .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--primary), #000000);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.6s ease;
    }

    .contact-card:hover::before {
        transform: scaleX(1);
    }

    .contact-card-icon {
        width: 90px;
        height: 90px;
        background: linear-gradient(135deg, rgba(187, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        color: var(--primary);
        font-size: 2.5rem;
        transition: all 0.6s ease;
        position: relative;
        z-index: 1;
    }

    .contact-card:hover .contact-card-icon {
        background: linear-gradient(135deg, var(--primary), #000000);
        color: var(--white);
        transform: rotateY(360deg);
        box-shadow: 0 10px 20px rgba(187, 0, 0, 0.3);
    }

    .contact-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--text);
        position: relative;
        display: inline-block;
    }

    .contact-card h3::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, var(--primary), transparent);
        transition: width 0.4s ease;
    }

    .contact-card:hover h3::after {
        width: 80px;
    }

    .contact-card p {
        color: #6B7280;
        margin-bottom: 20px;
        font-size: 1rem;
        line-height: 1.6;
    }

    .contact-link {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .contact-link:hover {
        color: #000000;
        gap: 12px;
    }

    /* === GOOGLE MAPS SECTION === */
    .map-section {
        padding: 0;
        background: linear-gradient(135deg, #000000, var(--primary));
        position: relative;
        overflow: hidden;
    }

    .map-container {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        height: 600px;
        position: relative;
    }

    #google-map {
        width: 100%;
        height: 100%;
        border-radius: 0;
        z-index: 1;
    }

    .map-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(187, 0, 0, 0.3));
        z-index: 2;
        pointer-events: none;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .map-overlay:hover {
        opacity: 1;
    }

    .map-info-box {
        background: rgba(255, 255, 255, 0.95);
        border-radius: var(--border-radius-sm);
        padding: 30px;
        max-width: 400px;
        text-align: center;
        box-shadow: var(--box-shadow-lg);
        transform: translateY(20px);
        transition: transform 0.4s ease;
    }

    .map-overlay:hover .map-info-box {
        transform: translateY(0);
    }

    .map-info-box h3 {
        color: var(--primary);
        margin-bottom: 15px;
        font-size: 1.5rem;
    }

    .map-info-box p {
        color: #6B7280;
        margin-bottom: 20px;
    }

    /* Map Fallback Styling */
    .map-fallback {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #000000, var(--primary));
        color: white;
        text-align: center;
        padding: 20px;
    }

    .map-fallback-content {
        max-width: 500px;
    }

    .map-fallback-content h3 {
        color: white;
        margin-bottom: 20px;
        font-size: 1.8rem;
    }

    .map-fallback-content p {
        margin-bottom: 20px;
        opacity: 0.9;
    }

    /* === CONTACT FORM SECTION === */
    .contact-form-section {
        padding: 80px 0;
        background: var(--white);
    }

    .form-container {
        display: flex;
        flex-direction: column;
        gap: 50px;
        width: 100%;
    }

    .form-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }

    .form-header h2 {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .form-header h2::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--logo-red), var(--primary));
        border-radius: 3px;
    }

    .form-header p {
        font-size: 1.1rem;
        color: #6B7280;
        line-height: 1.7;
    }

    .contact-form-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
        width: 100%;
    }

    .form-illustration {
        display: none;
    }

    .contact-form-box {
        background: linear-gradient(135deg, #ffffff, #f8f9fa);
        border-radius: var(--border-radius);
        padding: 50px 40px;
        box-shadow: var(--box-shadow-lg);
        position: relative;
        overflow: hidden;
    }

    .contact-form-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--primary), #000000, var(--accent));
    }

    .form-group {
        margin-bottom: 25px;
        opacity: 0;
        transform: translateY(20px);
        width: 100%;
    }

    .form-group.animated {
        animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .form-label {
        display: block;
        margin-bottom: 10px;
        font-weight: 600;
        color: var(--text);
        font-size: 1rem;
        position: relative;
        padding-left: 10px;
    }

    .form-label::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 16px;
        background: var(--primary);
        border-radius: 2px;
    }

    .form-control {
        width: 100%;
        padding: 16px 20px;
        border: 2px solid var(--gray-light);
        border-radius: 10px;
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: var(--white);
        color: var(--text);
    }

    .form-control:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(187, 0, 0, 0.1);
        transform: translateY(-2px);
    }

    .form-control.error {
        border-color: #ff4444;
        box-shadow: 0 0 0 4px rgba(255, 68, 68, 0.1);
    }

    .error-message {
        color: #ff4444;
        font-size: 0.875rem;
        margin-top: 5px;
        display: none;
    }

    textarea.form-control {
        min-height: 180px;
        resize: vertical;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-submit-btn {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding: 18px;
        font-size: 1.1rem;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .form-submit-btn i {
        margin-right: 10px;
        transition: transform 0.3s ease;
    }

    .form-submit-btn:hover i {
        transform: translateX(5px);
    }

    /* === SOCIAL CONNECT === */
    .social-connect {
        background: linear-gradient(135deg, #000000, var(--primary));
        color: var(--white);
        padding: 80px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .social-connect::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .social-container {
        position: relative;
        z-index: 2;
    }

    .social-header {
        margin-bottom: 50px;
    }

    .social-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: var(--white);
    }

    .social-header p {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9);
        max-width: 600px;
        margin: 0 auto;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 40px;
    }

    .social-icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.8rem;
        text-decoration: none;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .social-icon::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--white);
        transform: scale(0);
        border-radius: 50%;
        transition: transform 0.4s ease;
    }

    .social-icon i {
        position: relative;
        z-index: 1;
        transition: transform 0.4s ease;
    }

    .social-icon:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    .social-icon:hover::before {
        transform: scale(1);
    }

    .social-icon:hover i {
        transform: scale(1.2);
    }

    .social-icon.facebook:hover i { color: #1877F2; }
    .social-icon.twitter:hover i { color: #1DA1F2; }
    .social-icon.linkedin:hover i { color: #0077B5; }
    .social-icon.instagram:hover i { color: #E4405F; }
    .social-icon.whatsapp:hover i { color: #25D366; }
    .social-icon.youtube:hover i { color: #FF0000; }

    .social-text {
        margin-top: 15px;
        font-weight: 600;
        font-size: 0.9rem;
        opacity: 0.8;
    }

    /* === FAQ SECTION === */
    .faq-section {
        background: var(--background);
        padding: 80px 0;
    }

    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        background: var(--white);
        border-radius: var(--border-radius-sm);
        margin-bottom: 20px;
        overflow: hidden;
        box-shadow: var(--box-shadow);
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(20px);
    }

    .faq-item.animated {
        animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .faq-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--box-shadow-lg);
    }

    .faq-question {
        padding: 25px 30px;
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background 0.3s ease;
    }

    .faq-question:hover {
        background: rgba(187, 0, 0, 0.05);
    }

    .faq-question i {
        color: var(--primary);
        transition: transform 0.3s ease;
    }

    .faq-answer {
        padding: 0 30px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
        color: #6B7280;
        line-height: 1.7;
    }

    .faq-item.active .faq-answer {
        padding: 0 30px 25px;
        max-height: 500px;
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    /* === FOOTER === */
    footer {
        background: linear-gradient(135deg, #000000, var(--primary));
        color: var(--white);
        padding: 60px 0 30px;
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
        width: 100%;
    }

    .footer-column {
        opacity: 0;
        transform: translateY(20px);
        width: 100%;
    }

    .footer-column.animated {
        animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .footer-column h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        color: var(--white);
        position: relative;
        display: inline-block;
    }

    .footer-column h3::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 3px;
        background-color: var(--logo-red);
    }

    .footer-column p {
        color: #d1d5db;
        line-height: 1.7;
        margin-bottom: 20px;
        font-size: 1rem;
    }

    .footer-column ul {
        list-style: none;
    }

    .footer-column ul li {
        margin-bottom: 12px;
    }

    .footer-column ul li a {
        color: #d1d5db;
        text-decoration: none;
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 1rem;
    }

    .footer-column ul li a:hover {
        color: var(--logo-red);
    }

    .social-links {
        display: flex;
        gap: 12px;
        margin-top: 20px;
    }

    .social-link {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        text-decoration: none;
        transition: all 0.4s ease;
        font-size: 1.2rem;
    }

    .social-link:hover {
        background-color: var(--logo-red);
        transform: translateY(-3px);
    }

    .copyright {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #d1d5db;
        font-size: 0.9rem;
        width: 100%;
    }

    /* === WHATSAPP BUTTON === */
    .whatsapp-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #25D366, #128C7E);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.8rem;
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
        z-index: 998;
        transition: all 0.4s ease;
        text-decoration: none;
    }

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

    /* === LOADING ANIMATION === */
    .loading {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #000000, var(--primary));
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        transition: opacity 0.5s ease;
    }

    .loading.hidden {
        opacity: 0;
        pointer-events: none;
    }

    .loader {
        width: 60px;
        height: 60px;
        border: 4px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        border-top-color: var(--white);
        animation: spin 1s ease-in-out infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    /* === DROPDOWN FOR DESKTOP === */
    @media (min-width: 992px) {
        .container {
            padding: 0 20px;
        }
        
        .nav-container {
            padding: 0;
        }
        
        .nav-menu {
            position: static;
            width: auto;
            height: auto;
            background: transparent;
            flex-direction: row;
            padding: 0;
            box-shadow: none;
            overflow: visible;
            display: flex;
            right: 0;
        }

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

        .nav-item {
            margin: 0 0 0 25px;
            width: auto;
            position: relative;
        }

        .nav-link {
            color: var(--white);
            padding: 8px 0;
            border-bottom: none;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }

        .navbar.scrolled .nav-link {
            color: var(--text);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--logo-red);
            transition: width 0.3s ease;
        }

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

        .nav-link:hover {
            color: var(--logo-red);
        }

        /* Show dropdown icon on all platforms */
        .nav-link .dropdown-icon {
            display: inline-block;
            margin-left: 8px;
            font-size: 0.8rem;
        }

        .mobile-toggle {
            display: none;
        }

        /* DROPDOWN FOR DESKTOP */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 250px;
            box-shadow: var(--box-shadow-lg);
            border-radius: var(--border-radius-sm);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s ease;
            z-index: 1001;
            padding: 10px 0;
            max-height: none;
            border-left: none;
            padding-left: 0;
            margin-left: 0;
            display: block;
        }

        .dropdown.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(10px);
            max-height: none;
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(10px);
        }

        .dropdown-item {
            padding: 12px 25px;
            color: var(--text);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: block;
        }

        .dropdown-item:hover {
            background: rgba(187, 0, 0, 0.05);
            color: var(--primary);
            padding-left: 30px;
        }
    }

    /* === RESPONSIVE DESIGN === */
    @media (min-width: 576px) {
        .contact-cards {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 768px) {
        .contact-hero h1 {
            font-size: 4rem;
        }

        .contact-hero p {
            font-size: 1.4rem;
        }

        .contact-cards {
            grid-template-columns: repeat(3, 1fr);
        }

        .contact-form-wrapper {
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .form-illustration {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .illustration {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, rgba(187, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .illustration::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, var(--primary), #000000, var(--accent), var(--primary));
            animation: spin 4s linear infinite;
        }

        .illustration::after {
            content: '';
            position: absolute;
            width: calc(100% - 4px);
            height: calc(100% - 4px);
            background: var(--white);
            border-radius: var(--border-radius);
        }

        .illustration-content {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 30px;
        }

        .illustration-content i {
            font-size: 5rem;
            color: var(--primary);
            margin-bottom: 20px;
            display: block;
        }

        .illustration-content h3 {
            color: var(--text);
            margin-bottom: 10px;
            font-size: 1.5rem;
        }

        .illustration-content p {
            color: #6B7280;
            font-size: 1rem;
        }

        .form-row {
            grid-template-columns: repeat(2, 1fr);
        }

        .social-icons {
            gap: 30px;
        }

        .social-icon {
            width: 80px;
            height: 80px;
            font-size: 2rem;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
    }

    @media (min-width: 992px) {
        .contact-cards {
            grid-template-columns: repeat(4, 1fr);
        }

        .footer-container {
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
        }

        .map-container {
            flex-direction: row;
        }

        #google-map {
            border-radius: var(--border-radius) 0 0 var(--border-radius);
        }

        .map-overlay {
            width: 50%;
            right: 0;
            left: auto;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
    }

    @media (max-width: 767px) {
        .container {
            padding: 0 15px;
        }
        
        section {
            padding: 60px 0;
        }
        
        .contact-hero {
            padding: 150px 0 60px;
        }

        .contact-hero h1 {
            font-size: 2.5rem;
        }

        .contact-hero p {
            font-size: 1.1rem;
        }

        .contact-card {
            padding: 30px 20px;
        }

        .contact-card-icon {
            width: 70px;
            height: 70px;
            font-size: 2rem;
        }

        .map-container {
            height: 400px;
        }

        .contact-form-box {
            padding: 30px 20px;
        }

        .form-header h2 {
            font-size: 2rem;
        }

        .social-header h2 {
            font-size: 2rem;
        }

        .social-icon {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
        }
    }
    /* === FAQ SECTION TITLE === */
.section-title {
text-align: center;
margin-bottom: 50px;
opacity: 0;
transform: translateY(20px);
animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.section-icon {
font-size: 3.5rem;
color: var(--primary);
margin-bottom: 20px;
display: inline-block;
animation: float 3s ease-in-out infinite;
position: relative;
}

.section-icon::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80px;
height: 80px;
background: linear-gradient(135deg, rgba(187, 0, 0, 0.1), transparent);
border-radius: 50%;
z-index: -1;
}

.section-title h2 {
font-size: 2.5rem;
color: var(--text);
margin-bottom: 15px;
position: relative;
display: inline-block;
}

.section-title h2::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background: linear-gradient(90deg, var(--primary), #000000);
border-radius: 2px;
transition: width 0.4s ease;
}

.section-title:hover h2::after {
width: 100px;
}

.section-title p {
font-size: 1.1rem;
color: #6B7280;
max-width: 600px;
margin: 20px auto 0;
line-height: 1.6;
}

/* === RESPONSIVE DESIGN FOR FAQ TITLE === */
@media (max-width: 767px) {
.section-title {
    margin-bottom: 40px;
}

.section-icon {
    font-size: 2.8rem;
}

.section-icon::after {
    width: 65px;
    height: 65px;
}

.section-title h2 {
    font-size: 2rem;
}

.section-title p {
    font-size: 1rem;
    padding: 0 15px;
}
}

@media (min-width: 768px) and (max-width: 991px) {
.section-title h2 {
    font-size: 2.2rem;
}
}

@media (min-width: 992px) {
.section-title h2 {
    font-size: 2.8rem;
}
}