/* ============================================
   ABOUT US & CONTACT PAGE STYLES - MODERN ELEGANT
   ============================================ */

.about-us-contact-page {
    min-height: 100vh;
    background: #f8f9fa;
    overflow-x: hidden;
}

/* Hero Video/Banner Section - Modern Style */
#hero.video_hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background-image,
.hero-background-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background-gradient {
    background: var(--gradient-primary);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.overlay .title {
    color: #ffffff;
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    padding: 0 20px;
    line-height: 1.2;
}

.overlay .title.upp {
    text-transform: uppercase;
}

.overlay .title.bebas {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    font-weight: 700;
}

/* Mid About Section */
#mid_about {
    padding: 80px 0;
    background: #ffffff;
}

#mid_about .copy {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
    line-height: 1.4;
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    letter-spacing: 1px;
}

.resp_img.dyn_image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin: 0 auto;
    max-width: 1400px;
}

/* About Info Section */
#about_info.concrete {
    padding: 80px 0;
    background: #f8f9fa;
}

#about_info .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#about_info .inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.history_img_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.history_img_placeholder {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.3);
}

#about_info .copy {
    text-align: center;
}

#about_info .copy h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

#about_info .copy p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Section Styles */
.about-section,
.contact-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title {
    font-size: 32px;
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
}

.section-title i {
    color: var(--secondary-color);
    font-size: 28px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Content Grid */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .about-content-grid {
        grid-template-columns: 1fr;
    }
}

.about-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.about-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 20px;
    font-weight: var(--font-extra-bold);
    color: var(--primary);
    margin-bottom: 15px;
}

.card-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.about-image-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.company-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

/* Vision Mission Values Grid - Modern */
.vmv-section {
    padding: 80px 0;
    background: #ffffff;
}

.vmv-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vmv-card-modern {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.vmv-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vmv-card-modern:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.vmv-card-modern:hover::before {
    transform: scaleX(1);
}

.vmv-icon-modern {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
    transition: all 0.3s ease;
}

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

.vmv-title-modern {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.vmv-text-modern {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* History Card */
.history-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.history-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-light);
}

.history-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.history-title {
    font-size: 24px;
    font-weight: var(--font-extra-bold);
    color: var(--primary);
    margin: 0;
}

.history-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
}

/* Contact Section - Modern Multi-Grid */
.contact-section-modern {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.contact-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    letter-spacing: -0.5px;
    flex-wrap: wrap;
}

.contact-title-modern i {
    color: var(--primary);
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-subtitle-modern {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 10px;
}

/* Multi-Grid Contact Layout */
.contact-multi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.contact-card-modern {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.contact-card-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.contact-card-modern:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateX(10px);
}

.contact-card-modern:hover::before {
    transform: scaleY(1);
}

.contact-icon-modern {
    width: 60px;
    height: 60px;
    min-width: 60px;
    flex-shrink: 0;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.contact-details-modern {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.contact-label-modern {
    font-size: 12px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.contact-value-modern {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    word-break: break-word;
    line-height: 1.5;
    overflow-wrap: break-word;
}

.contact-value-modern:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.contact-value-secondary-modern {
    font-size: 15px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    word-break: break-word;
    line-height: 1.5;
    overflow-wrap: break-word;
}

.contact-value-secondary-modern:hover {
    color: var(--primary);
}

.contact-address-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

/* Address Card - Modern */
.address-card-modern {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.address-card-modern:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.address-header-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
    flex-shrink: 0;
}

.address-icon-modern {
    width: 50px;
    height: 50px;
    min-width: 50px;
    flex-shrink: 0;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.address-title-modern {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.address-content-modern {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.address-text-modern {
    margin-bottom: 25px;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.7;
}

.map-link-btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(
        135deg,
        var(--primary, #dc3545) 0%,
        #c82333 100%
    );
    color: var(--white, #ffffff);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 3px 12px rgba(98, 65, 30, 0.15);
    width: fit-content;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

/* Override untuk map-link-btn-modern dengan cta cta_ani */
.map-link-btn-modern.cta.cta_ani {
    padding: 12px 24px;
    border-radius: 25px;
}

.map-link-btn-modern.cta.cta_ani:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(98, 65, 30, 0.3);
}

/* Social Media Section - Modern */
.social-media-section-modern {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.social-title-modern {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

.social-links-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 30px;
    background: #f8f9fa;
    border-radius: 16px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    min-width: 130px;
    position: relative;
    overflow: hidden;
}

.social-link-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.social-link-modern i,
.social-link-modern span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.social-link-modern i {
    font-size: 28px;
}

.social-link-modern span {
    font-size: 14px;
    font-weight: 600;
}

.social-link-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.3);
    border-color: transparent;
}

.social-link-modern:hover::before {
    opacity: 1;
}

.social-link-modern:hover i,
.social-link-modern:hover span {
    color: var(--white);
}

/* Map Section - Modern */
.map-section-modern {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.map-section-modern:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.map-title-modern {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
    flex-shrink: 0;
    line-height: 1.3;
    flex-wrap: wrap;
}

.map-title-modern i {
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.map-container-modern {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: relative;
    flex: 1;
    min-height: 300px;
}

.map-embed-modern {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.map-embed-modern iframe {
    width: 100%;
    height: 400px;
    min-height: 300px;
    border: none;
    display: block;
}

/* Empty State */
.empty-state {
    padding: 100px 0;
    text-align: center;
}

.empty-state-content {
    max-width: 500px;
    margin: 0 auto;
}

.empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 48px;
}

.empty-title {
    font-size: 28px;
    font-weight: var(--font-extra-bold);
    color: var(--primary);
    margin-bottom: 15px;
}

.empty-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(
        135deg,
        var(--primary, #dc3545) 0%,
        #c82333 100%
    );
    color: var(--white, #ffffff);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    font-size: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(98, 65, 30, 0.15);
}

/* Override untuk btn-back-home dengan cta cta_ani */
.btn-back-home.cta.cta_ani {
    padding: 12px 24px;
    border-radius: 25px;
}

.btn-back-home.cta.cta_ani:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(98, 65, 30, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-section-modern {
        padding: 60px 0;
    }

    .contact-header {
        margin-bottom: 50px;
        padding: 0 15px;
    }

    .contact-title-modern {
        font-size: 2rem;
        gap: 12px;
    }

    .contact-title-modern i {
        font-size: 1.75rem;
    }

    .contact-subtitle-modern {
        font-size: 1rem;
        padding: 0 10px;
    }

    .contact-multi-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .contact-info-grid {
        gap: 18px;
    }

    .contact-card-modern {
        padding: 25px;
        gap: 18px;
    }

    .contact-icon-modern {
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 22px;
    }

    .contact-label-modern {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .contact-value-modern {
        font-size: 16px;
    }

    .contact-value-secondary-modern {
        font-size: 14px;
    }

    .contact-address-grid {
        gap: 18px;
    }

    .address-card-modern {
        padding: 30px;
    }

    .address-header-modern {
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 18px;
    }

    .address-icon-modern {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 18px;
    }

    .address-title-modern {
        font-size: 20px;
    }

    .address-content-modern {
        font-size: 15px;
    }

    .address-text-modern {
        margin-bottom: 20px;
    }

    .map-link-btn-modern {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .map-section-modern {
        padding: 30px;
    }

    .map-title-modern {
        font-size: 20px;
        margin-bottom: 20px;
        gap: 10px;
    }

    .map-title-modern i {
        font-size: 18px;
    }

    .map-container-modern {
        min-height: 300px;
    }

    .map-embed-modern iframe {
        height: 350px;
        min-height: 300px;
    }

    #about_info .inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vmv-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    #hero.video_hero {
        height: 50vh;
        min-height: 300px;
    }

    .overlay .title {
        font-size: 2.5rem;
        padding: 0 15px;
    }

    #mid_about {
        padding: 60px 0;
    }

    #mid_about .copy {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .resp_img.dyn_image {
        height: 350px;
    }

    #about_info.concrete {
        padding: 60px 0;
    }

    #about_info .copy h2 {
        font-size: 2rem;
    }

    .vmv-section {
        padding: 60px 0;
    }

    .vmv-grid-modern {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .vmv-card-modern {
        padding: 40px 30px;
    }

    .contact-section-modern {
        padding: 50px 0;
    }

    .contact-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .contact-title-modern {
        font-size: 1.75rem;
        gap: 10px;
    }

    .contact-title-modern i {
        font-size: 1.5rem;
    }

    .contact-subtitle-modern {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .contact-multi-grid {
        gap: 25px;
        padding: 0 15px;
    }

    .contact-info-grid {
        gap: 15px;
    }

    .contact-card-modern {
        padding: 22px;
        gap: 15px;
        border-radius: 14px;
    }

    .contact-icon-modern {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 20px;
        border-radius: 10px;
    }

    .contact-label-modern {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .contact-value-modern {
        font-size: 15px;
    }

    .contact-value-secondary-modern {
        font-size: 13px;
    }

    .contact-address-grid {
        gap: 15px;
    }

    .address-card-modern {
        padding: 25px;
        border-radius: 14px;
    }

    .address-header-modern {
        gap: 12px;
        margin-bottom: 18px;
        padding-bottom: 15px;
    }

    .address-icon-modern {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 18px;
        border-radius: 10px;
    }

    .address-title-modern {
        font-size: 18px;
    }

    .address-content-modern {
        font-size: 14px;
    }

    .address-text-modern {
        margin-bottom: 18px;
        line-height: 1.6;
    }

    .map-link-btn-modern {
        padding: 12px 22px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
        border-radius: 8px;
    }

    .map-section-modern {
        padding: 25px;
        border-radius: 14px;
    }

    .map-title-modern {
        font-size: 18px;
        margin-bottom: 18px;
        gap: 10px;
    }

    .map-title-modern i {
        font-size: 16px;
    }

    .map-container-modern {
        min-height: 280px;
        border-radius: 10px;
    }

    .map-embed-modern {
        border-radius: 10px;
    }

    .map-embed-modern iframe {
        height: 300px;
        min-height: 280px;
    }

    .social-media-section-modern {
        padding: 40px 25px;
    }

    .social-link-modern {
        min-width: 110px;
        padding: 20px 25px;
    }
}

@media (max-width: 576px) {
    #hero.video_hero {
        height: 40vh;
        min-height: 250px;
    }

    .overlay .title {
        font-size: 2rem;
    }

    #mid_about .copy {
        font-size: 1.5rem;
    }

    .resp_img.dyn_image {
        height: 250px;
    }

    .history_img_placeholder {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }

    #about_info .copy h2 {
        font-size: 1.75rem;
    }

    .contact-section-modern {
        padding: 40px 0;
    }

    .contact-header {
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .contact-title-modern {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 8px;
    }

    .contact-title-modern i {
        font-size: 1.3rem;
    }

    .contact-subtitle-modern {
        font-size: 0.9rem;
        padding: 0 5px;
    }

    .contact-multi-grid {
        gap: 20px;
        padding: 0 10px;
    }

    .contact-info-grid {
        gap: 12px;
    }

    .contact-card-modern {
        padding: 18px;
        gap: 12px;
        border-radius: 12px;
    }

    .contact-icon-modern {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 18px;
        border-radius: 10px;
    }

    .contact-label-modern {
        font-size: 9px;
        margin-bottom: 6px;
    }

    .contact-value-modern {
        font-size: 14px;
        line-height: 1.4;
    }

    .contact-value-secondary-modern {
        font-size: 12px;
        line-height: 1.4;
    }

    .contact-address-grid {
        gap: 12px;
    }

    .address-card-modern {
        padding: 20px;
        border-radius: 12px;
    }

    .address-header-modern {
        gap: 10px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }

    .address-icon-modern {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 16px;
        border-radius: 10px;
    }

    .address-title-modern {
        font-size: 16px;
    }

    .address-content-modern {
        font-size: 13px;
    }

    .address-text-modern {
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .map-link-btn-modern {
        padding: 11px 20px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
        border-radius: 8px;
    }

    .map-section-modern {
        padding: 20px;
        border-radius: 12px;
    }

    .map-title-modern {
        font-size: 16px;
        margin-bottom: 15px;
        gap: 8px;
    }

    .map-title-modern i {
        font-size: 14px;
    }

    .map-container-modern {
        min-height: 250px;
        border-radius: 10px;
    }

    .map-embed-modern {
        border-radius: 10px;
    }

    .map-embed-modern iframe {
        height: 250px;
        min-height: 250px;
    }

    .vmv-card-modern {
        padding: 30px 20px;
    }

    .vmv-icon-modern {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .social-link-modern {
        min-width: 100px;
        padding: 15px 20px;
    }
}
