.mnl-contact-section * {
    box-sizing: border-box;
}

.mnl-contact-section {
    padding: 120px 0;
    background: #ffffff;
    font-family: 'Roboto', sans-serif;
    color: #1d1d1f;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.mnl-contact-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.mnl-contact-subtitle {
    font-size: 1.25rem;
    color: #666666;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Card */
.mnl-contact-card {
    background: #f5f5f7;
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Contact Type Toggle */
.mnl-contact-type-toggle {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.mnl-toggle-btn {
    flex: 1;
    padding: 16px 20px;
    background: #ffffff;
    border: 2px solid #d2d2d7;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #666666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.mnl-toggle-btn i {
    font-size: 18px;
}

.mnl-toggle-btn:hover {
    border-color: #000000;
    background: #fafafa;
}

.mnl-toggle-btn.active {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}

/* Form Fields Sections */
.mnl-form-fields-section {
    display: none;
}

.mnl-form-fields-section.active {
    display: block;
}

/* Form Styles */
.mnl-contact-form {
    display: block;
}

.mnl-form-group {
    margin-bottom: 28px;
}

.mnl-form-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.mnl-form-input,
.mnl-form-textarea {
    width: 100%;
    padding: 16px 18px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: #000000;
    background: #ffffff;
    border: 1px solid #d2d2d7;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mnl-form-input:focus,
.mnl-form-textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: #000000;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.mnl-form-input::placeholder,
.mnl-form-textarea::placeholder {
    color: #86868b;
}

.mnl-form-textarea {
    resize: vertical;
    min-height: 140px;
}

/* Submit Button */
.mnl-submit-button {
    width: 100%;
    padding: 18px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-family: 'Roboto', sans-serif;
}

.mnl-submit-button:hover {
    background: #1d1d1f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mnl-submit-button:active {
    transform: translateY(0);
}

.mnl-button-arrow {
    transition: transform 0.3s ease;
}

.mnl-submit-button:hover .mnl-button-arrow {
    transform: translateX(4px);
}

/* Success Message */
.mnl-success-message {
    display: none;
    text-align: center;
    padding: 80px 40px;
}

.mnl-success-message.show {
    display: block;
    animation: mnlFadeInScale 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mnl-success-icon {
    margin-bottom: 25px;
}

.mnl-success-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
}

.mnl-success-text {
    font-size: 1.0625rem;
    color: #666666;
    margin: 0;
}

@keyframes mnlFadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Contact Info Grid */
.mnl-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.mnl-info-card {
    background: #f5f5f7;
    border-radius: 18px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.mnl-info-card:hover {
    background: #e8e8ed;
    transform: translateY(-4px);
}

.mnl-info-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mnl-info-icon i {
    font-size: 24px;
    color: #000000;
}

.mnl-info-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mnl-info-link {
    color: #000000;
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
}

.mnl-info-link:hover {
    color: #666666;
}

.mnl-info-text {
    color: #000000;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
}

/* Social Section */
.mnl-social-section {
    text-align: center;
    padding: 40px 0 0;
}

.mnl-social-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666666;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mnl-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.mnl-social-icon {
    width: 50px;
    height: 50px;
    background: #f5f5f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.mnl-social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.mnl-social-icon.facebook {
    background: #1877f2;
}

.mnl-social-icon.youtube {
    background: #ff0000;
}

.mnl-social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.mnl-social-icon.twitter {
    background: #000000;
}

.mnl-social-icon.threads {
    background: #000000;
}

.mnl-social-icon.tiktok {
    background: #000000;
}

.mnl-social-icon.linkedin {
    background: #0077b5;
}

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

/* Tablet */
@media (max-width: 768px) {
    .mnl-contact-section {
        padding: 80px 0;
    }

    .mnl-contact-header {
        margin-bottom: 60px;
    }

    .mnl-contact-title {
        font-size: 2.75rem;
    }

    .mnl-contact-subtitle {
        font-size: 1.125rem;
    }

    .mnl-contact-card {
        padding: 40px 30px;
    }

    .mnl-toggle-btn {
        padding: 14px 18px;
        font-size: 0.875rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .mnl-contact-section {
        padding: 60px 0;
    }

    .mnl-contact-header {
        margin-bottom: 50px;
    }

    .mnl-contact-title {
        font-size: 2rem;
        letter-spacing: -0.3px;
    }

    .mnl-contact-subtitle {
        font-size: 1rem;
    }

    .mnl-contact-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .mnl-contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 15px;
    }

    .mnl-toggle-btn {
        padding: 12px 16px;
        font-size: 0.8125rem;
        gap: 8px;
    }

    .mnl-toggle-btn i {
        font-size: 16px;
    }

    .mnl-form-group {
        margin-bottom: 24px;
    }

    .mnl-form-label {
        font-size: 0.875rem;
    }

    .mnl-form-input,
    .mnl-form-textarea {
        padding: 14px 16px;
        font-size: 0.9375rem;
    }

    .mnl-submit-button {
        padding: 16px;
        font-size: 1rem;
    }

    .mnl-success-message {
        padding: 40px 20px;
    }

    .mnl-success-title {
        font-size: 1.5rem;
    }

    .mnl-success-text {
        font-size: 1rem;
    }

    .mnl-info-card {
        padding: 28px 24px;
    }

    .mnl-info-icon {
        width: 55px;
        height: 55px;
    }

    .mnl-info-icon i {
        font-size: 22px;
    }

    .mnl-social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}