/* Contact Page Specific Styles */

/* Active Navigation Link */
.nav-links a.active,
.mobile-menu a.active {
    color: var(--primary-red);
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
}

/* Contact Hero Section */
.contact-hero {
    margin-top: 0px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--primary-red) 100%);
}

.contact-hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

.contact-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-hero-content h1 span {
    color: var(--white);
    text-shadow: 2px 2px 0 var(--gold);
}

.contact-hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    line-height: 1.8;
}

/* Contact Stats - UPDATED to match why-us.css */
.contact-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    min-width: 120px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(151, 4, 4, 0.1), rgba(201, 162, 39, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--gold);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(201, 162, 39, 0.2);
}

.stat-item:hover::before {
    opacity: 1;
}

/* 24/7 Stat Item - Updated to match why-us.css exactly */
.stat-item:nth-child(1) {
    border: 2px solid var(--gold);
    position: relative;
    overflow: visible;
}

.stat-item:nth-child(1)::after {
    content: '24/7';
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--gold);
    color: var(--navy-blue);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    transform: rotate(15deg);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(201, 162, 39, 0.8);
    }
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.stat-item:nth-child(1) .stat-number {
    color: var(--gold);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
    color: var(--gold);
    transform: translateY(-2px);
}

/* Contact Hero Visual */
.contact-hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.contact-illustration {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.illustration-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.illustration-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseDot 2s ease-in-out infinite;
}

.illustration-line {
    width: 250px;
    height: 250px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseLine 3s ease-in-out infinite;
}

.clock-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 4rem;
    transform: translate(-50%, -50%);
    animation: clockSpin 60s linear infinite;
}

@keyframes clockSpin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulseDot {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.7);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 0 0 0 20px rgba(201, 162, 39, 0);
    }
}

@keyframes pulseLine {
    0%, 100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background: var(--off-white);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

/* Contact Form */
.contact-form-section {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-section .section-header {
    text-align: left;
    margin-bottom: 2.5rem;
}

.contact-form-section .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact-form {
    position: relative;
}

/* FORM FIXES - Align icons and placeholders properly */
.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Form input container for proper icon alignment */
.form-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input-container input,
.form-input-container select,
.form-input-container textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    background: var(--white);
    appearance: none;
    -webkit-appearance: none;
}

/* Fix for select arrow */
.form-input-container select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23970404' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 3rem;
}

.form-input-container input:focus,
.form-input-container select:focus,
.form-input-container textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(151, 4, 4, 0.1);
}

.form-input-container input:hover,
.form-input-container select:hover,
.form-input-container textarea:hover {
    border-color: var(--gray);
}

/* Fix placeholder text alignment */
.form-input-container input::placeholder,
.form-input-container textarea::placeholder {
    color: var(--gray);
    opacity: 0.8;
}

/* Align icons properly */
.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--primary-red);
    pointer-events: none;
    z-index: 2;
}

/* Adjust for textarea */
.form-input-container.textarea-container {
    align-items: flex-start;
}

.form-input-container.textarea-container textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 1rem;
}

.form-input-container.textarea-container .input-icon {
    top: 1.5rem;
    transform: none;
}

/* Fix phone input placeholder visibility */
#phone::placeholder {
    color: var(--gray);
    opacity: 0.8;
}

/* Update form row spacing */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-red);
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    color: var(--dark-gray);
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(185, 28, 28, 0.3);
}

.send-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .send-icon {
    transform: translateX(5px);
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s ease-out 0.2s both;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.form-success h3 {
    font-size: 2rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.success-note {
    color: var(--primary-red) !important;
    font-size: 1rem !important;
    margin: 1rem 0 !important;
    padding: 1rem;
    background: rgba(151, 4, 4, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.info-header h3 {
    font-size: 1.8rem;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.info-header h3::after {
    content: '24/7';
    position: absolute;
    top: -8px;
    right: -35px;
    background: var(--primary-red);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.info-header p {
    color: var(--gray);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-method:hover {
    background: var(--light-gray);
    transform: translateX(5px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--gold), var(--primary-red));
}

.contact-method:nth-child(1) .method-icon {
    background: linear-gradient(135deg, var(--gold), var(--primary-red));
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(201, 162, 39, 0);
    }
}

.method-content h4 {
    color: var(--navy-blue);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-method:nth-child(1) .method-content h4 {
    color: var(--primary-red);
    font-weight: 700;
}

.method-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: var(--dark-red);
    transform: translateX(3px);
}

/* 24/7 Availability Styles */
.business-hours {
    margin: 2rem 0;
    padding: 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(151, 4, 4, 0.05), rgba(201, 162, 39, 0.05));
    border: 1px solid rgba(151, 4, 4, 0.1);
}

.business-hours h4 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.business-hours h4::before {
    content: '🕒';
    font-size: 1.1rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(151, 4, 4, 0.1);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item span:first-child {
    color: var(--dark-gray);
    font-weight: 500;
}

.hours-item span:last-child {
    color: var(--primary-red);
    font-weight: 600;
}

.available-now {
    color: var(--primary-red) !important;
    font-weight: 700 !important;
    animation: pulse 2s infinite;
    position: relative;
    padding-right: 20px;
}

.available-now::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.availability-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(151, 4, 4, 0.1), rgba(201, 162, 39, 0.1));
    border-radius: 8px;
    border: 1px solid rgba(151, 4, 4, 0.2);
}

.availability-badge .dot {
    width: 10px;
    height: 10px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

.availability-badge span:last-child {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Social Connect */
.social-connect h4 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* FAQ Section */
.faq-section {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-section h3 {
    font-size: 1.8rem;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
    position: relative;
}

.faq-section h3::after {
    content: '24/7';
    position: absolute;
    top: -8px;
    right: 0;
    background: var(--primary-red);
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(151, 4, 4, 0.1);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
}

.faq-question h4 {
    color: var(--navy-blue);
    font-size: 1.1rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h4 {
    color: var(--primary-red);
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-red);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-question:hover .faq-toggle {
    background: var(--primary-red);
    color: var(--white);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.7;
}

/* Contact CTA */
.contact-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--navy-blue), var(--primary-red));
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite linear;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.contact-cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-cta:hover h2 {
    transform: translateY(-5px);
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.contact-cta:hover p {
    transform: translateY(-3px);
    opacity: 1;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-cta .btn-primary {
    background: var(--white);
    color: var(--primary-red);
}

.contact-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.contact-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-3px);
}

.availability-notice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 1rem;
}

.availability-notice .dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: blink 2s infinite;
}

/* Live Status Indicator */
.live-status {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-red);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(151, 4, 4, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: blink 2s infinite;
}

.status-text {
    white-space: nowrap;
}

/* Footer Updates */
.footer-section .availability-footer {
    color: var(--gold);
    font-weight: 600;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 6px;
    display: inline-block;
    font-size: 0.9rem;
}

.footer-bottom .footer-note {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-illustration {
        width: 300px;
        height: 300px;
    }
    
    .illustration-circle {
        width: 200px;
        height: 200px;
    }
    
    .clock-icon {
        font-size: 3rem;
    }
}

@media (max-width: 968px) {
    .contact-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 1.5rem;
    }
    
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero-content p {
        font-size: 1.1rem;
    }
    
    .contact-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-form-section .section-header h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-cta h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .live-status {
        bottom: 10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .form-input-container input,
    .form-input-container select,
    .form-input-container textarea {
        padding: 0.9rem 0.9rem 0.9rem 2.5rem;
    }
    
    .input-icon {
        left: 0.9rem;
        font-size: 1.1rem;
    }
    
    .form-input-container select {
        background-position: right 0.9rem center;
        padding-right: 2.5rem;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 1.2rem 0.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .contact-info-card,
    .faq-section {
        padding: 1.5rem;
    }
    
    .contact-cta h2 {
        font-size: 1.8rem;
    }
    
    .contact-cta p {
        font-size: 1.1rem;
    }
    
    .info-header h3::after {
        position: static;
        display: block;
        margin-top: 0.5rem;
        width: fit-content;
    }
    
    .faq-section h3::after {
        position: static;
        display: inline-block;
        margin-left: 0.5rem;
    }
    
    .form-input-container input,
    .form-input-container select,
    .form-input-container textarea {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .contact-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 80px;
        padding: 1rem;
    }
    
    .contact-form-section {
        padding: 1.25rem;
    }
    
    .contact-cta {
        padding: 4rem 1.5rem;
    }
    
    .live-status {
        display: none; /* Hide on very small screens */
    }
    
    .form-input-container input,
    .form-input-container select,
    .form-input-container textarea {
        padding: 0.75rem 0.75rem 0.75rem 2.25rem;
        font-size: 0.9rem;
    }
    
    .input-icon {
        left: 0.75rem;
        font-size: 1rem;
    }
}

/* Loading animations for contact page */
.contact-method,
.faq-item,
.form-group {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.contact-method:nth-child(1) { animation-delay: 0.1s; }
.contact-method:nth-child(2) { animation-delay: 0.2s; }
.contact-method:nth-child(3) { animation-delay: 0.3s; }
.contact-method:nth-child(4) { animation-delay: 0.4s; }

.faq-item:nth-child(1) { animation-delay: 0.2s; }
.faq-item:nth-child(2) { animation-delay: 0.3s; }
.faq-item:nth-child(3) { animation-delay: 0.4s; }
.faq-item:nth-child(4) { animation-delay: 0.5s; }

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.15s; }
.form-group:nth-child(3) { animation-delay: 0.2s; }
.form-group:nth-child(4) { animation-delay: 0.25s; }
.form-group:nth-child(5) { animation-delay: 0.3s; }
.form-group:nth-child(6) { animation-delay: 0.35s; }
.form-group:nth-child(7) { animation-delay: 0.4s; }
.form-group:nth-child(8) { animation-delay: 0.45s; }

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* ===================================
   WhatsApp Integration Styles
   =================================== */

.whatsapp-method {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.whatsapp-method .method-icon {
    background: rgba(255, 255, 255, 0.2);
    font-size: 24px;
}

.whatsapp-method .method-content h4 {
    color: white;
}

.whatsapp-method .method-content p {
    color: rgba(255, 255, 255, 0.9);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    background: white !important;
    color: #25d366 !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.whatsapp-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-link svg {
    fill: #25d366;
}


/* ===================================
   reCAPTCHA Styles
   =================================== */

.recaptcha-container {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.g-recaptcha {
    transform: scale(1);
    transform-origin: 0 0;
}

/* Mobile responsiveness for reCAPTCHA */
@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
    }
}

@media (max-width: 360px) {
    .g-recaptcha {
        transform: scale(0.75);
        transform-origin: 0 0;
    }
}

/* ===================================
   Error Message Styles
   =================================== */

.error-message {
    background: #fee;
    border: 1px solid #fcc;
    color: #c33;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.error-message::before {
    content: '⚠️';
    font-size: 18px;
}

#recaptcha-error {
    margin-top: 10px;
    margin-bottom: 0;
}

/* ===================================
   Form Success Message Enhancement
   =================================== */

.form-success {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 16px;
    border: 2px solid #86efac;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: white;
    animation: success-pop 0.6s ease;
}

@keyframes success-pop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.form-success h3 {
    color: #166534;
    font-size: 28px;
    margin-bottom: 10px;
}

.form-success p {
    color: #15803d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.success-note {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #22c55e;
    margin: 20px 0;
    text-align: left;
}

.success-note strong {
    color: #166534;
}

/* ===================================
   Loading States
   =================================== */

.submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.submit-btn:disabled:hover {
    transform: none;
}

/* Spinner animation for loading state */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.submit-btn.loading .send-icon {
    animation: spin 1s linear infinite;
}

/* ===================================
   Input Validation States
   =================================== */

input:invalid:not(:focus):not(:placeholder-shown),
textarea:invalid:not(:focus):not(:placeholder-shown),
select:invalid:not(:focus):not([value=""]) {
    border-color: #ff4444;
}

input:valid:not(:focus):not(:placeholder-shown),
textarea:valid:not(:focus):not(:placeholder-shown),
select:valid:not(:focus):not([value=""]) {
    border-color: #22c55e;
}

/* ===================================
   Enhanced Contact Method Cards
   =================================== */

.contact-method {
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-method:hover::before {
    left: 100%;
}

/* ===================================
   Accessibility Improvements
   =================================== */

.whatsapp-float:focus,
.whatsapp-link:focus {
    outline: 3px solid #25d366;
    outline-offset: 2px;
}

.submit-btn:focus {
    outline: 3px solid #6366f1;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .whatsapp-float {
        border: 2px solid white;
    }
    
    .error-message {
        border: 2px solid #c33;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .whatsapp-float,
    .success-icon,
    .contact-method::before {
        animation: none;
        transition: none;
    }
}

/* ===================================
   Print Styles
   =================================== */

@media print {
    .whatsapp-float,
    .recaptcha-container {
        display: none;
    }
}

/* ===================================
   Additional Responsive Adjustments
   =================================== */

@media (max-width: 768px) {
    .form-success {
        padding: 30px 20px;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .form-success h3 {
        font-size: 24px;
    }
    
    .whatsapp-method {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .error-message {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .whatsapp-link {
        padding: 8px 16px;
        font-size: 14px;
    }
}
