:root {
    --primary-color: #1a2b48;
    --accent-color: #c59a6d;
    --white-color: #ffffff;
    --text-color: #333333;
    --border-color: #e9ecef;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
}

.site-section {
    padding: 6rem 0;
}

.section-title {
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-color), #d4af7a);
    border-radius: 2px;
}

/* === CLEAN CONTACT HERO === */
.clean-contact-hero {
    background: linear-gradient(135deg, #1a2b48, #2c4a85);
    padding: 6rem 0;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.clean-contact-hero .hero-content {
    position: relative;
}

/* Contact Badge */
.clean-contact-hero .contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(197, 154, 109, 0.3);
    border-radius: 25px;
    padding: 0.6rem 1.2rem;
    margin-bottom: 2rem;
    color: #c59a6d;
    font-size: 0.9rem;
    font-weight: 600;
}

.clean-contact-hero .contact-badge i {
    font-size: 1rem;
}

/* Hero Title */
.clean-contact-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.clean-contact-hero .title-accent {
    color: #c59a6d;
    display: block;
}

/* Hero Description */
.clean-contact-hero .hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 90%;
}

/* Contact Stats */
.clean-contact-hero .contact-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.clean-contact-hero .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    min-width: 140px;
    max-width: 160px;
    flex: 1;
    transition: all 0.3s ease;
}

.clean-contact-hero .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: #c59a6d;
}

.clean-contact-hero .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #c59a6d;
    display: block;
    margin-bottom: 0.5rem;
}

.clean-contact-hero .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Hero Actions */
.clean-contact-hero .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.clean-contact-hero .btn-primary-hero,
.clean-contact-hero .btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.clean-contact-hero .btn-primary-hero {
    background: #c59a6d;
    color: #1a2b48;
}

.clean-contact-hero .btn-primary-hero:hover {
    background: #d4a574;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 154, 109, 0.4);
    color: #1a2b48;
    text-decoration: none;
}

.clean-contact-hero .btn-secondary-hero {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.clean-contact-hero .btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #c59a6d;
    color: #c59a6d;
    transform: translateY(-3px);
    text-decoration: none;
}

/* Contact Channels */
.clean-contact-hero .hero-visual {
    position: relative;
}

.clean-contact-hero .contact-channels {
    position: relative;
}

.clean-contact-hero .channels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.clean-contact-hero .contact-channel-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.clean-contact-hero .contact-channel-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #c59a6d;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.clean-contact-hero .channel-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c59a6d, #d4a574);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    color: #1a2b48;
    transition: all 0.3s ease;
}

.clean-contact-hero .contact-channel-card:hover .channel-icon {
    transform: scale(1.1) rotate(5deg);
}

.clean-contact-hero .channel-content h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.clean-contact-hero .channel-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.clean-contact-hero .channel-button {
    display: inline-block;
    background: rgba(197, 154, 109, 0.2);
    border: 1px solid rgba(197, 154, 109, 0.3);
    border-radius: 20px;
    padding: 0.4rem 1rem;
    color: #c59a6d;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.clean-contact-hero .channel-button:hover {
    background: #c59a6d;
    color: #1a2b48;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Response Indicator */
.clean-contact-hero .response-indicator {
    display: flex;
    justify-content: center;
}

.clean-contact-hero .response-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: #1a2b48;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.clean-contact-hero .response-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.clean-contact-hero .response-badge i {
    font-size: 1.5rem;
    color: #c59a6d;
}

.clean-contact-hero .response-text {
    display: flex;
    flex-direction: column;
}

.clean-contact-hero .response-time {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2b48;
    line-height: 1;
}

.clean-contact-hero .response-label {
    font-size: 0.8rem;
    color: rgba(26, 43, 72, 0.7);
    font-weight: 500;
}

/* === MODERN CONTACT SECTION === */
.modern-contact-section {
    padding: 6rem 0 0 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    width: 100%;
    overflow: hidden;
}

.modern-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c59a6d' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Container centering for desktop */
.modern-contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
    z-index: 2;
}

.modern-contact-section .row {
    margin-left: -1rem;
    margin-right: -1rem;
    align-items: stretch;
}

.modern-contact-section .col-lg-5 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.modern-contact-section .col-lg-6 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.modern-contact-section .offset-lg-1 {
    margin-left: 8.333333%;
}

/* Contact Info Panel */
.contact-info-panel {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header {
    margin-bottom: 3rem;
    text-align: left;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(197, 154, 109, 0.1);
    color: #c59a6d;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(197, 154, 109, 0.2);
}

.modern-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2b48;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: left;
}

.modern-section-title .title-accent {
    color: #c59a6d;
    display: block;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: left;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.contact-method-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(197, 154, 109, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c59a6d, transparent);
    transition: left 0.5s ease;
}

.contact-method-card:hover::before {
    left: 100%;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #c59a6d;
}

/* Email card specific spacing */
.contact-method-card:last-child {
    margin-bottom: 2rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.address-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.phone-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.email-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.contact-method-card:hover .method-icon {
    transform: scale(1.1) rotate(5deg);
}

.method-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a2b48;
    margin-bottom: 0.5rem;
}

.method-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.method-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #c59a6d;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.method-action:hover {
    color: #1a2b48;
    transform: translateX(5px);
    text-decoration: none;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-option:hover {
    background: #c59a6d;
    color: white;
    transform: translateX(5px);
    text-decoration: none;
}

.whatsapp-option:hover {
    background: #25d366;
    color: white;
}

.office-hours {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666;
    font-size: 0.9rem;
}

/* Response Promise */
.response-promise {
    margin-top: 2rem;
}

.promise-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #c59a6d, #d4a574);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(197, 154, 109, 0.3);
}

.promise-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.promise-text {
    display: flex;
    flex-direction: column;
}

.promise-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.promise-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* === MODERN FORM CONTAINER === */
.modern-form-container {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    margin: 0 auto;
    height: fit-content;
}

.modern-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a2b48, #c59a6d);
}

/* Form Header */
.form-header {
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(26, 43, 72, 0.1);
    color: #1a2b48;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2b48;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

/* Ultra Modern Form */
.ultra-modern-form {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-field {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.field-label {
    display: block;
    font-weight: 600;
    color: #1a2b48;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.field-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.field-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #c59a6d;
    font-size: 1rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.textarea-icon {
    top: 1.2rem;
    transform: none;
}

.field-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    background: #fafafa;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    max-width: 100%;
}

.field-input:focus {
    outline: none;
    border-color: #c59a6d;
    background: white;
    box-shadow: 0 0 0 3px rgba(197, 154, 109, 0.1);
}

.field-input:focus + .field-line {
    transform: scaleX(1);
}

.field-input:focus ~ .field-icon {
    color: #1a2b48;
    transform: translateY(-50%) scale(1.1);
}

.field-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #c59a6d, #d4a574);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 1px;
}

.field-feedback {
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    font-size: 0.8rem;
    color: #c59a6d;
    opacity: 0;
    transition: all 0.3s ease;
}

.field-feedback.show {
    opacity: 1;
}

/* reCAPTCHA and Submit Button Container */
.recaptcha-container {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.recaptcha-container .g-recaptcha {
    transform: scale(0.9);
    transform-origin: left center;
    max-width: 100%;
}

.submit-button-container {
    width: 100%;
}

.ultra-submit-btn {
    position: relative;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 100%;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
}

.btn-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2b48, #2c4a85);
    transition: all 0.3s ease;
}

.btn-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c59a6d, #d4a574);
    opacity: 0;
    transition: all 0.3s ease;
}

.ultra-submit-btn:hover .btn-gradient {
    opacity: 1;
}

.ultra-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(26, 43, 72, 0.3);
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    gap: 0.5rem;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: 3;
}

.ultra-submit-btn:hover .btn-shine {
    left: 100%;
}

.form-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.85rem;
    margin-top: 1rem;
}

.form-info i {
    color: #c59a6d;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    background: #25d366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 3s infinite;
}

.whatsapp-btn:hover {
    background: #20ba5a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

/* Map Section */
.map-full-width {
    position: relative;
    width: 100%;
    height: 450px;
    margin-bottom: 0;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 10;
    max-width: 300px;
}

.map-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.map-info p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 154, 109, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(197, 154, 109, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(197, 154, 109, 0);
    }
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes buttonsReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .clean-contact-hero {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .clean-contact-hero .hero-title {
        font-size: 3rem;
    }
    
    .clean-contact-hero .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .clean-contact-hero .contact-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .clean-contact-hero .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .clean-contact-hero .btn-primary-hero,
    .clean-contact-hero .btn-secondary-hero {
        justify-content: center;
    }
    
    .clean-contact-hero .channels-grid {
        gap: 1rem;
    }

    .clean-contact-hero .contact-channel-card {
        padding: 1.2rem;
    }
    
    /* Form responsive for tablets */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .modern-form-container {
        padding: 2rem;
    }
    
    .recaptcha-container .g-recaptcha {
        transform: scale(0.85);
    }
}

@media (max-width: 768px) {
    .clean-contact-hero {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .clean-contact-hero .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .clean-contact-hero .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .clean-contact-hero .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .clean-contact-hero .contact-stats {
        gap: 0.8rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .clean-contact-hero .stat-item {
        min-width: 120px;
        padding: 1.2rem 1rem;
        flex: 1;
        max-width: 150px;
        margin: 0.3rem;
    }
    
    .clean-contact-hero .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0.4rem;
    }
    
    .clean-contact-hero .stat-label {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .clean-contact-hero .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .clean-contact-hero .btn-primary-hero,
    .clean-contact-hero .btn-secondary-hero {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .clean-contact-hero .channels-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .clean-contact-hero .contact-channel-card {
        padding: 1.2rem 1rem;
        min-width: 120px;
        max-width: 150px;
        margin: 0.3rem;
    }
    
    .clean-contact-hero .channel-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .clean-contact-hero .channel-content h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .clean-contact-hero .channel-content p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .clean-contact-hero .channel-button {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .clean-contact-hero .response-badge {
        padding: 0.6rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .clean-contact-hero .response-badge i {
        font-size: 1.1rem;
    }
    
    .clean-contact-hero .response-time {
        font-size: 0.9rem;
    }
    
    .clean-contact-hero .response-label {
        font-size: 0.75rem;
    }

    /* Modern Contact Section Mobile */
    .modern-contact-section {
        padding: 4rem 0;
    }
    
    .modern-section-title {
        font-size: 2rem;
    }
    
    .contact-method-card {
        padding: 1.5rem;
    }
    
    /* Mobile email card spacing */
    .contact-method-card:last-child {
        margin-bottom: 1.5rem;
    }

    /* Form responsive for mobile */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .modern-form-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .form-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .form-description {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .field-input {
        padding: 1.2rem 1rem 1.2rem 3rem;
        font-size: 1rem;
        min-height: 50px;
    }
    
    .field-label {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
        text-align: left;
    }

    /* reCAPTCHA and Submit Button Mobile */
    .recaptcha-container {
        justify-content: flex-start;
        margin-bottom: 1.5rem;
    }
    
    .recaptcha-container .g-recaptcha {
        transform: scale(0.8);
        transform-origin: center;
        max-width: 100%;
        overflow: hidden;
    }
    
    .submit-button-container {
        width: 100%;
    }
    
    .ultra-submit-btn {
        height: 55px;
    }
    
    .btn-content {
        font-size: 1rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        padding: 12px 15px;
    }

    .whatsapp-text {
        display: none;
    }

    .map-overlay {
        position: relative;
        top: auto;
        left: auto;
        margin: 1rem;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .site-section {
        padding: 4rem 0;
    }
    
    .clean-contact-hero {
        padding: 2.5rem 0;
    }
    
    .clean-contact-hero .hero-content {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .clean-contact-hero .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .clean-contact-hero .contact-badge {
        margin-bottom: 1.2rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .clean-contact-hero .hero-description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .clean-contact-hero .contact-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .clean-contact-hero .stat-item {
        width: 100%;
        max-width: 280px;
        padding: 1rem 0.8rem;
        margin: 0.5rem auto;
    }
    
    .clean-contact-hero .stat-number {
        font-size: 1.6rem;
        margin-bottom: 0.3rem;
    }
    
    .clean-contact-hero .stat-label {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .clean-contact-hero .hero-actions {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .clean-contact-hero .btn-primary-hero,
    .clean-contact-hero .btn-secondary-hero {
        width: 100%;
        max-width: 250px;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .clean-contact-hero .channels-grid {
        gap: 0.8rem;
    }
    
    .clean-contact-hero .contact-channel-card {
        padding: 1rem 0.8rem;
        width: 100%;
        max-width: 280px;
        margin: 0.5rem auto;
    }
    
    .clean-contact-hero .channel-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .clean-contact-hero .channel-content h4 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .clean-contact-hero .channel-content p {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .clean-contact-hero .channel-button {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .clean-contact-hero .response-badge {
        padding: 0.5rem 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
    }
    
    .clean-contact-hero .response-badge i {
        font-size: 1rem;
    }
    
    .clean-contact-hero .response-time {
        font-size: 0.8rem;
    }
    
    .clean-contact-hero .response-label {
        font-size: 0.65rem;
    }
    
    /* Modern Contact Section Small Mobile */
    .modern-section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .contact-method-card {
        padding: 1.2rem;
    }
    
    /* Small mobile email card spacing */
    .contact-method-card:last-child {
        margin-bottom: 1rem;
    }
    
    .method-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .method-content h4 {
        font-size: 1.1rem;
    }
    
    .contact-option {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .promise-content {
        padding: 1.2rem;
    }
    
    .promise-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Form responsive for small mobile */
    .modern-form-container {
        padding: 1.2rem;
        margin: 0 0.5rem;
        border-radius: 15px;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .form-description {
        font-size: 0.9rem;
    }
    
    .field-input {
        padding: 1rem 0.8rem 1rem 2.8rem;
        font-size: 0.95rem;
        min-height: 48px;
    }
    
    .field-label {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .ultra-submit-btn {
        height: 50px;
    }
    
    .btn-content {
        font-size: 0.95rem;
    }
    
    /* reCAPTCHA for small mobile */
    .recaptcha-container {
        justify-content: center;
        margin-bottom: 1.2rem;
    }
    
    .recaptcha-container .g-recaptcha {
        transform: scale(0.75);
        transform-origin: center;
        max-width: 100%;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .clean-contact-hero {
        padding: 2rem 0;
    }
    
    .clean-contact-hero .hero-content {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .clean-contact-hero .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
    }
    
    .clean-contact-hero .contact-badge {
        margin-bottom: 1rem;
        padding: 0.3rem 0.7rem;
        font-size: 0.7rem;
    }
    
    .clean-contact-hero .hero-description {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }
    
    .clean-contact-hero .contact-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
        margin-bottom: 1.2rem;
    }
    
    .clean-contact-hero .stat-item {
        width: 100%;
        max-width: 260px;
        padding: 0.8rem 0.6rem;
        margin: 0.4rem auto;
    }
    
    .clean-contact-hero .stat-number {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }
    
    .clean-contact-hero .stat-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .clean-contact-hero .hero-actions {
        flex-direction: column;
        gap: 0.6rem;
        align-items: center;
    }
    
    .clean-contact-hero .btn-primary-hero,
    .clean-contact-hero .btn-secondary-hero {
        width: 100%;
        max-width: 220px;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .clean-contact-hero .channels-grid {
        gap: 0.6rem;
    }
    
    .clean-contact-hero .contact-channel-card {
        padding: 0.8rem 0.6rem;
        width: 100%;
        max-width: 260px;
        margin: 0.4rem auto;
    }
    
    .clean-contact-hero .channel-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .clean-contact-hero .channel-content h4 {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .clean-contact-hero .channel-content p {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .clean-contact-hero .channel-button {
        padding: 0.25rem 0.7rem;
        font-size: 0.65rem;
    }
    
    .clean-contact-hero .response-badge {
        padding: 0.4rem 0.7rem;
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }
    
    .clean-contact-hero .response-badge i {
        font-size: 0.9rem;
    }
    
    .clean-contact-hero .response-time {
        font-size: 0.75rem;
    }
    
    .clean-contact-hero .response-label {
        font-size: 0.6rem;
    }
    
    /* Modern Contact Section Extra Small Mobile */
    .modern-section-title {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
    
    .contact-method-card {
        padding: 1rem;
    }
    
    /* Extra small mobile email card spacing */
    .contact-method-card:last-child {
        margin-bottom: 0.8rem;
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .method-content h4 {
        font-size: 1rem;
    }
    
    .contact-option {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
    }
    
    .promise-content {
        padding: 1rem;
    }
    
    .promise-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Form responsive for extra small mobile */
    .modern-form-container {
        padding: 1rem;
        margin: 0 0.3rem;
        border-radius: 12px;
    }
    
    .form-title {
        font-size: 1.2rem;
    }
    
    .form-description {
        font-size: 0.85rem;
    }
    
    .field-input {
        padding: 0.9rem 0.7rem 0.9rem 2.5rem;
        font-size: 0.9rem;
        min-height: 45px;
    }
    
    .field-label {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .ultra-submit-btn {
        height: 48px;
    }
    
    .btn-content {
        font-size: 0.9rem;
    }
    
    /* reCAPTCHA for extra small mobile */
    .recaptcha-container {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .recaptcha-container .g-recaptcha {
        transform: scale(0.7);
        transform-origin: center;
        max-width: 100%;
    }
}

/* === MOBILE FORM OPTIMIZATIONS === */

/* Ensure form container is properly sized on mobile */
@media (max-width: 768px) {
    .modern-form-container {
        margin: 0 auto;
        padding: 1.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        width: calc(100% - 2rem);
        box-sizing: border-box;
        overflow: hidden;
        max-width: 100%;
    }
    
    /* Center form column on mobile */
    .modern-contact-section .col-lg-6 {
        margin-left: auto;
        margin-right: auto;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Improve form field spacing */
    .form-grid {
        gap: 1.2rem;
        width: 100%;
    }
    
    /* Better input sizing for mobile */
    .field-input {
        min-height: 48px;
        padding: 1rem 1rem 1rem 3rem;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }
    
    /* Improve label visibility */
    .field-label {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #1a2b48;
    }
    
    /* Better icon positioning */
    .field-icon {
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1rem;
        color: #c59a6d;
    }
    
    /* Textarea specific styling */
    .field-input[rows] {
        min-height: 100px;
        padding-top: 1rem;
        padding-bottom: 1rem;
        resize: vertical;
    }
    
    .textarea-icon {
        top: 1.5rem;
        transform: none;
    }
    
    /* Ensure form fields don't overflow */
    .form-field {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .field-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Contact method cards mobile padding */
    .contact-method-card {
        margin: 0 1rem;
        width: calc(100% - 2rem);
        box-sizing: border-box;
    }
    
    /* Modern contact section mobile container */
    .modern-contact-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
    }
    
    .modern-contact-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .modern-contact-section .col-lg-5,
    .modern-contact-section .col-lg-6 {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Mobile text alignment */
    .section-header {
        text-align: center;
    }
    
    .modern-section-title {
        text-align: center;
        font-size: 2rem;
    }
    
    .section-description {
        text-align: center;
        font-size: 1rem;
    }
    
    /* Contact info panel mobile alignment */
    .contact-info-panel {
        justify-content: flex-start;
        height: auto;
    }
}

@media (max-width: 576px) {
    .modern-form-container {
        padding: 1.2rem;
        margin: 0 auto;
        width: calc(100% - 1rem);
        box-sizing: border-box;
    }
    
    /* Center form column on small mobile */
    .modern-contact-section .col-lg-6 {
        margin-left: auto;
        margin-right: auto;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .form-grid {
        gap: 1rem;
        width: 100%;
    }
    
    .field-input {
        min-height: 45px;
        padding: 0.9rem 0.9rem 0.9rem 2.8rem;
        font-size: 16px;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }
    
    .field-label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .field-input[rows] {
        min-height: 80px;
    }
    
    /* Ensure no horizontal overflow */
    .form-field {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .field-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    /* Contact method cards small mobile padding */
    .contact-method-card {
        margin: 0 0.5rem;
        width: calc(100% - 1rem);
        box-sizing: border-box;
    }
    
    /* Modern contact section small mobile container */
    .modern-contact-section .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .modern-contact-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .modern-contact-section .col-lg-5,
    .modern-contact-section .col-lg-6 {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Small mobile text alignment */
    .section-header {
        text-align: center;
    }
    
    .modern-section-title {
        text-align: center;
        font-size: 1.8rem;
    }
    
    .section-description {
        text-align: center;
        font-size: 0.95rem;
    }
    
    /* Contact info panel small mobile alignment */
    .contact-info-panel {
        justify-content: flex-start;
        height: auto;
    }
}

@media (max-width: 480px) {
    .modern-form-container {
        padding: 1rem;
        margin: 0 auto;
        border-radius: 12px;
        width: calc(100% - 0.6rem);
        box-sizing: border-box;
    }
    
    /* Center form column on extra small mobile */
    .modern-contact-section .col-lg-6 {
        margin-left: auto;
        margin-right: auto;
        padding-left: 0.3rem;
        padding-right: 0.3rem;
    }
    
    .form-grid {
        gap: 0.8rem;
        width: 100%;
    }
    
    .field-input {
        min-height: 44px;
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
        font-size: 16px;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }
    
    .field-label {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .field-input[rows] {
        min-height: 70px;
    }
    
    /* Extra small screens */
    .form-field {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .field-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    /* Contact method cards extra small mobile padding */
    .contact-method-card {
        margin: 0 0.3rem;
        width: calc(100% - 0.6rem);
        box-sizing: border-box;
    }
    
    /* Modern contact section extra small container */
    .modern-contact-section .container {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
    
    .modern-contact-section .row {
        margin-left: -0.125rem;
        margin-right: -0.125rem;
    }
    
    .modern-contact-section .col-lg-5,
    .modern-contact-section .col-lg-6 {
        padding-left: 1.125rem;
        padding-right: 1.125rem;
    }
}

/* === RECAPTCHA MOBILE OPTIMIZATIONS === */

/* Left align reCAPTCHA on mobile */
@media (max-width: 768px) {
    .recaptcha-container {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin: 1.5rem 0;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .g-recaptcha {
        transform: scale(0.8);
        transform-origin: center;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    /* Force reCAPTCHA to fit container */
    .g-recaptcha > div {
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 576px) {
    .recaptcha-container {
        margin: 1.2rem 0;
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .g-recaptcha {
        transform: scale(0.75);
        transform-origin: center;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    /* Force reCAPTCHA to fit container */
    .g-recaptcha > div {
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .recaptcha-container {
        margin: 1rem 0;
        padding: 0 0.3rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .g-recaptcha {
        transform: scale(0.7);
        transform-origin: center;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    /* Force reCAPTCHA to fit container */
    .g-recaptcha > div {
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .recaptcha-container {
        margin: 0.8rem 0;
        padding: 0 0.2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .g-recaptcha {
        transform: scale(0.65);
        transform-origin: center;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    /* Force reCAPTCHA to fit very small screens */
    .g-recaptcha > div {
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
}

/* === SUBMIT BUTTON MOBILE OPTIMIZATIONS === */

@media (max-width: 768px) {
    .ultra-submit-btn {
        height: 55px;
        border-radius: 10px;
    }
    
    .btn-content {
        font-size: 1rem;
        font-weight: 600;
    }
}

@media (max-width: 576px) {
    .ultra-submit-btn {
        height: 50px;
        border-radius: 8px;
    }
    
    .btn-content {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .ultra-submit-btn {
        height: 48px;
        border-radius: 8px;
    }
    
    .btn-content {
        font-size: 0.9rem;
    }
}

/* === TOUCH DEVICE OPTIMIZATIONS === */

/* Ensure minimum touch target size */
@media (hover: none) and (pointer: coarse) {
    .field-input {
        min-height: 44px;
    }
    
    .ultra-submit-btn {
        min-height: 44px;
    }
    
    .contact-option {
        min-height: 44px;
    }
    
    .channel-button {
        min-height: 36px;
        min-width: 60px;
    }
    
    /* Improve touch feedback */
    .field-input:active,
    .ultra-submit-btn:active,
    .contact-option:active,
    .channel-button:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* === iOS SPECIFIC FIXES === */

/* Prevent zoom on iOS */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .field-input {
        font-size: 16px;
    }
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
    .field-input {
        font-size: 16px;
        -webkit-appearance: none;
        border-radius: 8px;
    }
    
    .ultra-submit-btn {
        -webkit-appearance: none;
        border-radius: 8px;
    }
}

/* === LANDSCAPE ORIENTATION FIXES === */

@media (max-width: 768px) and (orientation: landscape) {
    .modern-form-container {
        padding: 1.2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .form-field.full-width {
        grid-column: 1 / -1;
    }
    
    .field-input[rows] {
        min-height: 60px;
    }
}

/* === HIGH DPI DISPLAY OPTIMIZATIONS === */

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .field-input {
        font-size: 16px;
    }
    
    .field-label {
        font-weight: 600;
    }
}

/* === ACCESSIBILITY IMPROVEMENTS === */

/* Focus indicators for better accessibility */
.field-input:focus {
    outline: none;
    border-color: #c59a6d;
    box-shadow: 0 0 0 3px rgba(197, 154, 109, 0.2);
}

.ultra-submit-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 43, 72, 0.3);
}

/* === FORM VALIDATION VISUAL IMPROVEMENTS === */

.field-input.is-valid {
    border-color: #28a745;
    background-color: #f8fff9;
}

.field-input.is-invalid {
    border-color: #dc3545;
    background-color: #fff8f8;
}

.field-feedback.show {
    opacity: 1;
    transform: translateY(0);
}

/* === LOADING STATE IMPROVEMENTS === */

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

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* === SUCCESS STATE IMPROVEMENTS === */

.btn-success {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #28a745;
}

/* === ERROR MESSAGE STYLING === */

.alert {
    border-radius: 8px;
    border: none;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

/* === BOOTSTRAP CONTAINER MOBILE FIXES === */

/* Ensure container doesn't cause horizontal scroll */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .row {
        margin-left: -15px;
        margin-right: -15px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .col-lg-6 {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .offset-lg-1 {
        margin-left: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Modern contact section mobile adjustments */
    .modern-contact-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
    }
    
    .modern-contact-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .modern-contact-section .col-lg-5,
    .modern-contact-section .col-lg-6 {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .row {
        margin-left: -10px;
        margin-right: -10px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .col-lg-6 {
        padding-left: 10px;
        padding-right: 10px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Modern contact section small mobile adjustments */
    .modern-contact-section .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .modern-contact-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .modern-contact-section .col-lg-5,
    .modern-contact-section .col-lg-6 {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 8px;
        padding-right: 8px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .row {
        margin-left: -8px;
        margin-right: -8px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .col-lg-6 {
        padding-left: 8px;
        padding-right: 8px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Modern contact section extra small mobile adjustments */
    .modern-contact-section .container {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
    
    .modern-contact-section .row {
        margin-left: -0.125rem;
        margin-right: -0.125rem;
    }
    
    .modern-contact-section .col-lg-5,
    .modern-contact-section .col-lg-6 {
        padding-left: 1.125rem;
        padding-right: 1.125rem;
    }
}

/* === FORM SPECIFIC MOBILE FIXES === */

/* Ensure form doesn't overflow on any screen size */
.modern-contact-section {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.modern-contact-section .container {
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.modern-contact-section .row {
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Form Column centering */
.modern-contact-section .col-lg-6.offset-lg-1 {
    margin-left: 0;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Ensure form container is centered */
.modern-form-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

/* Desktop specific centering */
@media (min-width: 992px) {
    .modern-contact-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding-left: 3rem;
        padding-right: 3rem;
    }
    
    .modern-contact-section .row {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }
    
    .modern-contact-section .col-lg-5,
    .modern-contact-section .col-lg-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .modern-form-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Large desktop screens */
@media (min-width: 1200px) {
    .modern-contact-section .container {
        max-width: 1400px;
        padding-left: 4rem;
        padding-right: 4rem;
    }
    
    .modern-contact-section .row {
        margin-left: -2rem;
        margin-right: -2rem;
    }
    
    .modern-contact-section .col-lg-5,
    .modern-contact-section .col-lg-6 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .modern-form-container {
        max-width: 550px;
    }
}

/* === EXTRA SMALL SCREEN FIXES === */

@media (max-width: 360px) {
    .container {
        padding-left: 5px;
        padding-right: 5px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .row {
        margin-left: -5px;
        margin-right: -5px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .col-lg-6 {
        padding-left: 5px;
        padding-right: 5px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .modern-form-container {
        padding: 0.8rem;
        margin: 0 0.2rem;
        border-radius: 10px;
        width: calc(100% - 0.4rem);
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .form-title {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .form-description {
        text-align: center;
        font-size: 0.75rem;
    }
    
    .field-input {
        min-height: 42px;
        padding: 0.7rem 0.7rem 0.7rem 2.3rem;
        font-size: 16px;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }
    
    .field-label {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
        text-align: left;
    }
    
    .field-input[rows] {
        min-height: 60px;
    }
    
    .ultra-submit-btn {
        height: 45px;
        border-radius: 8px;
    }
    
    .btn-content {
        font-size: 0.85rem;
    }
    
    .recaptcha-container {
        margin: 0.8rem 0;
        padding: 0 0.2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .g-recaptcha {
        transform: scale(0.65);
        transform-origin: center;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    /* Force reCAPTCHA to fit very small screens */
    .g-recaptcha > div {
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    /* Contact method cards extra small mobile padding */
    .contact-method-card {
        margin: 0 0.2rem;
        width: calc(100% - 0.4rem);
        box-sizing: border-box;
    }
    
    /* Modern contact section extra small mobile container */
    .modern-contact-section .container {
        padding-left: 0.2rem;
        padding-right: 0.2rem;
    }
    
    .modern-contact-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .modern-contact-section .col-lg-5,
    .modern-contact-section .col-lg-6 {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 360px) {
    .modern-form-container {
        padding: 0.8rem;
        margin: 0 auto;
        border-radius: 10px;
        width: calc(100% - 0.4rem);
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Center form column on very small mobile */
    .modern-contact-section .col-lg-6 {
        margin-left: auto;
        margin-right: auto;
        padding-left: 0.2rem;
        padding-right: 0.2rem;
    }
    
    .form-title {
        font-size: 1.1rem;
        text-align: center;
    }
}