
html {
    font-size: 16px;
}

@media (max-width: 991.98px) {
    html {
        font-size: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    html {
        font-size: 14px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 1rem;
    }
}


.contact-section {
    max-width: 1200px;
    margin: 13rem auto auto auto;
    position: relative;
    padding-bottom: 5rem;
}


.hero-background {
    position: absolute;
    top: -200px;
    left: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.hero-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-sphere-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(58, 157, 251, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    top: -200px;
    left: -100px;
    animation: float 10s ease-in-out infinite;
}

.hero-sphere-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(9, 105, 194, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    top: 100px;
    right: -50px;
    animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 40px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.contact-title h1 {
    margin-top: -30px;
    line-height: 1.2;
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-title {
    text-align: center;
    margin-bottom: 40px;
    color: #2e3a59;
    font-weight: 700;
}

.intro-text {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-text p {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.6;
}


.contact-split-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: flex-start;
}

.contact-info-side {
    flex: 1;
    min-width: 300px;
}

.contact-form-side {
    flex: 1.5;
    min-width: 300px;
}


.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(58, 157, 251, 0.1), rgba(9, 105, 194, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a9dfb;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.info-content p,
.info-content a {
    color: #5a6c7d;
    font-size: 1.05rem;
    line-height: 1.5;
    text-decoration: none;
    margin: 0;
    display: block;
}

.info-content a:hover {
    color: #3a9dfb;
}


.glass-form-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.glass-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3a9dfb, #0969c2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #f1f3f5;
    border-radius: 15px;
    background: #f8f9fa;
    font-size: 1rem;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.form-control-input:focus {
    border-color: #3a9dfb;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(58, 157, 251, 0.1);
    outline: none;
}

.form-control-textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #f1f3f5;
    border-radius: 15px;
    background: #f8f9fa;
    font-size: 1rem;
    color: #2c3e50;
    min-height: 180px;
    resize: vertical;
    transition: all 0.3s ease;
}

.form-control-textarea:focus {
    border-color: #3a9dfb;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(58, 157, 251, 0.1);
    outline: none;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
    margin-left: 0.5rem;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #3a9dfb, #0969c2);
    color: #fff;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(58, 157, 251, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(58, 157, 251, 0.4);
}


.faq-section {
    margin-bottom: 6rem;
}

.faq-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.faq-question i {
    color: #3a9dfb;
    margin-right: 10px;
    font-size: 1rem;
}

.faq-answer {
    color: #5a6c7d;
    line-height: 1.6;
}


.map-section {
    height: 400px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-overlay i {
    color: #3a9dfb;
    font-size: 1.5rem;
}

.map-overlay span {
    font-weight: 700;
    color: #2c3e50;
}

.map-frame {
    width: 100%;
    height: 100%;
    border: 0;
}


.heading-gradient {
    background: linear-gradient(135deg, rgba(58, 157, 251, 1), rgba(9, 105, 194, 1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #3a9dfb;
}


@media (max-width: 991.98px) {
    .contact-split-container {
        flex-direction: column;
    }

    .contact-info-side,
    .contact-form-side {
        width: 100%;
    }

    .contact-title h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 575.98px) {
    .contact-title h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .glass-form-container {
        padding: 2rem 1.5rem;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .info-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}


.navbar-custom {
    background-color: #ffffff !important;
}

.navbar-custom .navbar-toggler {
    color: #000000 !important;
}

.navbar-custom .navbar-toggler-awesome {
    color: #000000 !important;
}
