/* Contact Intro Section */
.contact-intro {
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
}

.intro-text {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact Main Section */
.contact-main {
    background: #ffffff;
    position: relative;
}

/* Contact Form */
.contact-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 182, 0, 0.1);
}

.contact-form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.form-control-custom,
.form-select.form-control-custom {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-control-custom:focus,
.form-select.form-control-custom:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 182, 0, 0.1);
    outline: none;
}

.form-control-custom::placeholder {
    color: #999;
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 150px;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #ffc933);
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    padding: 14px 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 182, 0, 0.3);
    background: linear-gradient(135deg, #ffc933, var(--primary-color));
}

/* Contact Info */
.contact-info-wrapper {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 182, 0, 0.1);
}

.contact-info-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 182, 0, 0.15);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color), #ffc933);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 24px;
}

.contact-card-content {
    flex: 1;
}

.contact-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.contact-card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-card-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-card-text a:hover {
    color: #ffc933;
    text-decoration: underline;
}

/* Social Section */
.social-section {
    background: linear-gradient(135deg, rgba(255, 182, 0, 0.05), rgba(255, 182, 0, 0.02));
    border-top: 1px solid rgba(255, 182, 0, 0.1);
    border-bottom: 1px solid rgba(255, 182, 0, 0.1);
}

.social-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #ffc933);
    color: var(--secondary-color);
    border-radius: 50%;
    font-size: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 182, 0, 0.2);
    text-decoration: none;
}

.social-link:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 182, 0, 0.3);
}

/* Responsive Adjustments */

@media (max-width: 1024px) {
    .hero-title-custom {
        font-size: 42px;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px;
    }

    .contact-form-title,
    .contact-info-title {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .hero-title-custom {
        font-size: 38px;
    }

    .hero-section-reduced {
        height: 45vh;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 25px;
    }

    .contact-form-title,
    .contact-info-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .social-link {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .hero-title-custom {
        font-size: 32px;
    }

    .hero-section-reduced {
        height: 40vh;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 20px;
        margin-bottom: 30px;
    }

    .contact-form-title,
    .contact-info-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .contact-card {
        padding: 15px;
        gap: 15px;
    }

    .contact-card-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 20px;
    }

    .contact-card-title {
        font-size: 14px;
    }

    .contact-card-text {
        font-size: 13px;
    }

    .form-label {
        font-size: 13px;
    }

    .form-control-custom,
    .form-select.form-control-custom {
        padding: 10px 12px;
        font-size: 14px;
    }

    .btn-primary {
        font-size: 14px;
        padding: 12px 25px;
    }

    .social-title {
        font-size: 20px;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 22px;
        gap: 20px;
    }

    .intro-text {
        font-size: 16px;
    }

    .hero {
        min-height: 35vh;
    }
}

@media (max-width: 576px) {
    .hero-title-custom {
        font-size: 24px;
    }

    .hero-section-reduced {
        height: 35vh;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 15px;
        margin-bottom: 20px;
    }

    .contact-form-title,
    .contact-info-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .contact-card {
        padding: 12px;
        gap: 12px;
        margin-bottom: 12px;
    }

    .contact-card-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }

    .contact-card-title {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .contact-card-text {
        font-size: 12px;
    }

    .form-group {
        margin-bottom: 15px !important;
    }

    .form-label {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .form-control-custom,
    .form-select.form-control-custom {
        padding: 10px;
        font-size: 13px;
    }

    textarea.form-control-custom {
        min-height: 120px;
    }

    .btn-primary {
        font-size: 13px;
        padding: 11px 20px;
    }

    .social-title {
        font-size: 18px;
        margin-bottom: 20px !important;
    }

    .social-links {
        gap: 20px;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .intro-text {
        font-size: 15px;
    }

    .section-divider {
        width: 60px;
    }
}
