/* ===== CONTACT PAGE - COMPLETE STYLING ===== */

:root {
    --primary-color: #8B1538;
    --primary-dark: #6B0F2A;
    --accent-color: #D4145A;
    
    --tech-blue: #2563EB;
    --tech-purple: #7C3AED;
    --tech-cyan: #06B6D4;
    --tech-green: #10B981;
    
    --dark: #0F172A;
    --dark-light: #1E293B;
    --text-light: #ffffff;
    --white: #FFFFFF;
    
    --gradient-primary: linear-gradient(135deg, #8B1538, #D4145A);
    --gradient-glow: linear-gradient(135deg, #8B1538, #D4145A, #2563EB);
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(139, 21, 56, 0.2);
    --shadow-glow: 0 0 30px rgba(139, 21, 56, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== LOGO IMAGE STYLING ===== */
.logo-img {
    width: 160px;
    height: 80px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(139, 21, 56, 0.3));
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 6px 12px rgba(139, 21, 56, 0.5));
    transform: scale(1.05);
}

/* Logo in footer */
.footer .logo-img {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
}


/* ===== CURSOR ===== */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s, transform 0.1s;
    z-index: 10000;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
}

/* ===== PARTICLES ===== */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.5;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(139, 21, 56, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 2rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== STANDARD NAVBAR - ALL PAGES ===== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B1538, #D4145A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text p {
    font-size: 0.8rem;
    color: #64748B;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #8B1538, #D4145A);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.btn-primary {
    background: linear-gradient(135deg, #8B1538, #D4145A);
    color: #FFFFFF;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(139, 21, 56, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(139, 21, 56, 0.8);
}

/* ===== MOBILE NAVBAR ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.95);
        padding: 2rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        color: #8B1538;
    }

    .hamburger {
        display: flex;
    }

    .btn-primary {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.8rem 1.5rem;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .nav-menu {
        padding: 1.5rem;
        gap: 0.8rem;
        top: 60px;
    }

    .btn-primary {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }
}
/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 3vw, 2rem) clamp(2rem, 5vw, 4rem);
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--dark), var(--dark-light), var(--primary-dark));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Icons Animation */
.floating-icon {
    position: absolute;
    width: clamp(40px, 8vw, 60px);
    height: clamp(40px, 8vw, 60px);
    background: rgba(139, 21, 56, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 2vw, 1.8rem);
    color: var(--primary-color);
    animation: floatIcon 4s ease-in-out infinite;
    opacity: 0.8;
}

.icon-1 { top: 15%; left: 5%; animation-delay: 0s; }
.icon-2 { top: 70%; right: 5%; animation-delay: 1s; }
.icon-3 { top: 40%; right: 8%; animation-delay: 2s; }
.icon-4 { top: 60%; left: 3%; animation-delay: 1.5s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.8; }
    25% { transform: translateY(-20px) rotate(10deg); opacity: 0.4; }
    50% { transform: translateY(-40px) rotate(20deg); opacity: 0; }
    75% { transform: translateY(-20px) rotate(10deg); opacity: 0.4; }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 0 clamp(0.5rem, 2vw, 1rem);
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(0.4rem, 1vw, 0.5rem) clamp(1rem, 2vw, 1.5rem);
    background: rgba(139, 21, 56, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    width: fit-content;
    animation: fadeInUp 1s ease;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.2s both;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.text-gradient {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    color: var(--text-light);
    max-width: 600px;
    animation: fadeInUp 1s ease 0.4s both;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: clamp(0.5rem, 1.5vw, 1rem);
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.quick-info {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-top: clamp(1rem, 2vw, 2rem);
    animation: fadeInUp 1s ease 0.8s both;
}

.info-item {
    display: flex;
    gap: clamp(0.5rem, 1.5vw, 1rem);
    align-items: flex-start;
}

.info-item i {
    color: var(--primary-color);
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.info-item .label {
    color: var(--primary-color);
    font-weight: 600;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
}

.info-item p {
    color: var(--white);
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    margin-top: 0.2rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeIn 1s ease 1s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.contact-visual {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.visual-element {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 21, 56, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    animation: float3d 5s ease-in-out infinite;
}

.element-1 { top: 10%; left: 10%; animation-delay: 0s; }
.element-2 { top: 50%; right: 10%; animation-delay: 1.5s; }
.element-3 { bottom: 10%; left: 30%; animation-delay: 3s; }

@keyframes float3d {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-40px) rotateX(20deg); }
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    animation: float 8s ease-in-out infinite;
}

.shape-1 { width: 250px; height: 250px; background: var(--primary-color); top: 10%; right: 0%; }
.shape-2 { width: 200px; height: 200px; background: var(--tech-blue); bottom: 20%; left: 10%; animation-delay: 2s; }
.shape-3 { width: 200px; height: 200px; background: var(--tech-cyan); top: 50%; right: 5%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== SECTIONS ===== */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.section-badge {
    display: inline-block;
    padding: clamp(0.4rem, 1vw, 0.5rem) clamp(1rem, 2vw, 1.5rem);
    background: rgba(139, 21, 56, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
}

.section-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ===== CONTACT INFO SECTION ===== */
.contact-info-section {
    background: var(--dark-light);
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1rem, 2vw, 2rem);
    max-width: 1400px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.contact-card:hover::before {
    opacity: 0.1;
}

.contact-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 80px rgba(139, 21, 56, 0.4);
    border-color: var(--primary-color);
}

.contact-card > * {
    position: relative;
    z-index: 1;
}

.card-icon {
    width: clamp(60px, 12vw, 80px);
    height: clamp(60px, 12vw, 80px);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(1rem, 2vw, 1.5rem);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--white);
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
    transform: rotateY(360deg) scale(1.1);
}

.contact-card h3 {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: clamp(0.5rem, 1vw, 0.8rem);
}

.card-description {
    color: var(--text-light);
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
}

.card-link:hover {
    transform: translateX(5px);
}

.card-hours {
    color: var(--text-light);
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    margin-top: clamp(0.75rem, 1vw, 1rem);
    padding-top: clamp(0.75rem, 1vw, 1rem);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
    background: var(--dark);
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
}

.form-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 3rem);
    max-width: 700px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    animation: slideUp 0.8s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-header {
    text-align: center;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.form-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: clamp(0.3rem, 1vw, 0.5rem);
}

.form-description {
    color: var(--text-light);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.form-group {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--white);
    font-weight: 600;
    margin-bottom: clamp(0.4rem, 1vw, 0.6rem);
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
}

.required {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: clamp(0.6rem, 1.5vw, 0.8rem);
    color: var(--white);
    font-family: inherit;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(100, 116, 139, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(139, 21, 56, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: clamp(100px, 20vh, 150px);
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: clamp(0.5rem, 1vw, 0.8rem);
}

.form-group.checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
}

.btn-submit {
    grid-column: 1 / -1;
    width: 100%;
    gap: clamp(0.5rem, 1vw, 0.8rem);
    justify-content: center;
    margin-top: clamp(0.75rem, 2vw, 1rem);
    padding: clamp(0.6rem, 1.5vw, 0.8rem) clamp(1.5rem, 3vw, 2rem);
}

.form-message {
    grid-column: 1 / -1;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    animation: slideUp 0.5s ease;
}

.success-message {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10B981;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #EF4444;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--dark-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(139, 21, 56, 0.2);
}

.faq-question {
    padding: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--white);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.8rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.8rem 1.8rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-light);
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
    margin-bottom: clamp(1rem, 2vw, 2rem);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3 {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: clamp(0.5rem, 1vw, 0.8rem);
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    flex-wrap: wrap;
}

.social-links a {
    width: clamp(35px, 8vw, 40px);
    height: clamp(35px, 8vw, 40px);
    background: rgba(139, 21, 56, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: clamp(1rem, 2vw, 2rem);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 998;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .hero {
        padding: clamp(4rem, 8vw, 5rem) clamp(1rem, 2.5vw, 1.5rem) clamp(2rem, 4vw, 3rem);
    }

    .hero-content {
        padding: 0 clamp(0.25rem, 1vw, 0.5rem);
    }

    .form-wrapper {
        max-width: 100%;
        padding: clamp(1rem, 3vw, 2rem);
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: clamp(0.75rem, 1.5vw, 1rem);
    }

    .form-group.full-width {
        grid-column: 1 / -1;
    }

    .contact-form-section {
        padding: clamp(1.5rem, 3vw, 2rem) clamp(0.75rem, 2vw, 1rem);
    }

    .contact-info-section {
        padding: clamp(1.5rem, 3vw, 2rem) clamp(0.75rem, 2vw, 1rem);
    }

    .contact-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: clamp(0.75rem, 1.5vw, 1rem);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: clamp(1rem, 2vw, 1.5rem);
    }
}

@media (max-width: 640px) {
    .nav-menu {
        width: 100%;
        max-width: none;
    }

    .hero {
        min-height: auto;
        padding: clamp(5rem, 10vw, 6rem) clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    }

    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    .hero-description {
        font-size: clamp(0.85rem, 2vw, 1rem);
    }

    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .form-wrapper {
        border-radius: 16px;
        margin: 0 clamp(0.5rem, 1vw, 1rem);
    }

    .form-title {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: clamp(0.5rem, 1.2vw, 0.7rem);
        font-size: clamp(0.8rem, 1.3vw, 0.9rem);
    }

    .btn-submit {
        padding: clamp(0.5rem, 1vw, 0.7rem) clamp(1rem, 2vw, 1.5rem);
        font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .card-icon {
        width: clamp(50px, 10vw, 70px);
        height: clamp(50px, 10vw, 70px);
    }

    .footer {
        padding: clamp(1.5rem, 3vw, 2rem) clamp(0.75rem, 1.5vw, 1rem);
    }

    .footer-section h3 {
        font-size: clamp(0.9rem, 1.8vw, 1rem);
    }
}

@media (max-width: 480px) {
    body {
        font-size: clamp(14px, 3vw, 16px);
    }

    .hero {
        padding: clamp(4rem, 8vw, 5rem) clamp(0.5rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.5rem);
    }

    .hero-content {
        gap: clamp(1rem, 2vw, 1.5rem);
    }

    .hero-title {
        font-size: clamp(1.25rem, 4.5vw, 2rem);
        line-height: 1.3;
    }

    .section-header {
        margin-bottom: clamp(1rem, 2vw, 1.5rem);
        padding: 0 clamp(0.5rem, 1vw, 1rem);
    }

    .section-title {
        font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    }

    .contact-form-section {
        padding: clamp(1rem, 2vw, 1.5rem) clamp(0.5rem, 1vw, 0.75rem);
    }

    .form-wrapper {
        padding: clamp(1rem, 2.5vw, 1.5rem);
        max-width: 100%;
        margin: 0 auto;
        border-radius: 12px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: clamp(0.6rem, 1.2vw, 0.8rem);
    }

    .form-title {
        font-size: clamp(1.25rem, 3vw, 1.75rem);
    }

    .form-description {
        font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    }

    .form-group label {
        font-size: clamp(0.7rem, 1.2vw, 0.8rem);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: clamp(0.45rem, 1vw, 0.6rem);
        font-size: clamp(0.75rem, 1.1vw, 0.85rem);
    }

    .form-group textarea {
        min-height: clamp(80px, 15vh, 120px);
    }

    .btn-submit {
        padding: clamp(0.4rem, 0.8vw, 0.6rem) clamp(0.8rem, 1.5vw, 1.2rem);
        font-size: clamp(0.65rem, 1vw, 0.75rem);
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: clamp(0.5rem, 1vw, 0.75rem);
    }

    .contact-card {
        padding: clamp(1rem, 2vw, 1.5rem);
    }

    .card-icon {
        width: clamp(45px, 8vw, 60px);
        height: clamp(45px, 8vw, 60px);
        margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    }

    .contact-card h3 {
        font-size: clamp(0.85rem, 1.8vw, 1.1rem);
    }

    .card-description {
        font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: clamp(1rem, 2vw, 1.5rem);
    }

    .footer-section h3 {
        font-size: clamp(0.85rem, 1.5vw, 0.95rem);
        margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    }

    .footer-section p {
        font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    }

    .social-links {
        gap: clamp(0.5rem, 1vw, 0.75rem);
    }

    .social-links a {
        width: clamp(30px, 6vw, 35px);
        height: clamp(30px, 6vw, 35px);
        font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    }
}

/* Responsive Navigation - Flexible across ALL screen sizes */
@media (max-width: 1200px) {
    .nav-menu {
        gap: clamp(0.8rem, 2vw, 1.5rem);
    }
    
    .nav-link {
        font-size: clamp(0.8rem, 1.8vw, 0.95rem);
    }
}

@media (max-width: 900px) {
    .nav-menu {
        gap: clamp(0.6rem, 1.5vw, 1.2rem);
    }
    
    .nav-link {
        font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    }
}

/* Show hamburger menu when space becomes limited */
@media (max-width: 640px) {
    .nav-container {
        flex-wrap: nowrap;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        right: 0;
        width: 100vw;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: clamp(1.5rem, 4vw, 2rem);
        gap: clamp(1rem, 3vw, 1.5rem);
        border-bottom: 2px solid var(--primary-color);
        display: flex;
        z-index: 999;
        overflow-y: auto;
        transition: left 0.3s ease;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: clamp(0.75rem, 2vw, 1rem);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-color);
        padding-left: clamp(1rem, 3vw, 1.5rem);
    }

    .hamburger {
        display: flex !important;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .btn-primary {
        padding: clamp(0.5rem, 1.5vw, 0.8rem) clamp(1rem, 2.5vw, 1.5rem);
        font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: clamp(0.6rem, 2vw, 1rem) clamp(0.75rem, 3vw, 1.5rem);
    }

    .logo-img {
        width: clamp(80px, 20vw, 120px);
        height: auto;
    }

    .nav-buttons {
        gap: clamp(0.3rem, 1.5vw, 0.75rem);
    }

    .hamburger span {
        width: clamp(18px, 4vw, 22px);
        height: clamp(1.5px, 0.5vw, 2.5px);
    }

    .btn-primary {
        padding: clamp(0.4rem, 1vw, 0.6rem) clamp(0.8rem, 2vw, 1rem);
        font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    }
}

@media (max-width: 360px) {
    .nav-container {
        padding: clamp(0.5rem, 1.5vw, 0.8rem) clamp(0.5rem, 2vw, 1rem);
        gap: clamp(0.2rem, 1vw, 0.5rem);
    }

    .logo-img {
        width: clamp(60px, 15vw, 100px);
        height: auto;
    }

    .logo-text h1 {
        font-size: clamp(0.8rem, 3vw, 1rem);
    }

    .btn-primary {
        padding: clamp(0.3rem, 0.8vw, 0.5rem) clamp(0.6rem, 1.5vw, 0.8rem);
        font-size: clamp(0.6rem, 1vw, 0.75rem);
    }
}