@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/* ===== CONTACT PAGE STYLES ===== */
/* Modern Steam Engineering Contact Page */

/* Base Variables */
:root {
    --primary-blue: #003e52;
    --primary-dark: #002a38;
    --secondary-red: #bc3b4a;
    --accent-orange: #ff6f3c;
    --accent-teal: #00a8b5;
    --dark-color: #1a101e;
    --light-color: #f8f9fa;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #adb5bd;
    --gray-500: #6c757d;
    --gray-600: #495057;
    --gray-700: #343a40;
    --text-dark: #333333;
    --text-medium: #555555;
    --text-light: #777777;
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    --shadow-light: 0 2px 8px rgba(0, 62, 82, 0.08);
    --shadow-medium: 0 6px 20px rgba(0, 62, 82, 0.12);
    --shadow-heavy: 0 12px 32px rgba(0, 62, 82, 0.18);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base - SCOPE TO MAIN ONLY */
#contact-main {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container - SCOPE TO MAIN ONLY */
#contact-main .container {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    /* padding: 0 20px; */
    box-sizing: border-box;
}

/* Section Header - SCOPE TO MAIN ONLY */
#contact-main .section-header {
    text-align: left;
    margin-bottom: 40px;
    box-sizing: border-box;
}

#contact-main .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #363C4F;
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    box-sizing: border-box;
}

#contact-main .section-description {
    font-size: 1rem;
    color: #363C4F;
    margin: 0;
    line-height: 1.7;
    box-sizing: border-box;
}

/* ===== HERO SECTION ===== */
#contact-main .contact-hero {
    padding: 0;
    background-image: url(images/contact-hero.webp);
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
    margin: 0;
}

#contact-main .contact-hero-overlay {
    background: #0000003f;
    width: 100%;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    box-sizing: border-box;
    padding: 0 45px;
}

#contact-main .contact-hero-content {
    text-align: left;
    max-width: 800px;
    margin: 0;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 20px;
    color: white;
    box-sizing: border-box;
}

#contact-main .contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #AA7218, #363C4F);
    color: white;
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    box-shadow: var(--shadow-light);
    animation: pulse 2s infinite;
    box-sizing: border-box;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

#contact-main .contact-hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
    line-height: 1.1;
    text-align: left;
    text-shadow: 3px 3px 4px rgb(0, 0, 0);
    letter-spacing: 1px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 20px 0;
    box-sizing: border-box;
}

#contact-main .contact-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: 0;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

#contact-main .contact-hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
    box-sizing: border-box;
}

#contact-main .stat-item {
    text-align: left;
    padding: 15px;
    min-width: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(5px);
    box-sizing: border-box;
}

#contact-main .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #FCEC9D;
    margin-bottom: 5px;
    line-height: 1;
    box-sizing: border-box;
}

#contact-main .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    #contact-main .contact-hero-title {
        font-size: 2.2rem;
        padding: 15px 0;
    }
    
    #contact-main .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    #contact-main .contact-hero-stats {
        gap: 20px;
        margin-top: 30px;
    }
    
    #contact-main .stat-item {
        padding: 12px;
        min-width: 90px;
    }
    
    #contact-main .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    #contact-main .contact-hero {
        min-height: 20vh;
        justify-content: center;
    }
    
    #contact-main .contact-hero-overlay {
        min-height: 20vh;
        justify-content: center;
        text-align: center;
    }
    
    #contact-main .contact-hero-content {
        text-align: center;
        padding: 30px 20px;
    }
    
    #contact-main .contact-hero-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 10px;
    }
    
    #contact-main .contact-hero-stats {
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    #contact-main .contact-hero-title {
        font-size: 1.6rem;
    }
    
    #contact-main .contact-hero-stats {
        gap: 10px;
    }
    
    #contact-main .stat-item {
        min-width: 80px;
        padding: 10px;
    }
    
    #contact-main .stat-number {
        font-size: 1.5rem;
    }
}

/* ===== CONTACT CHANNELS SECTION ===== */
#contact-main .contact-channels {
    padding: 80px 65px;
    background: white;
    box-sizing: border-box;
}

#contact-main .channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 0 auto;
    box-sizing: border-box;
}

#contact-main .channel-card {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    border: 2px solid #363c4f59;
    box-shadow: var(--shadow-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

#contact-main .channel-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #AA7218, #363C4F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 62, 82, 0.15);
    box-sizing: border-box;
}

#contact-main .channel-title {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 8px;
    font-weight: 700;
    box-sizing: border-box;
}

#contact-main .channel-detail {
    color: #D3A31C;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-sizing: border-box;
}

#contact-main .channel-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 0.9rem;
    box-sizing: border-box;
}

#contact-main .channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #363C4F;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 2px solid transparent;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

#contact-main .channel-btn-emergency {
    background: #AA7218;
    animation: emergencyPulse 1.5s infinite;
}

@keyframes emergencyPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 71, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}

#contact-main .channel-btn-whatsapp {
    background: #25D366;
}

@media (max-width: 992px) {
    #contact-main .contact-channels {
        padding: 60px 20px;
    }
    
    #contact-main .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #contact-main .channel-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    #contact-main .channel-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    #contact-main .channels-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    #contact-main .channel-card {
        padding: 25px 15px;
    }
    
    #contact-main .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    #contact-main .contact-channels {
        padding: 50px 15px;
    }
    
    #contact-main .channel-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    #contact-main .channel-title {
        font-size: 1.1rem;
    }
    
    #contact-main .channel-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ===== CONTACT FORM & INFO SECTION ===== */
#contact-main .contact-form-info-section {
    padding: 80px 65px;
    background: #ddd;
    box-sizing: border-box;
}

#contact-main .form-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Form Section */
#contact-main .form-section {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--gray-200);
    box-sizing: border-box;
}

#contact-main .form-section-header {
    margin-bottom: 25px;
    box-sizing: border-box;
}

#contact-main .form-section-title {
    font-size: 1.6rem;
    color: #363C4F;
    margin-bottom: 10px;
    font-weight: 700;
    box-sizing: border-box;
}

#contact-main .form-section-description {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    box-sizing: border-box;
}

/* Form Tabs */
#contact-main .form-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 25px;
    box-sizing: border-box;
}

#contact-main .form-tab {
    padding: 10px 20px;
    background: var(--gray-100);
    border: none;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
}

#contact-main .form-tab.active {
    background: #363C4F;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 62, 82, 0.2);
}

/* Form Content */
#contact-main .form-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
    box-sizing: border-box;
}

#contact-main .form-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

#contact-main .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

#contact-main .form-group {
    margin-bottom: 15px;
    box-sizing: border-box;
}

#contact-main .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
    box-sizing: border-box;
}

#contact-main .form-group label i {
    color: #AA7218;
    width: 14px;
    box-sizing: border-box;
}

#contact-main .form-group input,
#contact-main .form-group select,
#contact-main .form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid var(--gray-200);
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--gray-700);
    background: white;
    font-family: inherit;
    box-sizing: border-box;
}

#contact-main .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23003e52' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

#contact-main .form-group textarea {
    resize: vertical;
    min-height: 80px;
    box-sizing: border-box;
}

/* Emergency Alert */
#contact-main .emergency-alert {
    text-align: center;
    padding: 30px 20px;
    background: #363c4f23;
    border-radius: 10px;
    box-sizing: border-box;
}

#contact-main .emergency-alert i {
    font-size: 2.5rem;
    color: #AA7218;
    margin-bottom: 15px;
    box-sizing: border-box;
}

#contact-main .emergency-alert h3 {
    color: #c92a2a;
    margin-bottom: 10px;
    font-size: 1.3rem;
    box-sizing: border-box;
}

#contact-main .emergency-alert p {
    color: #e03131;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.4;
    box-sizing: border-box;
}

#contact-main .emergency-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: linear-gradient(135deg, #ff4757, #ff3838);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
    animation: emergencyPulse 1.5s infinite;
    box-sizing: border-box;
}

#contact-main .emergency-note {
    color: #868e96;
    font-size: 0.85rem;
    font-style: italic;
    box-sizing: border-box;
}

/* Form Actions */
#contact-main .form-actions {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--gray-200);
    box-sizing: border-box;
}

#contact-main .form-urgency {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    box-sizing: border-box;
}

#contact-main .urgency-label {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.9rem;
    box-sizing: border-box;
}

#contact-main .urgency-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    box-sizing: border-box;
}

#contact-main .urgency-badge {
    cursor: pointer;
    box-sizing: border-box;
}

#contact-main .urgency-badge input {
    display: none;
}

#contact-main .badge-content {
    display: inline-block;
    padding: 5px 12px;
    background: var(--gray-100);
    border: 2px solid var(--gray-300);
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    box-sizing: border-box;
}

#contact-main .urgency-badge input:checked + .badge-content {
    background: #363C4F;
    border-color: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 62, 82, 0.2);
}

#contact-main .form-submit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    box-sizing: border-box;
}

#contact-main .form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-sizing: border-box;
}

#contact-main .form-checkbox input {
    accent-color: var(--primary-blue);
    width: 16px;
    height: 16px;
    box-sizing: border-box;
}

#contact-main .form-checkbox span {
    color: var(--gray-600);
    font-size: 0.85rem;
    line-height: 1.5;
    box-sizing: border-box;
}

#contact-main .submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #363C4F, #AA7218);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 62, 82, 0.2);
    box-sizing: border-box;
}

@media (max-width: 992px) {
    #contact-main .contact-form-info-section {
        padding: 60px 20px;
    }
    
    #contact-main .form-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    #contact-main .form-section {
        padding: 25px;
    }
    
    #contact-main .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    #contact-main .contact-form-info-section {
        padding: 50px 15px;
    }
    
    #contact-main .form-tabs {
        flex-direction: column;
    }
    
    #contact-main .form-tab {
        width: 100%;
        justify-content: center;
    }
    
    #contact-main .form-submit-row {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    #contact-main .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    #contact-main .form-section {
        padding: 20px;
    }
    
    #contact-main .form-section-title {
        font-size: 1.4rem;
    }
    
    #contact-main .form-urgency {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    #contact-main .submit-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ===== INFO SIDEBAR ===== */
#contact-main .info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
    height: fit-content;
    box-sizing: border-box;
}

#contact-main .sidebar-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 2px solid var(--gray-200);
    box-sizing: border-box;
}

#contact-main .sidebar-header {
    padding: 18px 20px;
    background: #363C4F;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
}

#contact-main .sidebar-header h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    box-sizing: border-box;
}

#contact-main .sidebar-header i {
    font-size: 1.1rem;
    box-sizing: border-box;
}

#contact-main .sidebar-content {
    padding: 20px;
    box-sizing: border-box;
}

/* Location Card */
#contact-main .location-info h4 {
    color: #363C4F;
    font-size: 1rem;
    font-weight: 700;
    box-sizing: border-box;
}

#contact-main .location-info p {
    color: var(--gray-600);
    margin-bottom: 8px;
    font-size: 0.9rem;
    box-sizing: border-box;
}

#contact-main .location-description {
    font-size: 0.8rem !important;
    color: var(--gray-500) !important;
    font-style: italic;
    box-sizing: border-box;
}

/* Business Hours */
#contact-main .business-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
}

#contact-main .hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
    box-sizing: border-box;
}

#contact-main .hour-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

#contact-main .hour-item.emergency .day,
#contact-main .hour-item.emergency .time {
    color: #AA7218;
    font-weight: 700;
}

#contact-main .hour-item .day {
    color: #363C4F;
    font-weight: 600;
    font-size: 0.9rem;
    box-sizing: border-box;
}

#contact-main .hour-item .time {
    color: #6D81AA;
    font-weight: 600;
    font-size: 0.85rem;
    box-sizing: border-box;
}

/* Quick Contacts */
#contact-main .quick-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
}

#contact-main .quick-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--gray-100);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    border: 1px solid transparent;
    box-sizing: border-box;
}

#contact-main .quick-contact i {
    font-size: 1.1rem;
    color: var(--primary-blue);
    width: 20px;
    box-sizing: border-box;
}

#contact-main .contact-type {
    display: block;
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-sizing: border-box;
}

#contact-main .contact-detail {
    display: block;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 2px;
    box-sizing: border-box;
}

/* Response Card */
#contact-main .response-times {
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
}

#contact-main .response-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--gray-300);
    box-sizing: border-box;
}

#contact-main .response-item:last-child {
    border-bottom: none;
}

#contact-main .response-type {
    color: #363C4F;
    font-weight: 600;
    font-size: 0.85rem;
    box-sizing: border-box;
}

#contact-main .response-time {
    color: #6D81AA;
    font-weight: 700;
    font-size: 0.9rem;
    background: #f6f6f6;
    padding: 4px 10px;
    border-radius: 20px;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    #contact-main .info-sidebar {
        position: static;
    }
    
    #contact-main .sidebar-content {
        padding: 15px;
    }
}

/* ===== FAQ SECTION ===== */
#contact-main .contact-faq {
    padding: 80px 65px;
    background: white;
    box-sizing: border-box;
}

#contact-main .faq-grid {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
}

#contact-main .faq-item {
    background: white;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-light);
    box-sizing: border-box;
}

#contact-main .faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--gray-100);
    box-sizing: border-box;
}

#contact-main .faq-question h3 {
    font-size: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin: 0;
    flex: 1;
    box-sizing: border-box;
}

#contact-main .faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    font-size: 1.1rem;
    box-sizing: border-box;
}

#contact-main .faq-item.active .faq-question i {
    transform: rotate(180deg);
}

#contact-main .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    box-sizing: border-box;
}

#contact-main .faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

#contact-main .faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
    font-size: 0.9rem;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    #contact-main .contact-faq {
        padding: 50px 15px;
    }
    
    #contact-main .faq-question {
        padding: 15px;
    }
    
    #contact-main .faq-question h3 {
        font-size: 0.95rem;
    }
    
    #contact-main .faq-answer {
        padding: 0 15px;
    }
    
    #contact-main .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }
}

@media (max-width: 480px) {
    #contact-main .contact-faq {
        padding: 40px 15px;
    }
    
    #contact-main .faq-question h3 {
        font-size: 0.9rem;
    }
    
    #contact-main .faq-answer p {
        font-size: 0.85rem;
    }
}

/* Print Styles */
@media print {
    #contact-main .contact-hero-badge,
    #contact-main .contact-hero-stats,
    #contact-main .channel-btn,
    #contact-main .submit-btn,
    #contact-main .emergency-call-btn,
    #contact-main .faq-question i {
        display: none !important;
    }
    
    #contact-main .contact-hero {
        background: none !important;
        padding: 40px 0 !important;
    }
    
    #contact-main .channel-card,
    #contact-main .form-section,
    #contact-main .sidebar-card,
    #contact-main .faq-item {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}