/* ===================================
   CONTACT PAGE - ULTRA PREMIUM STYLES
   =================================== */

/* Contact Hero */
.contact-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 90px;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920') center/cover;
    filter: brightness(0.3);
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(11, 11, 11, 0.9) 0%,
        rgba(229, 9, 20, 0.3) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 20px;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: var(--black);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-info-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 50px rgba(229, 9, 20, 0.3);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.4);
    transition: var(--transition);
}

.contact-info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-icon i {
    font-size: 36px;
    color: var(--white);
}

.info-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.info-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--light-grey);
    margin-bottom: 20px;
}

.info-text a {
    color: var(--light-grey);
    text-decoration: none;
    transition: var(--transition);
}

.info-text a:hover {
    color: var(--primary-red);
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.info-link:hover {
    gap: 12px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: var(--dark-grey);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
}

.contact-form {
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.form-group label i {
    color: var(--primary-red);
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23E50914' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
}

.form-group select option {
    background: var(--dark-grey);
    color: var(--white);
}

/* Checkbox */
.checkbox-group {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom {
    background: var(--gradient-red);
    border-color: var(--primary-red);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--white);
    font-size: 12px;
}

.checkbox-text {
    font-size: 14px;
    color: var(--light-grey);
    line-height: 1.6;
}

.privacy-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Map Container */
.map-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.map-header {
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.map-header i {
    font-size: 24px;
    color: var(--primary-red);
}

.map-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.map-wrapper {
    position: relative;
    overflow: hidden;
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(100%) invert(90%) contrast(80%);
    transition: var(--transition);
}

.map-container:hover .map-wrapper iframe {
    filter: grayscale(0%) invert(0%) contrast(100%);
}

.btn-block {
    width: 100%;
    margin-top: 0;
}

/* Quick Contact Box */
.quick-contact-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
}

.quick-contact-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.quick-contact-item:last-child {
    border-bottom: none;
}

.quick-contact-item i {
    width: 45px;
    height: 45px;
    background: var(--gradient-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.qc-label {
    display: block;
    font-size: 12px;
    color: var(--light-grey);
    margin-bottom: 4px;
}

.qc-link {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.qc-link:hover {
    color: var(--primary-red);
}

/* Emergency Contact Box */
.emergency-contact-box {
    background: var(--gradient-red);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(229, 9, 20, 0.4);
}

.emergency-contact-box i {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    display: block;
    animation: ring 2s infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

.emergency-contact-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.emergency-contact-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.emergency-phone {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    padding: 18px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: var(--transition);
}

.emergency-phone:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* FAQ Section */
.contact-faq-section {
    padding: 100px 0;
    background: var(--black);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-red);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question span {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.faq-question i {
    font-size: 14px;
    color: var(--primary-red);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question {
    background: rgba(229, 9, 20, 0.1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--light-grey);
}

/* Social Media Section */
.social-media-section {
    padding: 80px 0;
    background: var(--dark-grey);
}

.social-media-content {
    text-align: center;
}

.social-media-content h2 {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.social-media-content p {
    font-size: 18px;
    color: var(--light-grey);
    margin-bottom: 40px;
}

.social-media-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-btn i {
    font-size: 20px;
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-btn.twitter {
    background: #1DA1F2;
}

.social-btn.youtube {
    background: #FF0000;
}

.social-btn.linkedin {
    background: #0A66C2;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--white);
}

/* Form Validation States */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ff4444;
    animation: shake 0.5s;
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: #00C851;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Loading State */
.btn-submit.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-submit.loading span {
    opacity: 0;
}

.btn-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid var(--white);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        order: 1;
    }

    .contact-form-wrapper {
        order: 2;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        margin-top: 70px;
        min-height: 400px;
    }

    .contact-hero-content {
        padding: 80px 20px;
    }

    .contact-info-section,
    .contact-form-section,
    .contact-faq-section,
    .social-media-section {
        padding: 60px 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-wrapper {
        padding: 35px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .social-media-links {
        flex-direction: column;
        align-items: stretch;
    }

    .social-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
    }

    .quick-contact-box {
        padding: 25px 20px;
    }

    .emergency-contact-box {
        padding: 30px 20px;
    }

    .emergency-phone {
        font-size: 20px;
        padding: 15px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

/* Animation Delays */
.contact-info-card:nth-child(1) { animation-delay: 0.1s; }
.contact-info-card:nth-child(2) { animation-delay: 0.2s; }
.contact-info-card:nth-child(3) { animation-delay: 0.3s; }
.contact-info-card:nth-child(4) { animation-delay: 0.4s; }

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }


/* ========== ULTRA PREMIUM CONTACT STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========== PAGE HEADER ========== */

.page-header {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 80px;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

    .page-header-bg::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.6), rgba(255, 107, 53, 0.4));
        mix-blend-mode: multiply;
    }

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 14px;
}

    .breadcrumb a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .breadcrumb a:hover {
            color: #fff;
        }

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.current-page {
    color: #fff;
    font-weight: 600;
}

.page-title {
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.highlight {
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-description {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* ========== CONTACT INFO CARDS ========== */

.contact-info-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    margin-top: -80px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

    .contact-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.08) 50%, transparent 70%);
        animation: rotate 15s linear infinite;
        pointer-events: none;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3);
}

.contact-card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    border-radius: 22px;
    font-size: 38px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.contact-card > p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .contact-link:hover {
        color: #ff6b35;
    }

    .contact-link strong {
        font-size: 18px;
        font-weight: 700;
    }

.contact-hours {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* ========== CONTACT FORM SECTION ========== */

.contact-form-section {
    padding: 80px 0 120px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.section-header {
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    color: #ff6b35;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .form-group label {
        font-size: 14px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 16px 20px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        color: #fff;
        font-size: 15px;
        font-family: 'Inter', sans-serif;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: rgba(255, 107, 53, 0.5);
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 107, 53, 0.06));
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

    .form-group select {
        cursor: pointer;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 140px;
    }

/* Checkbox Styles */
.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
}

    .checkbox-label input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        width: 0;
        height: 0;
    }

.checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input:checked ~ .checkmark {
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    border-color: transparent;
}

    .checkbox-label input:checked ~ .checkmark::after {
        content: '';
        position: absolute;
        left: 6px;
        top: 2px;
        width: 5px;
        height: 10px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

.checkbox-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

    .checkbox-text a {
        color: #ff6b35;
        text-decoration: none;
        font-weight: 600;
    }

        .checkbox-text a:hover {
            text-decoration: underline;
        }

/* CAPTCHA Styles */
.captcha-group {
    margin-top: 10px;
}

.captcha-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.captcha-challenge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.captcha-question {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    min-width: 80px;
}

.captcha-refresh {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .captcha-refresh:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(180deg);
    }

.captcha-container input[type="text"] {
    max-width: 120px;
}

.captcha-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

    .captcha-info i {
        color: #ff6b35;
    }

/* Submit Button */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 45px rgba(255, 107, 53, 0.6);
    }

/* ========== CONTACT SIDEBAR ========== */

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 35px;
    backdrop-filter: blur(20px);
}

    .contact-info-card h3 {
        font-size: 22px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 25px;
    }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .schedule-item:last-child {
        border-bottom: none;
    }

    .schedule-item .day {
        font-size: 15px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.9);
    }

    .schedule-item .hours {
        font-size: 15px;
        font-weight: 700;
        color: #ff6b35;
    }

.quick-contact {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 22px;
    padding: 35px;
    backdrop-filter: blur(20px);
}

    .quick-contact h3 {
        font-size: 22px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 20px;
    }

.quick-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-btn {
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

    .call-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    }

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

    .whatsapp-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    }

/* ========== MAP SECTION ========== */

.map-section {
    padding: 80px 0 120px;
    background: rgba(255, 255, 255, 0.01);
}

    .map-section .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

.map-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 500px;
}

    .map-placeholder iframe {
        width: 100%;
        height: 100%;
        filter: grayscale(20%) brightness(0.9);
    }

.map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
    pointer-events: none;
}

.map-info {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(30, 30, 30, 0.9));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    pointer-events: all;
}

    .map-info h3 {
        font-size: 24px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 8px;
    }

    .map-info p {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 20px;
    }

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .map-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    }

/* ========== MOBILE RESPONSIVE ========== */

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .page-header {
        min-height: 400px;
        padding: 120px 0 60px;
    }

    .page-title {
        font-size: 38px;
    }

    .page-description {
        font-size: 16px;
    }

    .contact-info-section {
        padding: 60px 0;
        margin-top: -60px;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-section {
        padding: 60px 0 80px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .captcha-container {
        flex-direction: column;
        align-items: stretch;
    }

        .captcha-container input[type="text"] {
            max-width: 100%;
        }

    .map-section {
        padding: 60px 0 80px;
    }

    .map-placeholder {
        height: 400px;
    }

    .map-overlay {
        top: 20px;
        left: 20px;
        right: 20px;
    }

    .map-info {
        padding: 25px;
    }
}

