/* ================= ROOT ================= */
:root {
    --primary: #002f5f;
    --secondary: #0077cc;
    --dark: #0b1c2d;
    --light: #f7f9fc;
    --gray: #6c7a89;
}

/* ================= HERO ================= */
.contact-hero-alt {
    background: #ffffff;
    padding: 120px 0 100px;
    border-bottom: 1px solid #eee;
}

.hero-alt-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.hero-alt-text .hero-tag {
    display: inline-block;
    background: rgba(0, 119, 204, 0.1);
    color: var(--secondary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.hero-alt-text h1 {
    font-size: 46px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-alt-text p {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 28px;
}

.hero-alt-visual img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
    object-fit: cover;
}

/* ================= CONTACT EXPERIENCE ================= */
.contact-experience {
    padding: 110px 0;
    background: var(--light);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
}

.experience-card {
    background: #ffffff;
    padding: 60px 55px;
    border-radius: 28px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.08);
}

.experience-card h3 {
    font-size: 30px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 18px;
}

.experience-card p {
    font-size: 16.5px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 24px;
}

.experience-card ul {
    list-style: none;
    padding: 0;
}

.experience-card li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 15.5px;
    color: #333;
}

.experience-card li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    font-weight: bold;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.stat-box {
    background: linear-gradient(135deg, #ffffff, #f1f5fa);
    padding: 36px 28px;
    border-radius: 22px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.stat-box span {
    font-size: 34px;
    font-weight: 900;
    color: var(--primary);
    display: block;
    margin-bottom: 6px;
}

.stat-box p {
    font-size: 14.5px;
    color: #555;
}

/* ================= CONTACT FORM ================= */
.contact-form-modern {
    padding: 120px 0;
    background: #ffffff;
}

.form-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.form-modern-info h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 18px;
}

.form-modern-info p {
    font-size: 16.5px;
    color: #555;
    margin-bottom: 26px;
    line-height: 1.9;
}

.contact-lines p {
    font-size: 15.5px;
    margin-bottom: 10px;
    color: #333;
}

/* ================= FORM BOX ================= */
.form-modern-box {
    background: linear-gradient(135deg, #f9fbff, #eef3f9);
    padding: 55px 50px;
    border-radius: 30px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.1);
}

.modern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.modern-grid textarea {
    grid-column: span 2;
}

.modern-grid input,
.modern-grid textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #dbe2ea;
    font-size: 14.5px;
    outline: none;
    background: #ffffff;
    transition: all 0.3s ease;
}

.modern-grid input:focus,
.modern-grid textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.15);
}

.modern-grid button {
    grid-column: span 2;
    margin-top: 12px;
}

/* ================= BUTTONS ================= */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #fff;
    border-radius: 30px;
    padding: 14px 36px;
    font-weight: 600;
    font-size: 14.5px;
    border: none;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(0, 119, 204, 0.4);
    transition: all 0.35s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(0, 119, 204, 0.55);
}

.btn-outline {
    display: inline-block;
    padding: 13px 32px;
    border-radius: 30px;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--secondary);
    color: #fff;
}

/* ================= MAP ================= */
.contact-map-modern {
    background: var(--light);
    padding: 110px 0;
}

.map-modern-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.map-modern-text h3 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 14px;
    color: var(--dark);
}

.map-modern-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.map-modern-frame {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.15);
    height: 380px;
}

.map-modern-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ================= SOCIAL ================= */
.contact-social-alt {
    background: var(--primary);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.contact-social-alt p {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
}

.social-alt-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    margin: 0 6px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.social-alt-links a:hover {
    background: var(--secondary);
    transform: translateY(-4px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .hero-alt-grid,
    .experience-grid,
    .form-modern-grid,
    .map-modern-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-alt-text h1 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .modern-grid {
        grid-template-columns: 1fr;
    }

    .modern-grid textarea,
    .modern-grid button {
        grid-column: span 1;
    }

    .contact-hero-alt {
        padding: 90px 0 70px;
    }
}
