main {
    padding-top: 0 !important;
}

.contact-main,
.contact-main * {
    box-sizing: border-box;
}

.contact-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* HEADER */
.card-header {
    background: #f4a300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    color: white;
    font-weight: bold;
}

.mail-icon {
    position: relative;
    font-size: 28px;
}

.mail-icon .notification {
    position: absolute;
    top: -5px;
    right: -8px;
    background: red;
    color: white;
    font-size: 12px;
    border-radius: 50%;
    padding: 2px 6px;
}

/* BODY */
.card-body {
    background: linear-gradient(90deg, #d4e157, #66bb6a);
    padding: 25px;
}

/* ROW */
.row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.field label {
    display: block;
    color: white;
    font-weight: bold;
    margin-bottom: 5px;
}

.field input,
.field select {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: #eee;
}

/* MESSAGE */
.message-box label {
    display: block;
    color: white;
    font-weight: bold;
    margin-bottom: 8px;
}

.message-box textarea {
    width: 100%;
    border-radius: 10px;
    border: none;
    padding: 12px;
    min-height: 120px;
    background: #eee;
    margin-bottom: 20px;
}

/* DELETE BUTTON */
.send-btn {
    background: #2176ff;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    display: block;
    margin: auto;
}

.send-btn:hover {
    background: #2176ff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .row {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Contact Page Styles */
.contact-hero,
.hero-section.contact-hero,
.contact-hero-section {
    background: linear-gradient(120deg, #2176ff 0%, #2176ff 40%, #e3f0ff 100%);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.2rem;
    box-shadow: 0 2px 18px rgba(33, 118, 255, 0.07);
    margin-top: 120px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.contact-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    min-width: 150px;
}

.contact-stat-number {
    font-size: 2rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.enhanced-contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.enhanced-contact-info {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.1);
    padding: 2.5rem;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.enhanced-contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2176ff 0%, #e67e22 100%);
}

.contact-info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    background: #2176ff;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.contact-info-title h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.6rem;
}

.contact-info-title p {
    margin: 0.2rem 0 0 0;
    color: #666;
    font-size: 1rem;
}

.enhanced-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.enhanced-contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 0;
}

.enhanced-contact-method:hover {
    background: white;
    border-color: #2176ff;
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(33, 118, 255, 0.1);
}

.contact-method-icon {
    background: #2176ff;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-method-details {
    flex: 1;
    min-width: 0;
}

.contact-method-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-method-info {
    color: #666;
    font-size: 0.95rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-method-action {
    color: #2176ff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex: 0 0 auto;
}

.enhanced-contact-method:hover .contact-method-action {
    transform: translateX(-5px);
}

.enhanced-community-section {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.1);
    padding: 2.5rem;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.enhanced-community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.community-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.community-title h2 {
    margin: 0;
    color: var(--primary);
    font-size: 1.6rem;
}

.community-title p {
    margin: 0.2rem 0 0 0;
    color: #666;
    font-size: 1rem;
}

.enhanced-community-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.enhanced-community-group {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.enhanced-community-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2176ff 0%, #e67e22 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enhanced-community-group:hover::before {
    opacity: 0.05;
}

.enhanced-community-group:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.15);
}

.community-group-icon {
    background: var(--primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.enhanced-community-group:hover .community-group-icon {
    transform: scale(1.1);
    background: var(--secondary);
}

.community-group-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.community-group-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.community-group-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.community-stat {
    text-align: center;
}

.community-stat-number {
    font-weight: bold;
    color: var(--primary);
    font-size: 1.1rem;
    display: block;
}

.community-stat-label {
    font-size: 0.8rem;
    color: #666;
}

.enhanced-media-section {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.1);
    padding: 2.5rem;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.enhanced-media-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff0000 0%, #cc0000 100%);
}

.media-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.media-title h2 {
    margin: 0;
    color: var(--primary);
    font-size: 1.6rem;
}

.media-title p {
    margin: 0.2rem 0 0 0;
    color: #666;
    font-size: 1rem;
}

.enhanced-media-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.enhanced-media-channel {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.enhanced-media-channel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enhanced-media-channel.youtube::before {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.enhanced-media-channel.tiktok::before {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.enhanced-media-channel:hover::before {
    opacity: 0.05;
}

.enhanced-media-channel:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.15);
}

.media-channel-icon {
    background: var(--primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.enhanced-media-channel:hover .media-channel-icon {
    transform: scale(1.1);
    background: var(--secondary);
}

.media-channel-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.media-channel-description {
    color: #666;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.enhanced-support-hours {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.1);
    padding: 2.5rem;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.enhanced-support-hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #27ae60 0%, #2ecc71 100%);
}

.support-hours-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.support-hours-icon {
    background: #27ae60;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.support-hours-title h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.6rem;
}

.support-hours-title p {
    margin: 0.2rem 0 0 0;
    color: #666;
    font-size: 1rem;
}

.enhanced-support-schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.enhanced-support-period {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.enhanced-support-period:hover {
    border-color: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.15);
}

.support-period-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.support-period-hours {
    font-size: 1.2rem;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.support-period-days {
    color: #666;
    font-size: 0.9rem;
}

.enhanced-contact-form {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.1);
    padding: 2.5rem;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.enhanced-contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e67e22 0%, #f39c12 100%);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-icon {
    background: #e67e22;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.form-title h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.6rem;
}

.form-title p {
    margin: 0.2rem 0 0 0;
    color: #666;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2176ff;
    background: white;
    box-shadow: 0 0 0 3px rgba(33, 118, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #2176ff 0%, #1e5bb8 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(33, 118, 255, 0.3);
}

@media (max-width: 768px) {
    .contact-main {
        padding-bottom: 5rem;
    }

    .contact-info-section {
        margin-inline: -0.25rem;
    }

    .enhanced-contact-container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .enhanced-contact-info,
    .enhanced-community-section,
    .enhanced-media-section,
    .enhanced-support-hours {
        border-radius: 14px;
        padding: 1.1rem;
    }

    .contact-info-header,
    .community-header,
    .media-header,
    .support-hours-header {
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .contact-info-icon,
    .community-icon,
    .media-icon,
    .support-hours-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        font-size: 1.25rem;
        flex: 0 0 auto;
    }

    .contact-info-title,
    .community-title,
    .media-title,
    .support-hours-title {
        min-width: 0;
    }

    .contact-info-title h2,
    .community-title h2,
    .media-title h2,
    .support-hours-title h2 {
        font-size: 1.2rem;
        line-height: 1.35;
    }

    .contact-info-title p,
    .community-title p,
    .media-title p,
    .support-hours-title p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .enhanced-contact-method {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr) 28px;
        gap: 0.75rem;
        padding: 0.95rem;
        border-radius: 10px;
    }

    .contact-method-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        font-size: 1.25rem;
    }

    .contact-method-title {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    .contact-method-info {
        direction: ltr;
        unicode-bidi: plaintext;
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .contact-method-action {
        align-self: center;
        justify-self: center;
        font-size: 1rem;
    }

    .contact-stats {
        gap: 1.5rem;
    }

    .contact-stat {
        min-width: 120px;
        padding: 1rem 1.5rem;
    }

    .enhanced-community-groups {
        grid-template-columns: 1fr;
    }

    .enhanced-media-channels {
        grid-template-columns: 1fr;
    }

    .enhanced-support-schedule {
        grid-template-columns: 1fr;
    }
}
