/* Contact Page - Premium Bean Merchant Theme */

/* =================================================================
   HERO SECTION - Fix Text Visibility
   ================================================================= */

.contact-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2c1810 0%, #1a1a1a 100%);
    overflow: hidden;
    padding: 100px 0;
}

.contact-hero .hero-content {
    text-align: center;
    color: white; /* Ensure white text */
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Fix headline colors */
.contact-hero .hero-headline .headline-small {
    display: block;
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255,255,255,0.8) !important; /* Force white with transparency */
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-hero .hero-headline .headline-large {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: white !important; /* Force white */
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.contact-hero .hero-subtext {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9) !important; /* Force white with transparency */
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Trust row items */
.contact-hero .trust-row {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.9) !important; /* Force white */
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--secondary-color) !important; /* Keep gold icons */
}
/* =================================================================
   CONTACT METHODS - Premium Cards
   ================================================================= */

.contact-methods {
    padding: 80px 0;
    background: var(--bg-light);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.method-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.method-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.method-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* Featured card */
.method-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d2418 100%);
    color: white;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.method-card.featured .card-icon {
    background: white;
    color: var(--secondary-color);
}

.method-card h3 {
    font-size: 1.5rem;
    margin: 0;
}

.method-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.method-card.featured p {
    color: rgba(255,255,255,0.9);
}

/* =================================================================
   ELEGANT SOCIAL BUTTONS - Refined Design
   ================================================================= */

/* Contact Actions */
.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.95rem;
}

/* Elegant Facebook Button */
.social-btn.facebook {
    background: white;
    color: #1877f2;
    border-color: #1877f2;
}

.social-btn.facebook:hover {
    background: #1877f2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

/* Elegant Instagram Button */
.social-btn.instagram {
    background: white;
    color: #E4405F;
    border-color: #E4405F;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(228, 64, 95, 0.3);
}

/* Refined Social Follow Buttons in Sidebar */
.social-follow-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.social-follow {
    width: 45px;
    height: 45px;
    border-radius: 8px; /* Less circular, more modern */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.125rem;
    border: 2px solid transparent;
}

.social-follow.fb {
    background: white;
    color: #1877f2;
    border-color: #1877f2;
}

.social-follow.fb:hover {
    background: #1877f2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.2);
}

.social-follow.ig {
    background: white;
    color: #E4405F;
    border-color: #E4405F;
}

.social-follow.ig:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(228, 64, 95, 0.2);
}

/* Phone Display */
.phone-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.phone-display:hover {
    transform: scale(1.05);
}

.phone-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.phone-hours {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* Email Display */
.email-display {
    display: inline-block;
    font-size: 1.125rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.email-display:hover {
    border-bottom-color: var(--secondary-color);
}

.response-time {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* =================================================================
   BUTTON REFINEMENTS
   ================================================================= */

/* Primary CTA Button */
.btn-primary-large {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-large:hover {
    background: #c19660;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
    color: var(--primary-color);
}

.btn-subtitle {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.8;
}

/* Secondary Button */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Quiz Button in Sidebar */
.btn-quiz {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-quiz:hover {
    background: #c19660;
    transform: translateY(-2px);
    color: var(--primary-color);
}

/* =================================================================
   CONTACT FORM SECTION - Clean & Modern
   ================================================================= */

.contact-form-section {
    padding: 100px 0;
    background: white;
}

.form-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Form Container */
.form-container {
    background: var(--soft-cream);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.form-header {
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.25rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.form-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Premium Form Styling */
.premium-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-field .optional {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.85rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 1rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 12px;
    border-color: var(--secondary-color);
    background: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.1);
}

/* Custom Select */
.custom-select {
    position: relative;
}

.custom-select select {
    appearance: none;
    padding-right: 3rem;
    cursor: pointer;
}

.custom-select::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-light);
}

/* Custom Checkbox */
.checkbox-field {
    margin-top: 0.5rem;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
}

.checkbox-box {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
}

.custom-checkbox input:checked ~ .checkbox-box {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.custom-checkbox input:checked ~ .checkbox-box::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: white;
    font-size: 0.75rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Submit Button */
.btn-submit {
    align-self: flex-start;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #c19660;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success State */
.form-success {
    text-align: center;
    padding: 4rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #d4edda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-icon i {
    font-size: 2.5rem;
    color: #28a745;
}

.form-success h3 {
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* =================================================================
   SIDEBAR - Helpful Info
   ================================================================= */

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateX(30px);
}

.sidebar-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.sidebar-card.dark {
    background: var(--primary-color);
    color: white;
}

.sidebar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card.dark h3 {
    color: white;
}

.sidebar-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sidebar-card.dark p {
    color: rgba(255,255,255,0.9);
}

/* Quick Links */
.quick-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.quick-link:last-child {
    border-bottom: none;
}

.quick-link:hover {
    color: var(--secondary-color);
    padding-left: 0.5rem;
}

.quick-link i {
    color: var(--secondary-color);
    width: 20px;
}

.view-all-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: var(--secondary-color);
}

/* Quiz Button */
.btn-quiz {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-quiz:hover {
    background: #c19660;
    transform: translateY(-2px);
}

/* Social Follow */
.social-follow-buttons {
    display: flex;
    gap: 1rem;
}

.social-follow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.social-follow.fb {
    background: #1877f2;
    color: white;
}

.social-follow.ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-follow:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* =================================================================
   TRUST SECTION
   ================================================================= */

.contact-trust {
    padding: 100px 0;
    background: var(--bg-light);
}

.trust-content {
    text-align: center;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--charcoal);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.trust-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.trust-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.trust-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.trust-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.trust-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* =================================================================
   FINAL CTA
   ================================================================= */

.contact-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
}

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */

@media (max-width: 968px) {
    .form-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-container {
        padding: 3rem 2rem;
    }
    
    .method-cards {
        grid-template-columns: 1fr;
    }
    
    .method-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 60vh;
        padding: 80px 0;
    }
    
    .headline-large {
        font-size: 2.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .phone-number {
        font-size: 1.5rem;
    }
    
    .contact-actions {
        gap: 0.5rem;
    }
    
    .sidebar-card {
        padding: 2rem;
    }
}

/* Animation delays */
.method-card:nth-child(1) { transition-delay: 0.1s; }
.method-card:nth-child(2) { transition-delay: 0.2s; }
.method-card:nth-child(3) { transition-delay: 0.3s; }

.sidebar-card:nth-child(1) { transition-delay: 0.4s; }
.sidebar-card:nth-child(2) { transition-delay: 0.5s; }
.sidebar-card:nth-child(3) { transition-delay: 0.6s; }

.trust-card:nth-child(1) { transition-delay: 0.1s; }
.trust-card:nth-child(2) { transition-delay: 0.2s; }
.trust-card:nth-child(3) { transition-delay: 0.3s; }

/* Professional Email Contact Section - Enhanced */
.email-contact-section {
    text-align: center;
    padding: 3rem 0;
    background: white;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.email-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--secondary-color), #e8c299);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.email-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.email-content h3 {
    font-size: 1.75rem;
    color: var(--charcoal, #2c1810);
    margin-bottom: 1rem;
    font-weight: 600;
}

.email-description {
    font-size: 1.125rem;
    color: var(--text-light, #666);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 2.5rem;
}

.email-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--secondary-color, #d4a574);
    color: var(--primary-color, #2c1810);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
    margin-bottom: 2rem;
}

.email-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
    background: #c19660;
    color: var(--primary-color, #2c1810);
    text-decoration: none;
}

.email-button-primary .button-text {
    font-weight: 600;
}

.email-button-primary i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.email-button-primary:hover i {
    transform: translateX(3px);
}

.email-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.email-address,
.response-promise {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light, #666);
    font-size: 0.95rem;
    font-weight: 500;
}

.email-address i,
.response-promise i {
    color: var(--secondary-color, #d4a574);
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.email-address span {
    font-weight: 600;
    color: var(--primary-color, #2c1810);
}

/* Alternative Contact Methods - Enhanced */
.alternative-contact {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--soft-cream, #faf8f5);
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.alt-contact-label {
    text-align: center;
    color: var(--text-light, #666);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid var(--secondary-color, #d4a574);
    border-radius: 30px;
    color: var(--primary-color, #2c1810);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: white;
}

.contact-option:hover {
    background: var(--secondary-color, #d4a574);
    color: var(--primary-color, #2c1810);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
    text-decoration: none;
}

.contact-option i {
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

/* Form Container Background */
.form-container {
    background: var(--soft-cream, #faf8f5);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

/* Form Header */
.form-header {
    margin-bottom: 3rem;
    text-align: center;
}

.form-header h2 {
    font-size: 2.25rem;
    color: var(--charcoal, #2c1810);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.form-header p {
    font-size: 1.125rem;
    color: var(--text-light, #666);
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .form-container {
        padding: 2.5rem 2rem;
    }
    
    .email-contact-section {
        padding: 2rem 1.5rem;
    }
    
    .email-content h3 {
        font-size: 1.5rem;
    }
    
    .email-button-primary {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .alternative-contact {
        padding: 2rem 1.5rem;
    }
    
    .contact-options {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .contact-option {
        justify-content: center;
        padding: 14px 24px;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .email-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .email-icon-wrapper i {
        font-size: 1.75rem;
    }
    
    .email-details {
        gap: 0.75rem;
    }
    
    .email-address,
    .response-promise {
        font-size: 0.9rem;
    }
}