/* Info Section */
.info-section {
    padding: 40px 0 40px;
    text-align: center;
}

.tagline h2 {
    font-size: 42px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.tagline h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background-color: var(--bv-primary);
    border-radius: 4px;
}

.tagline p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.info-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--bv-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

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

.info-card .icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.info-card:hover .icon-wrap {
    background-color: var(--bv-primary);
    transform: rotateY(180deg);
}

.info-card .icon-wrap svg {
    width: 32px;
    height: 32px;
    fill: #000000;
    transition: fill 0.4s ease;
}

.info-card:hover .icon-wrap svg {
    fill: #ffffff;
}

.info-card h3 {
    font-size: 24px;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-card div {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

.info-card div p {
    margin-bottom: 0;
}

.info-card div a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card div a:hover {
    color: var(--bv-primary);
}

/* Contact Section */
.contact-section {
    padding: 0 0 40px;
}

.contact-box {
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.form-pane {
    flex: 1;
    padding: 40px;
    min-width: 50%;
}

.form-pane h2 {
    font-size: 32px;
    color: #000000;
    margin-bottom: 40px;
    font-weight: 800;
    position: relative;
}

.form-pane h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: var(--bv-primary);
    border-radius: 2px;
}

.form-row {
    display: flex;
    gap: 25px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group.full {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    color: #000000;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0a0a0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bv-primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.03);
}

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

.btn-submit {
    display: inline-block;
    padding: 18px 45px;
    background-color: #000000;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid #000000;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-submit::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bv-primary);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.btn-submit:hover {
    border-color: var(--bv-primary);
    color: #ffffff;
}

.btn-submit:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.map-pane {
    flex: 1;
    min-width: 50%;
    min-height: 500px;
    background: #e9ecef;
    position: relative;
}

.map-pane iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    filter: grayscale(20%) contrast(1.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-box {
        flex-direction: column;
    }

    .form-pane,
    .map-pane {
        min-width: 100%;
    }

    .map-pane {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .info-section {
        padding: 30px 0 40px;
    }

    .tagline h2 {
        font-size: 32px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-pane {
        padding: 40px 25px;
    }

    .map-pane {
        min-height: 300px;
    }

    .info-cards {
        gap: 15px;
    }

    .info-card {
        padding: 15px;
    }

    .form-pane h2 {
        font-size: 24px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
    }

    .form-group {
        margin-bottom: 10px;
    }
}