/* ===========================
   CONTACT PAGE STYLES
   =========================== */

/* HERO SECTION */
.hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.8) 0%, rgba(139, 21, 40, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
}

/* QUICK CONTACT OPTIONS */
.quick-contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.contact-option-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #C41E3A;
    transition: all 0.3s ease;
}

.contact-option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    background: white;
}

.option-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-option-card h3 {
    font-size: 1.2rem;
    color: #2C3E50;
    margin-bottom: 15px;
}

.option-detail {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.option-detail a {
    color: #C41E3A;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.option-detail a:hover {
    text-decoration: underline;
}

.option-benefit {
    font-size: 0.9rem;
    color: #666;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #E8E8E8;
}

/* CONTACT FORM SECTION */
.contact-form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group:last-of-type {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 8px;
}

.required {
    color: #C41E3A;
    font-weight: bold;
}

.optional {
    color: #999;
    font-weight: normal;
    font-size: 0.85rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #E8E8E8;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: white;
    color: #2C3E50;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="date"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C41E3A;
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.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='%23C41E3A' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

/* CHECKBOX GROUP */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #C41E3A;
}

.checkbox-item label {
    margin: 0;
    font-weight: 400;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
}

.checkbox-item input[type="checkbox"]:focus {
    outline: 2px solid #C41E3A;
    outline-offset: 2px;
}

/* ERROR MESSAGE */
.error-message {
    display: block;
    color: #C41E3A;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 1.2em;
}

/* SUBMIT BUTTON */
.btn-lg {
    padding: 15px 40px;
    font-size: 1.05rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    width: 100%;
}

.btn-primary {
    background-color: #C41E3A;
    color: white;
    border: 2px solid #C41E3A;
}

.btn-primary:hover {
    background-color: #8B1528;
    border-color: #8B1528;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

/* AVAILABILITY SECTION */
.availability-section {
    padding: 80px 0;
    background-color: white;
}

.booking-calendar-info {
    margin-bottom: 50px;
}

.booking-calendar-info h3 {
    font-size: 1.2rem;
    color: #2C3E50;
    margin-bottom: 25px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.calendar-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 3px solid #C41E3A;
    transition: all 0.3s ease;
}

.calendar-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.calendar-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.availability-status {
    margin-bottom: 30px;
}

.availability-status h3 {
    font-size: 1.2rem;
    color: #2C3E50;
    margin-bottom: 25px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.status-card {
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.status-card.high {
    background: #f0fdf4;
    border-left-color: #22c55e;
}

.status-card.medium {
    background: #fffbeb;
    border-left-color: #eab308;
}

.status-card.low {
    background: #fef2f2;
    border-left-color: #ef4444;
}

.status-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.status-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.availability-tip {
    background: linear-gradient(135deg, #f8f9fa 0%, #E8E8E8 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #C41E3A;
    margin-top: 30px;
}

.availability-tip p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* BOOKING PROCESS */
.booking-process-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
    align-items: start;
}

.process-step {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-top: 3px solid #C41E3A;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #C41E3A 0%, #8B1528 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 1.1rem;
    color: #2C3E50;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.process-arrow {
    display: none;
    text-align: center;
    font-size: 1.5rem;
    color: #C41E3A;
    align-self: center;
}

@media (min-width: 1200px) {
    .process-timeline {
        grid-template-columns: repeat(7, 1fr);
        gap: 0;
        align-items: stretch;
    }

    .process-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .process-step {
        border-radius: 0;
        border-top: none;
        border-right: 3px solid #C41E3A;
    }

    .process-step:last-of-type {
        border-right: none;
    }
}

/* CANCELLATION POLICY */
.cancellation-section {
    padding: 80px 0;
    background-color: white;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.policy-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #C41E3A;
    text-align: center;
    transition: all 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background: white;
}

.policy-card.special {
    background: linear-gradient(135deg, #fef2f2 0%, #ffe8e8 100%);
    border-left-color: #ef4444;
}

.policy-card h3 {
    font-size: 1.1rem;
    color: #2C3E50;
    margin-bottom: 15px;
}

.policy-amount {
    font-size: 1.5rem;
    color: #C41E3A;
    font-weight: bold;
    margin-bottom: 10px;
}

.policy-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.policy-note {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* FAQ SECTION */
.faq-section-contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-grid-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.faq-item-contact {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item-contact:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.faq-question-contact {
    font-size: 1.05rem;
    color: white;
    background: linear-gradient(135deg, #C41E3A 0%, #8B1528 100%);
    padding: 20px;
    margin: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question-contact::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item-contact.active .faq-question-contact::after {
    transform: rotate(45deg);
}

.faq-answer-contact {
    padding: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-contact.active .faq-answer-contact {
    max-height: 500px;
}

.faq-answer-contact p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* DIRECT CONTACT INFO */
.direct-contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.contact-info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #C41E3A;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    background: white;
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-info-card h3 {
    font-size: 1.15rem;
    color: #2C3E50;
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-info-card p:last-child {
    margin-bottom: 0;
}

.contact-info-card a {
    color: #C41E3A;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.info-description {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

/* WHAT TO EXPECT SECTION */
.what-to-expect-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.journey-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

.journey-phase {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #C41E3A;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.journey-phase:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.phase-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 15px;
}

.phase-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C41E3A 0%, #8B1528 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
}

.phase-header h3 {
    font-size: 1.15rem;
    color: #2C3E50;
    margin: 0;
}

.phase-intro {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.phase-details {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
}

.phase-details p {
    font-size: 0.95rem;
    color: #2C3E50;
    font-weight: 600;
    margin-bottom: 10px;
}

.phase-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phase-details li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.phase-details li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #C41E3A;
    font-weight: bold;
}

/* TRUST & SECURITY SECTION */
.trust-security-section {
    padding: 80px 0;
    background-color: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.trust-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-top: 3px solid #C41E3A;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.trust-card h3 {
    font-size: 1.1rem;
    color: #2C3E50;
    margin-bottom: 15px;
}

.trust-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-card li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.trust-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #C41E3A;
    font-weight: bold;
}

/* SPECIAL OFFERS SECTION */
.special-offers-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.offer-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-top: 3px solid #C41E3A;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.offer-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #C41E3A 0%, #8B1528 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.offer-card h3 {
    font-size: 1.15rem;
    color: #2C3E50;
    margin-bottom: 12px;
    margin-top: 10px;
}

.offer-condition {
    font-size: 0.95rem;
    color: #C41E3A;
    font-weight: 600;
    margin-bottom: 10px;
}

.offer-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* FINAL WORDS SECTION */
.final-words-section {
    padding: 80px 0;
    background-color: white;
}

.final-words-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-words-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.final-words-content p:last-of-type {
    margin-bottom: 0;
}

.final-highlight {
    font-size: 1.15rem;
    color: #C41E3A;
    font-weight: 600;
    margin-top: 30px !important;
}

/* FINAL CTA SECTION */
.final-cta-section-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #C41E3A 0%, #8B1528 100%);
    color: white;
    text-align: center;
}

.final-cta-section-contact .section-title {
    color: white;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    margin-top: 40px;
}

.btn-secondary {
    background-color: white;
    color: #C41E3A;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    color: #C41E3A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-tertiary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-tertiary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
}

/* TRUST ELEMENTS CONTACT */
.trust-elements-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.trust-item-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.trust-icon-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.3rem;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.trust-item-contact p {
    color: white;
    font-size: 0.9rem;
    margin: 0;
}

/* SECTION TITLE */
.section-title {
    font-size: 2rem;
    color: #2C3E50;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #C41E3A 0%, transparent 100%);
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-option-card,
.process-step,
.policy-card,
.faq-item-contact,
.contact-info-card,
.journey-phase,
.trust-card,
.offer-card {
    animation: fadeInUp 0.6s ease-out;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .contact-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .policy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .quick-contact-section,
    .contact-form-section,
    .availability-section,
    .booking-process-section,
    .cancellation-section,
    .faq-section-contact,
    .direct-contact-section,
    .what-to-expect-section,
    .trust-security-section,
    .special-offers-section,
    .final-words-section,
    .final-cta-section-contact {
        padding: 50px 0;
    }

    .contact-form {
        padding: 25px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .contact-options-grid,
    .policy-grid,
    .status-grid,
    .calendar-grid,
    .faq-grid-contact,
    .contact-info-grid,
    .trust-grid,
    .offers-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }

    .trust-elements-contact {
        grid-template-columns: repeat(2, 1fr);
    }

    .option-detail,
    .contact-info-card p {
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 350px;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .quick-contact-section,
    .contact-form-section,
    .availability-section,
    .booking-process-section,
    .cancellation-section,
    .faq-section-contact,
    .direct-contact-section,
    .what-to-expect-section,
    .trust-security-section,
    .special-offers-section,
    .final-words-section,
    .final-cta-section-contact {
        padding: 40px 0;
    }

    .contact-form {
        padding: 20px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .contact-option-card,
    .process-step,
    .policy-card,
    .faq-item-contact,
    .contact-info-card,
    .journey-phase,
    .trust-card,
    .offer-card {
        padding: 20px;
    }

    .option-icon,
    .info-icon {
        font-size: 2rem;
    }

    .step-number,
    .phase-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .contact-option-card h3,
    .policy-card h3,
    .contact-info-card h3,
    .trust-card h3,
    .offer-card h3 {
        font-size: 1rem;
    }

    .option-detail,
    .policy-card p,
    .contact-info-card p,
    .trust-card li,
    .offer-description,
    .phase-intro {
        font-size: 0.85rem;
    }

    .policy-amount {
        font-size: 1.3rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.85rem;
        padding: 10px;
    }

    .checkbox-item label {
        font-size: 0.85rem;
    }

    .final-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-lg {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .trust-elements-contact {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .trust-item-contact {
        justify-content: flex-start;
    }

    .trust-icon-contact {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }

    .trust-item-contact p {
        font-size: 0.8rem;
    }

    .final-words-content p {
        font-size: 0.95rem;
    }

    .phase-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-question-contact {
        padding: 15px;
        font-size: 0.95rem;
    }

    .faq-answer-contact {
        padding: 15px;
    }

    .faq-answer-contact p {
        font-size: 0.85rem;
    }
}

/* INTERACTIVE ELEMENTS */
.contact-option-card,
.process-step,
.policy-card,
.faq-item-contact,
.contact-info-card,
.journey-phase,
.trust-card,
.offer-card {
    position: relative;
    overflow: hidden;
}

.contact-option-card::before,
.process-step::before,
.policy-card::before,
.faq-item-contact::before,
.contact-info-card::before,
.journey-phase::before,
.trust-card::before,
.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-option-card:hover::before,
.process-step:hover::before,
.policy-card:hover::before,
.faq-item-contact:hover::before,
.contact-info-card:hover::before,
.journey-phase:hover::before,
.trust-card:hover::before,
.offer-card:hover::before {
    left: 100%;
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
    .contact-option-card,
    .process-step,
    .policy-card,
    .faq-item-contact,
    .contact-info-card,
    .journey-phase,
    .trust-card,
    .offer-card {
        animation: none;
        transition: none;
    }

    .contact-option-card::before,
    .process-step::before,
    .policy-card::before,
    .faq-item-contact::before,
    .contact-info-card::before,
    .journey-phase::before,
    .trust-card::before,
    .offer-card::before {
        animation: none;
        transition: none;
    }
}

/* DARK MODE SUPPORT (Optional) */
@media (prefers-color-scheme: dark) {
    .contact-form,
    .contact-option-card,
    .process-step,
    .policy-card,
    .faq-item-contact,
    .contact-info-card,
    .journey-phase,
    .trust-card,
    .offer-card {
        background-color: #2C3E50;
        color: #E8E8E8;
    }

    .quick-contact-section,
    .availability-section,
    .direct-contact-section,
    .trust-security-section,
    .special-offers-section,
    .final-words-section {
        background-color: #1a1a1a;
    }

    .contact-form-section,
    .booking-process-section,
    .faq-section-contact,
    .what-to-expect-section {
        background-color: #2C3E50;
    }

    .section-title,
    .contact-option-card h3,
    .process-step h3,
    .policy-card h3,
    .faq-question-contact,
    .contact-info-card h3,
    .journey-phase h3,
    .trust-card h3,
    .offer-card h3,
    .final-words-content p {
        color: #E8E8E8;
    }

    .option-detail,
    .policy-card p,
    .contact-info-card p,
    .journey-phase p,
    .trust-card li,
    .offer-description,
    .phase-intro,
    .phase-details p,
    .phase-details li {
        color: #CCC;
    }

    .phase-details {
        background-color: #1a1a1a;
    }

    .availability-tip {
        background: #1a1a1a;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        background-color: #1a1a1a;
        color: #E8E8E8;
        border-color: #444;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #666;
    }

    .form-group label {
        color: #E8E8E8;
    }
}

/* PRINT STYLES */
@media print {
    .hero,
    .final-cta-section-contact,
    .final-cta-buttons {
        display: none;
    }

    .contact-option-card,
    .process-step,
    .policy-card,
    .faq-item-contact,
    .contact-info-card,
    .journey-phase,
    .trust-card,
    .offer-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #DDD;
    }

    .contact-form {
        page-break-inside: avoid;
    }
}

/* ENHANCED TYPOGRAPHY */
.option-benefit,
.policy-amount,
.offer-condition,
.final-highlight {
    font-weight: 600;
}

.policy-note {
    font-weight: 500;
}

/* BORDER RADIUS CONSISTENCY */
.contact-option-card,
.process-step,
.policy-card,
.faq-item-contact,
.contact-info-card,
.journey-phase,
.trust-card,
.offer-card,
.contact-form,
.availability-tip {
    border-radius: 12px;
}

/* SHADOW CONSISTENCY */
.process-step,
.contact-info-card,
.journey-phase,
.trust-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.process-step:hover,
.contact-info-card:hover,
.journey-phase:hover,
.trust-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* SMOOTH SCROLLING */
html {
    scroll-behavior: smooth;
}

/* FOCUS VISIBLE FOR ACCESSIBILITY */
*:focus-visible {
    outline: 2px solid #C41E3A;
    outline-offset: 2px;
}

/* TRANSITION TIMING */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* CONTAINER PADDING */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ENHANCED BUTTON STYLES */
.btn-lg {
    cursor: pointer;
    text-align: center;
}

.btn-lg:active {
    transform: translateY(0);
}

/* LINK STYLES */
a {
    transition: all 0.3s ease;
}

/* FORM INPUT TRANSITIONS */
.form-group input,
.form-group select,
.form-group textarea {
    transition: all 0.3s ease;
}

/* SPACING UTILITIES */
.contact-option-card > *:last-child,
.process-step > *:last-child,
.policy-card > *:last-child,
.contact-info-card > *:last-child,
.journey-phase > *:last-child,
.trust-card > *:last-child,
.offer-card > *:last-child {
    margin-bottom: 0;
}

/* ENHANCED CONTRAST FOR READABILITY */
.contact-option-card strong,
.trust-card strong,
.offer-condition {
    color: #2C3E50;
}

/* SECTION TRANSITIONS */
.quick-contact-section,
.contact-form-section,
.availability-section,
.booking-process-section,
.cancellation-section,
.faq-section-contact,
.direct-contact-section,
.what-to-expect-section,
.trust-security-section,
.special-offers-section,
.final-words-section {
    transition: background-color 0.3s ease;
}

/* FORM VALIDATION STYLES */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #ef4444;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #22c55e;
}

/* CHECKBOX CUSTOM STYLING */
.checkbox-item input[type="checkbox"]:checked {
    background-color: #C41E3A;
}

/* OFFER BADGE ANIMATION */
.offer-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* FINAL POLISH */
@supports (backdrop-filter: blur(10px)) {
    .contact-option-card,
    .process-step,
    .policy-card,
    .faq-item-contact,
    .contact-info-card,
    .journey-phase,
    .trust-card,
    .offer-card {
        backdrop-filter: blur(0px);
    }
}

/* RESPONSIVE GRID ADJUSTMENTS */
@media (min-width: 769px) and (max-width: 1024px) {
    .contact-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-elements-contact {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ENHANCED FAQ STYLING */
.faq-question-contact {
    user-select: none;
}

.faq-question-contact:hover {
    background: linear-gradient(135deg, #8B1528 0%, #5a0f1a 100%);
}

/* PROCESS TIMELINE RESPONSIVE */
@media (max-width: 1199px) {
    .process-timeline {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .process-arrow {
        display: none;
    }
}

/* JOURNEY PHASE ENHANCED */
.journey-phase {
    position: relative;
}

.journey-phase::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 4px;
    height: 0;
    background: #C41E3A;
    transition: height 0.3s ease;
}

.journey-phase:hover::after {
    height: 100%;
}

/* CONTACT FORM ENHANCED */
.contact-form {
    position: relative;
}

/* OFFER CARD ENHANCED */
.offer-card {
    position: relative;
}

.offer-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #C41E3A;
    transition: width 0.3s ease;
}

.offer-card:hover::after {
    width: 100%;
}

/* TRUST CARD ENHANCED */
.trust-card {
    position: relative;
}

.trust-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: #C41E3A;
    transition: width 0.3s ease;
}

.trust-card:hover::after {
    width: 100%;
}

/* STATUS CARD HOVER EFFECTS */
.status-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.status-card.high:hover {
    background: #dcfce7;
}

.status-card.medium:hover {
    background: #fef9c3;
}

.status-card.low:hover {
    background: #fee2e2;
}

/* CALENDAR ITEM ENHANCED */
.calendar-item.available:hover {
    background: white;
}

/* PHASE DETAILS ENHANCED */
.phase-details ul {
    position: relative;
}

.phase-details ul::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E8E8E8;
}

/* POLICY CARD SPECIAL ENHANCED */
.policy-card.special:hover {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

/* FORM GROUP ENHANCED */
.form-group {
    position: relative;
}

/* INPUT FOCUS ENHANCED */
.form-group input:focus + .error-message,
.form-group select:focus + .error-message,
.form-group textarea:focus + .error-message {
    display: none;
}

/* CHECKBOX GROUP ENHANCED */
.checkbox-group {
    position: relative;
}

/* FAQ ITEM ENHANCED */
.faq-item-contact {
    cursor: pointer;
}

/* CONTACT INFO CARD ENHANCED */
.contact-info-card {
    position: relative;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #C41E3A;
    transition: width 0.3s ease;
}

.contact-info-card:hover::after {
    width: 100%;
}

/* OPTION ICON ANIMATION */
.contact-option-card:hover .option-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* INFO ICON ANIMATION */
.contact-info-card:hover .info-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* STEP NUMBER ANIMATION */
.process-step:hover .step-number {
    transform: rotate(360deg);
    transition: transform 0.6s ease;
}

/* PHASE NUMBER ANIMATION */
.journey-phase:hover .phase-number {
    transform: rotate(360deg);
    transition: transform 0.6s ease;
}

/* OFFER BADGE HOVER */
.offer-card:hover .offer-badge {
    animation: none;
    transform: scale(1.1);
}

/* TEXT ALIGNMENT */
.quick-contact-section .section-title,
.contact-form-section .section-title,
.availability-section .section-title,
.booking-process-section .section-title,
.cancellation-section .section-title,
.faq-section-contact .section-title,
.direct-contact-section .section-title,
.what-to-expect-section .section-title,
.trust-security-section .section-title,
.special-offers-section .section-title,
.final-words-section .section-title,
.final-cta-section-contact .section-title {
    text-align: center;
}

/* ENHANCED SECTION SPACING */
.booking-calendar-info,
.availability-status {
    margin-bottom: 30px;
}

.booking-calendar-info:last-child,
.availability-status:last-child {
    margin-bottom: 0;
}

/* RESPONSIVE SECTION SPACING */
@media (max-width: 768px) {
    .booking-calendar-info,
    .availability-status {
        margin-bottom: 20px;
    }
}

/* FORM WRAPPER ENHANCED */
.form-wrapper {
    position: relative;
}

/* BUTTON GROUP SPACING */
.final-cta-buttons .btn-lg {
    min-width: 250px;
}

@media (max-width: 768px) {
    .final-cta-buttons .btn-lg {
        min-width: 100%;
    }
}

/* ENHANCED LINK STYLING */
.option-detail a,
.contact-info-card a {
    display: inline-block;
}

.option-detail a:hover,
.contact-info-card a:hover {
    transform: translateX(3px);
}

/* FORM LABEL ENHANCED */
.form-group label {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* REQUIRED INDICATOR */
.required {
    display: inline-block;
}

/* OPTIONAL INDICATOR */
.optional {
    display: inline-block;
}

/* SELECT DROPDOWN ENHANCED */
.form-group select:hover {
    border-color: #C41E3A;
}

/* TEXTAREA ENHANCED */
.form-group textarea {
    font-family: inherit;
}

/* CHECKBOX LABEL ENHANCED */
.checkbox-item label {
    user-select: none;
}

/* ERROR MESSAGE ENHANCED */
.error-message {
    font-style: italic;
}

/* TRUST ITEM ENHANCED */
.trust-item-contact {
    transition: all 0.3s ease;
}

.trust-item-contact:hover {
    transform: scale(1.05);
}

/* PHASE HEADER ENHANCED */
.phase-header {
    position: relative;
}

/* POLICY AMOUNT ENHANCED */
.policy-amount {
    display: block;
}

/* OFFER CONDITION ENHANCED */
.offer-condition {
    display: block;
}

/* INFO DESCRIPTION ENHANCED */
.info-description {
    font-style: italic;
}

/* FINAL HIGHLIGHT ENHANCED */
.final-highlight {
    display: block;
}

/* PHASE INTRO ENHANCED */
.phase-intro {
    font-style: normal;
}

/* OPTION BENEFIT ENHANCED */
.option-benefit {
    font-style: italic;
}

/* POLICY NOTE ENHANCED */
.policy-note {
    font-style: normal;
}

/* CALENDAR ITEM RESPONSIVE */
@media (max-width: 480px) {
    .calendar-item {
        padding: 15px;
    }
}

/* STATUS CARD RESPONSIVE */
@media (max-width: 480px) {
    .status-card {
        padding: 15px;
    }
}

/* AVAILABILITY TIP RESPONSIVE */
@media (max-width: 480px) {
    .availability-tip {
        padding: 15px;
    }
}

/* FORM BUTTON RESPONSIVE */
@media (max-width: 480px) {
    .contact-form .btn-lg {
        padding: 12px 25px;
    }
}

/* ENHANCED GRID GAPS */
@media (min-width: 1200px) {
    .contact-options-grid,
    .policy-grid,
    .trust-grid,
    .offers-grid {
        gap: 30px;
    }
}

/* ENHANCED CARD PADDING */
@media (min-width: 1200px) {
    .contact-option-card,
    .policy-card,
    .trust-card,
    .offer-card {
        padding: 35px;
    }
}

/* ENHANCED FORM PADDING */
@media (min-width: 1200px) {
    .contact-form {
        padding: 50px;
    }
}

/* JOURNEY PHASE RESPONSIVE */
@media (max-width: 480px) {
    .journey-phase {
        padding: 20px;
    }

    .phase-details {
        padding: 12px;
    }
}

/* FAQ RESPONSIVE */
@media (max-width: 480px) {
    .faq-grid-contact {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* FINAL WORDS RESPONSIVE */
@media (max-width: 480px) {
    .final-words-content {
        padding: 0 10px;
    }
}

/* TRUST GRID RESPONSIVE */
@media (max-width: 480px) {
    .trust-grid {
        gap: 15px;
    }
}

/* OFFERS GRID RESPONSIVE */
@media (max-width: 480px) {
    .offers-grid {
        gap: 20px;
    }
}

/* CONTACT INFO GRID RESPONSIVE */
@media (max-width: 480px) {
    .contact-info-grid {
        gap: 20px;
    }
}

/* ENHANCED HOVER STATES */
.calendar-item:hover,
.status-card:hover {
    cursor: default;
}

/* FORM ACCESSIBILITY */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
}

/* CHECKBOX ACCESSIBILITY */
.checkbox-item input[type="checkbox"]:focus {
    outline: 2px solid #C41E3A;
    outline-offset: 2px;
}

/* BUTTON ACCESSIBILITY */
.btn-lg:focus {
    outline: 2px solid #C41E3A;
    outline-offset: 2px;
}

/* FAQ ACCESSIBILITY */
.faq-question-contact:focus {
    outline: 2px solid white;
    outline-offset: -2px;
}

/* LINK ACCESSIBILITY */
a:focus-visible {
    outline: 2px solid #C41E3A;
    outline-offset: 2px;
}

/* FINAL ADJUSTMENTS */
.section-title {
    text-align: center;
}

/* CONTAINER RESPONSIVE */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* ENHANCED SECTION BACKGROUNDS */
.quick-contact-section,
.availability-section,
.cancellation-section,
.direct-contact-section,
.trust-security-section,
.final-words-section {
    background-color: white;
}

.contact-form-section,
.booking-process-section,
.faq-section-contact,
.what-to-expect-section,
.special-offers-section {
    background-color: #f8f9fa;
}

/* FINAL POLISH COMPLETE */