h3 {
    font-size: var(--text-lg);
}

input {
    font-size: var(--text-base);
}

div {
    font-size: var(--text-sm);
}

.btn-contact {
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-contact:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.hero-section {
    background: linear-gradient(rgba(255, 116, 36, 0.3), rgba(70, 1, 1, 0.7)), url('../images/contact-image.jpg') center/cover no-repeat;
    color: var(--text-white);
    padding: 120px 0;
    text-align: center;
    font-weight: 600;
    
}

.hero-title {
    font-size: var(--text-xxl);
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: var(--text-md);
    margin-bottom: 30px;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary-custom {
    background-color: var(--secondary-color);
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: #e58315;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-title {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.contact-info {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-icon {
    color: var(--primary-color);
    font-size: var(--text-base);
    margin-right: 15px;
}

.contact-card {
    background-color: var(--bg-dark);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #e6f3f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: var(--text-sm);
}

.contact-card h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}


.contact-card p {
    font-size: var(--text-sm);
}

.contact-form input,
.contact-form textarea {
    border-radius: 5px;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}


.map-section {
    padding: 40px 0 80px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-height: 1000px;
    height: 800px;
}




/* ======================
   MEDIA QUERY FOR 4K - 8K SCREENS
====================== */
@media (min-width: 2560px) {
    /* Base Typography */
    h3 {
        font-size: var(--text-xl);
    }

    input {
        font-size: var(--text-base);
    }

    div {
        font-size: var(--text-base);
    }

    /* Contact Button */
    .btn-contact {
        border-radius: 45px;
        padding: 20px 50px;
        font-size: var(--text-base);
    }

    /* Hero Section */
    .hero-section {
        padding: 240px 0;
    }

    .hero-title {
        font-size: var(--text-xxl);
        margin-bottom: 50px;
    }

    .hero-subtitle {
        font-size: var(--text-xl);
        margin-bottom: 70px;
        max-width: 65%;
    }

    /* Primary Custom Button */
    .btn-primary-custom {
        border-radius: 45px;
        padding: 24px 60px;
        font-size: var(--text-base);
    }

    .btn-primary-custom:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    /* Contact Section */
    .contact-section {
        padding: 180px 0;
    }

    .section-title {
        font-size: var(--text-xxl);
        margin-bottom: 120px;
    }

    /* Contact Info */
    .contact-info {
        margin-bottom: 90px;
    }

    .contact-item {
        margin-bottom: 50px;
    }

    .contact-icon {
        font-size: var(--text-lg);
        margin-right: 35px;
    }

    /* Contact Card */
    .contact-card {
        border-radius: 20px;
        padding: 70px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        margin-bottom: 70px;
    }

    .contact-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

    .contact-card-icon {
        width: 180px;
        height: 180px;
        margin: 0 auto 50px;
        font-size: var(--text-xl);
    }

    .contact-card h3 {
        font-size: var(--text-xxl);
        margin-bottom: 35px;
    }

    .contact-card p {
        font-size: var(--text-base);
    }

    /* Contact Form */
    .contact-form input,
    .contact-form textarea {
        border-radius: 12px;
        padding: 24px 30px;
        margin-bottom: 45px;
        border: 2px solid #ddd;
        font-size: var(--text-base);
    }

    /* Map Section */
    .map-section {
        padding: 90px 0 180px;
    }

    .map-container {
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        max-height: 2000px;
        height: 1600px;
    }
}