/* =========================================================================
   CONTACT PAGE STYLES
   Smart Choice Heating & Cooling
   
   Page-specific styles for the Contact page.
   Uses global styles from reset.css, variables.css, typography.css, layout.css,
   header.css, footer.css, buttons.css, forms.css, and testimonials.css.
   
   Table of Contents:
   1. Mini-Hero Section
   2. Contact Form Section
   3. Contact Options Section
   4. Contact Map Section
   5. CTA Banner Overrides
   6. Responsive Breakpoints
   ========================================================================= */

/* =========================================================================
   1. MINI-HERO SECTION
   Compact hero with light background, trust icons, and CTAs
   ========================================================================= */

.mini-hero {
    position: relative;
    background-image: url('../../assets/images/contact-us.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 60px;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dark overlay for better text readability */
.mini-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 37, 77, 0.75);
    z-index: 1;
}

/* Container */
.mini-hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

/* Main Heading */
.mini-hero-heading {
    font-family: 'Bowlby One', 'Bowlby One SC', cursive;
    font-size: 2.75rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 16px;
    text-transform: none;
}

/* Subtext */
.mini-hero-subtext {
    font-size: 1.2rem;
    color: #FFFFFF;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 32px;
}

/* Feature Icons Row */
.mini-hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.mini-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.mini-feature-item:hover {
    transform: translateY(-4px);
}

.mini-feature-item img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 37, 77, 0.1));
}

.mini-feature-item span {
    font-family: 'Carlito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #3DBF2B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Buttons Row */
.mini-hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.mini-hero-cta .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 14px 28px;
    font-size: 1rem;
    font-family: 'Bowlby One', cursive;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 25px;
    transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
    text-align: center;
    min-height: 44px;
}

.mini-hero-cta .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.mini-hero-cta .btn-cta:active {
    transform: translateY(0);
}

.mini-hero-cta .btn-cta-call {
    background-color: #D80000;
}

.mini-hero-cta .btn-cta-call:hover {
    background-color: #B50000;
}

.mini-hero-cta .btn-cta-quote {
    background-color: #00254D;
}

.mini-hero-cta .btn-cta-quote:hover {
    background-color: #003366;
}


/* =========================================================================
   2. CONTACT FORM SECTION
   Main conversion-focused form with two-column layout
   ========================================================================= */

.contact-form-section {
    background: #ffffff;
    padding: 80px 0;
}

.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.contact-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-title {
    font-family: 'Bowlby One', 'Bowlby One SC', cursive;
    font-size: 2.25rem;
    font-weight: 400;
    color: #00254D;
    line-height: 1.2;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

/* Green underline accent */
.contact-form-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #3DBF2B;
    border-radius: 2px;
}

.contact-form-subtitle {
    font-family: 'Carlito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1rem;
    color: #5a6a7a;
    margin-top: 20px;
}

/* Form Wrapper */
.contact-form {
    background: #f8fafc;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 37, 77, 0.08);
    border: 1px solid rgba(0, 37, 77, 0.06);
}

/* Form Grid - Two columns on desktop */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
    margin-bottom: 24px;
}

/* Full-width form group modifier */
.form-group--full {
    grid-column: 1 / -1;
}

/* Form Labels */
.form-label {
    display: block;
    font-family: 'Carlito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #00254D;
    margin-bottom: 8px;
}

.form-label .required {
    color: #D80000;
    margin-left: 2px;
}

/* Form Fields */
.contact-form .form-field {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Carlito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    color: #00254D;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .form-field:focus {
    outline: none;
    border-color: #3DBF2B;
    box-shadow: 0 0 0 3px rgba(61, 191, 43, 0.15);
}

.contact-form .form-field::placeholder {
    color: #94a3b8;
}

/* Select Field */
.form-field-select {
    appearance: none;
    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='%2300254D' 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 12px center;
    background-size: 18px;
    padding-right: 44px;
    cursor: pointer;
    min-height: 50px;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

/* Textarea */
.contact-form .form-field-textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.5;
}

/* Form Error Message */
.form-error {
    display: block;
    font-family: 'Carlito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.85rem;
    color: #D80000;
    margin-top: 6px;
    min-height: 20px;
}

/* Form Status Message */
.form-message {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-family: 'Carlito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.form-message.success,
.form-message.error {
    display: block;
    animation: fadeIn 0.3s ease-in forwards;
}

.form-message.success {
    background: rgba(61, 191, 43, 0.1);
    border: 1px solid #3DBF2B;
    color: #2a8520;
}

.form-message.error {
    background: rgba(216, 0, 0, 0.1);
    border: 1px solid #D80000;
    color: #b30000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CAPTCHA Wrapper */
.captcha-wrapper {
    margin-bottom: 28px;
}

.captcha-label {
    display: block;
    font-family: 'Carlito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #00254D;
    margin-bottom: 10px;
}

/* Submit Button Wrapper */
.submit-wrapper {
    text-align: center;
}

.btn-submit--large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    font-size: 1.1rem;
    min-width: 200px;
    height: auto;
    width: auto;
}


/* =========================================================================
   3. CONTACT OPTIONS SECTION
   Three-column grid with phone, email, location
   ========================================================================= */

.contact-options {
    background: #f0f4f8;
    padding: 80px 0;
}

.contact-options-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

/* Section Title */
.contact-options-title {
    font-family: 'Bowlby One', 'Bowlby One SC', cursive;
    font-size: 2rem;
    font-weight: 400;
    color: #00254D;
    line-height: 1.2;
    margin-bottom: 48px;
    position: relative;
    display: inline-block;
}

.contact-options-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #3DBF2B;
    border-radius: 2px;
}

/* Options Grid */
.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Individual Option Card */
.contact-option-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    padding: 40px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 37, 77, 0.08);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-option-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 37, 77, 0.15);
}

/* Option Icon */
.contact-option-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(61, 191, 43, 0.1) 0%, rgba(61, 191, 43, 0.05) 100%);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.contact-option-item:hover .contact-option-icon {
    transform: scale(1.1);
}

.contact-option-icon i {
    font-size: 48px;
    color: #3DBF2B;
}

/* Option Label */
.contact-option-label {
    font-family: 'Bowlby One', 'Bowlby One SC', cursive;
    font-size: 1.25rem;
    font-weight: 400;
    color: #00254D;
    margin: 0;
}

/* Option Value */
.contact-option-value {
    font-family: 'Carlito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    color: #3DBF2B;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
}


/* =========================================================================
   4. CONTACT MAP SECTION
   Leaflet map showing office location
   ========================================================================= */

.contact-map {
    background: #00254D;
    padding: 0;
}

.contact-map__container {
    width: 100%;
    height: 400px;
    border-radius: 0;
}

/* Screen reader only class for map heading */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* =========================================================================
   5. CTA BANNER OVERRIDES
   No changes needed - uses global .cta-banner styles
   ========================================================================= */

/* The CTA banner uses the same global styles from home.css */


/* =========================================================================
   6. RESPONSIVE BREAKPOINTS
   Following the exact breakpoints from home.css
   ========================================================================= */

/* ----- 4K Displays (2560px and up) ----- */
@media screen and (min-width: 2560px) {
    .mini-hero {
        padding: 120px 0 100px;
        min-height: 440px;
    }
    
    .mini-hero-container {
        max-width: 1100px;
    }
    
    .mini-hero-heading {
        font-size: 3.5rem;
    }
    
    .mini-hero-subtext {
        font-size: 1.5rem;
    }
    
    .mini-hero-features {
        gap: 64px;
        margin-bottom: 48px;
    }
    
    .mini-feature-item img {
        width: 72px;
        height: 72px;
    }
    
    .mini-feature-item span {
        font-size: 1.1rem;
    }
    
    .mini-hero-cta .btn-cta {
        padding: 18px 36px;
        font-size: 1.15rem;
        border-radius: 28px;
    }
    
    .contact-form-section {
        padding: 100px 0;
    }
    
    .contact-form-container {
        max-width: 1100px;
    }
    
    .contact-form-title {
        font-size: 2.75rem;
    }
    
    .contact-form {
        padding: 56px;
    }
    
    .contact-form-grid {
        gap: 28px 32px;
    }
    
    .contact-form .form-field {
        padding: 18px 20px;
        font-size: 1.1rem;
    }
    
    .form-field-select {
        min-height: 56px;
    }
    
    .contact-options {
        padding: 100px 0;
    }
    
    .contact-options-title {
        font-size: 2.5rem;
        margin-bottom: 64px;
    }
    
    .contact-options-grid {
        gap: 40px;
    }
    
    .contact-option-item {
        padding: 56px 32px;
    }
    
    .contact-option-icon {
        width: 100px;
        height: 100px;
    }
    
    .contact-option-icon i {
        font-size: 60px;
    }
    
    .contact-option-label {
        font-size: 1.5rem;
    }
    
    .contact-option-value {
        font-size: 1.15rem;
    }
    
    .contact-map__container {
        height: 500px;
    }
}

/* ----- Large Desktop (1920px - 2559px) ----- */
@media screen and (min-width: 1920px) and (max-width: 2559px) {
    .mini-hero {
        padding: 100px 0 80px;
        min-height: 400px;
    }
    
    .mini-hero-container {
        max-width: 1000px;
    }
    
    .mini-hero-heading {
        font-size: 3rem;
    }
    
    .mini-hero-subtext {
        font-size: 1.35rem;
    }
    
    .contact-form-container {
        max-width: 1000px;
    }
    
    .contact-form-title {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 48px;
    }
    
    .contact-options-title {
        font-size: 2.25rem;
    }
    
    .contact-map__container {
        height: 450px;
    }
}

/* ----- Standard Desktop (1440px - 1919px) ----- */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
    .mini-hero {
        padding: 80px 0 60px;
    }
    
    .mini-hero-heading {
        font-size: 2.75rem;
    }
    
    .mini-hero-subtext {
        font-size: 1.25rem;
    }
}

/* ----- Small Desktop (1024px - 1439px) ----- */
@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .mini-hero {
        padding: 70px 0 50px;
        min-height: 320px;
    }
    
    .mini-hero-heading {
        font-size: 2.5rem;
    }
    
    .mini-hero-subtext {
        font-size: 1.15rem;
    }
    
    .mini-hero-features {
        gap: 40px;
    }
    
    .mini-feature-item img {
        width: 50px;
        height: 50px;
    }
    
    .contact-form-section {
        padding: 70px 0;
    }
    
    .contact-form-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 36px;
    }
    
    .contact-options {
        padding: 70px 0;
    }
    
    .contact-options-title {
        font-size: 1.85rem;
    }
    
    .contact-option-item {
        padding: 32px 20px;
    }
}

/* ----- Tablets (768px - 1023px) ----- */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .mini-hero {
        padding: 60px 0 50px;
        min-height: 300px;
    }
    
    .mini-hero-container {
        max-width: 700px;
    }
    
    .mini-hero-heading {
        font-size: 2.25rem;
    }
    
    .mini-hero-subtext {
        font-size: 1.1rem;
        margin-bottom: 28px;
    }
    
    .mini-hero-features {
        gap: 32px;
        margin-bottom: 32px;
    }
    
    .mini-feature-item img {
        width: 48px;
        height: 48px;
    }
    
    .mini-feature-item span {
        font-size: 0.85rem;
    }
    
    .mini-hero-cta .btn-cta {
        padding: 12px 24px;
        font-size: 0.95rem;
        min-width: 180px;
        border-radius: 24px;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-form-container {
        max-width: 700px;
    }
    
    .contact-form-title {
        font-size: 1.85rem;
    }
    
    .contact-form {
        padding: 32px;
    }
    
    .contact-form-grid {
        gap: 16px 20px;
    }
    
    .contact-form .form-field {
        padding: 12px 14px;
    }
    
    .contact-options {
        padding: 60px 0;
    }
    
    .contact-options-title {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }
    
    /* Two columns on tablet */
    .contact-options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    /* Center the third item */
    .contact-option-item:last-child {
        grid-column: 1 / -1;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .contact-option-item {
        padding: 32px 20px;
    }
    
    .contact-option-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-option-icon i {
        font-size: 42px;
    }
    
    .contact-map__container {
        height: 350px;
    }
}

/* ----- Large Mobile / Small Tablet (480px - 767px) ----- */
@media screen and (min-width: 480px) and (max-width: 767px) {
    .mini-hero {
        padding: 50px 0 40px;
        min-height: auto;
    }
    
    .mini-hero-container {
        padding: 0 20px;
    }
    
    .mini-hero-heading {
        font-size: 1.85rem;
        margin-bottom: 12px;
    }
    
    .mini-hero-subtext {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .mini-hero-features {
        gap: 24px;
        margin-bottom: 28px;
    }
    
    .mini-feature-item img {
        width: 44px;
        height: 44px;
    }
    
    .mini-feature-item span {
        font-size: 0.8rem;
    }
    
    .mini-hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .mini-hero-cta .btn-cta {
        width: 100%;
        max-width: 300px;
        padding: 14px 24px;
        border-radius: 25px;
    }
    
    .contact-form-section {
        padding: 50px 0;
    }
    
    .contact-form-container {
        padding: 0 20px;
    }
    
    .contact-form-header {
        margin-bottom: 32px;
    }
    
    .contact-form-title {
        font-size: 1.65rem;
    }
    
    .contact-form-subtitle {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 28px 20px;
    }
    
    /* Single column on mobile */
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-form .form-field {
        padding: 12px 14px;
        font-size: 1rem;
    }
    
    .btn-submit--large {
        width: 100%;
        padding: 14px 32px;
    }
    
    .contact-options {
        padding: 50px 0;
    }
    
    .contact-options-container {
        padding: 0 20px;
    }
    
    .contact-options-title {
        font-size: 1.5rem;
        margin-bottom: 36px;
    }
    
    /* Single column on mobile */
    .contact-options-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-option-item {
        padding: 28px 20px;
    }
    
    .contact-option-icon {
        width: 64px;
        height: 64px;
    }
    
    .contact-option-icon i {
        font-size: 40px;
    }
    
    .contact-option-label {
        font-size: 1.15rem;
    }
    
    .contact-option-value {
        font-size: 0.95rem;
    }
    
    .contact-map__container {
        height: 300px;
    }
}

/* ----- Mobile (up to 479px) ----- */
@media screen and (max-width: 479px) {
    .mini-hero {
        padding: 44px 0 36px;
        min-height: auto;
    }
    
    .mini-hero-container {
        padding: 0 16px;
    }
    
    .mini-hero-heading {
        font-size: 1.6rem;
        line-height: 1.25;
        margin-bottom: 10px;
    }
    
    .mini-hero-subtext {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .mini-hero-features {
        gap: 20px;
        margin-bottom: 24px;
    }
    
    .mini-feature-item img {
        width: 40px;
        height: 40px;
    }
    
    .mini-feature-item span {
        font-size: 0.75rem;
    }
    
    .mini-hero-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .mini-hero-cta .btn-cta {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
        border-radius: 22px;
    }
    
    .contact-form-section {
        padding: 44px 0;
    }
    
    .contact-form-container {
        padding: 0 16px;
    }
    
    .contact-form-header {
        margin-bottom: 28px;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
    }
    
    .contact-form-title::after {
        width: 60px;
        height: 3px;
    }
    
    .contact-form-subtitle {
        font-size: 0.95rem;
        margin-top: 16px;
    }
    
    .contact-form {
        padding: 24px 16px;
        border-radius: 12px;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .contact-form .form-field {
        padding: 11px 12px;
        font-size: 0.95rem;
        border-radius: 6px;
    }
    
    .form-field-select {
        min-height: 46px;
    }
    
    .contact-form .form-field-textarea {
        min-height: 120px;
    }
    
    .btn-submit--large {
        padding: 12px 28px;
        font-size: 1rem;
    }
    
    .contact-options {
        padding: 44px 0;
    }
    
    .contact-options-container {
        padding: 0 16px;
    }
    
    .contact-options-title {
        font-size: 1.35rem;
        margin-bottom: 32px;
    }
    
    .contact-options-title::after {
        width: 50px;
        height: 3px;
    }
    
    .contact-options-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-option-item {
        padding: 24px 16px;
        border-radius: 12px;
    }
    
    .contact-option-icon {
        width: 56px;
        height: 56px;
    }
    
    .contact-option-icon i {
        font-size: 36px;
    }
    
    .contact-option-label {
        font-size: 1.1rem;
    }
    
    .contact-option-value {
        font-size: 0.9rem;
    }
    
    .contact-map__container {
        height: 260px;
    }
}

/* ----- Extra Small Mobile (375px and below) ----- */
@media screen and (max-width: 375px) {
    .mini-hero {
        padding: 40px 0 32px;
    }
    
    .mini-hero-container {
        padding: 0 14px;
    }
    
    .mini-hero-heading {
        font-size: 1.45rem;
    }
    
    .mini-hero-subtext {
        font-size: 0.9rem;
    }
    
    .mini-hero-features {
        gap: 16px;
    }
    
    .mini-feature-item img {
        width: 36px;
        height: 36px;
    }
    
    .mini-feature-item span {
        font-size: 0.7rem;
    }
    
    .contact-form-section {
        padding: 40px 0;
    }
    
    .contact-form-container {
        padding: 0 14px;
    }
    
    .contact-form-title {
        font-size: 1.35rem;
    }
    
    .contact-form {
        padding: 20px 14px;
    }
    
    .contact-form-grid {
        gap: 12px;
    }
    
    .contact-form .form-field {
        padding: 10px 11px;
        font-size: 0.9rem;
    }
    
    .form-field-select {
        min-height: 44px;
    }
    
    .contact-options {
        padding: 40px 0;
    }
    
    .contact-options-container {
        padding: 0 14px;
    }
    
    .contact-options-title {
        font-size: 1.25rem;
        margin-bottom: 28px;
    }
    
    .contact-options-grid {
        gap: 14px;
    }
    
    .contact-option-item {
        padding: 20px 14px;
    }
    
    .contact-option-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-option-icon i {
        font-size: 32px;
    }
    
    .contact-option-label {
        font-size: 1rem;
    }
    
    .contact-option-value {
        font-size: 0.85rem;
    }
    
    .contact-map__container {
        height: 220px;
    }
}

/* ----- Minimum Supported Width (320px and below) ----- */
@media screen and (max-width: 320px) {
    .mini-hero {
        padding: 36px 0 28px;
    }
    
    .mini-hero-container {
        padding: 0 12px;
    }
    
    .mini-hero-heading {
        font-size: 1.3rem;
    }
    
    .mini-hero-subtext {
        font-size: 0.85rem;
    }
    
    .mini-hero-features {
        gap: 12px;
    }
    
    .mini-feature-item img {
        width: 32px;
        height: 32px;
    }
    
    .mini-feature-item span {
        font-size: 0.65rem;
    }
    
    .mini-hero-cta .btn-cta {
        padding: 11px 16px;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    .contact-form-section {
        padding: 36px 0;
    }
    
    .contact-form-container {
        padding: 0 12px;
    }
    
    .contact-form-title {
        font-size: 1.25rem;
    }
    
    .contact-form-subtitle {
        font-size: 0.85rem;
    }
    
    .contact-form {
        padding: 18px 12px;
    }
    
    .form-label {
        font-size: 0.85rem;
    }
    
    .contact-form .form-field {
        padding: 9px 10px;
        font-size: 0.85rem;
    }
    
    .form-field-select {
        min-height: 42px;
    }
    
    .btn-submit--large {
        padding: 11px 24px;
        font-size: 0.9rem;
    }
    
    .contact-options {
        padding: 36px 0;
    }
    
    .contact-options-container {
        padding: 0 12px;
    }
    
    .contact-options-title {
        font-size: 1.15rem;
        margin-bottom: 24px;
    }
    
    .contact-options-grid {
        gap: 12px;
    }
    
    .contact-option-item {
        padding: 18px 12px;
    }
    
    .contact-option-icon {
        width: 44px;
        height: 44px;
    }
    
    .contact-option-icon i {
        font-size: 28px;
    }
    
    .contact-option-label {
        font-size: 0.95rem;
    }
    
    .contact-option-value {
        font-size: 0.8rem;
    }
    
    .contact-map__container {
        height: 200px;
    }
}


/* =========================================================================
   ACCESSIBILITY ENHANCEMENTS
   ========================================================================= */

/* Focus visible for form fields */
.contact-form .form-field:focus-visible {
    outline: 2px solid #3DBF2B;
    outline-offset: 2px;
}

/* Focus visible for contact option cards */
.contact-option-item:focus-visible {
    outline: 3px solid #3DBF2B;
    outline-offset: 3px;
}

/* Focus visible for mini-hero buttons */
.mini-hero-cta .btn-cta:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .mini-feature-item,
    .contact-option-item,
    .contact-option-icon {
        transition: none;
    }
    
    .mini-feature-item:hover {
        transform: none;
    }
    
    .contact-option-item:hover {
        transform: none;
    }
    
    .contact-option-item:hover .contact-option-icon {
        transform: none;
    }
}
