/**
 * State Pages Stylesheet
 * Extracted inline styles from state page templates
 * Created: 2025-10-17
 */

/* ==========================================================================
   Hero Section
   ========================================================================== */

.state-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.state-hero .appoinment-form {
    background-size: cover;
    background-position: center;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.state-hero .appoinment-form .appoinment-title {
    text-align: center;
    margin-bottom: 20px;
}

.state-hero .appoinment-form .appoinment-title h4 {
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
    margin: 0;
}

.state-hero .appoinment-form form input,
.state-hero .appoinment-form form select,
.state-hero .appoinment-form form textarea {
    display: block;
    width: 100%;
    padding: 13px 15px;
    margin-bottom: 15px;
    background-color: #22356f;
    border: 0;
    border-radius: 5px;
    color: #ffffff;
    font-size: 14px;
}

.state-hero .appoinment-form form input::placeholder,
.state-hero .appoinment-form form textarea::placeholder {
    color: #d3d4eb;
}

.state-hero .appoinment-form form select {
    cursor: pointer;
}

.state-hero .appoinment-form form textarea {
    resize: vertical;
    min-height: 100px;
}

.state-hero .appoinment-form form button {
    width: 100%;
    border-radius: 30px;
    height: 48px;
    font-size: 14px;
    margin-top: 10px;
}

@media (max-width: 991.98px) {
    .state-hero .col-lg-4 {
        margin-top: 30px;
    }
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.final-cta-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #043f88 0%, #0557b5 100%);
    margin-top: 50px;
}

.cta-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(4, 63, 136, 0.02),
        rgba(4, 63, 136, 0.02) 10px,
        transparent 10px,
        transparent 20px
    );
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.cta-badge {
    display: inline-block;
    margin-bottom: 20px;
}

.badge-text {
    background: #ff6b35;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.cta-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.cta-subheading {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
    color: white;
}

.cta-value-props {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.value-item i {
    font-size: 1.5rem;
    color: #ffd700;
}

.cta-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cta-btn-primary {
    background: linear-gradient(45deg, #ff6b35, #ff8f5a);
    color: white;
    border: 2px solid transparent;
}

.cta-btn-primary:hover {
    background: linear-gradient(45deg, #ff5722, #ff6b35);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,107,53,0.4);
    color: white;
    text-decoration: none;
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: white;
    color: #043f88;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
    text-decoration: none;
}

.btn-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-main-text {
    font-size: 1rem;
    line-height: 1.2;
}

.btn-sub-text {
    font-size: 0.85rem;
    opacity: 0.9;
}

.cta-trust-line {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.cta-trust-line p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
    color: white;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 768px) {
    .cta-heading {
        font-size: 1.8rem;
    }

    .cta-value-props {
        flex-direction: column;
        gap: 20px;
    }

    .cta-buttons-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
