.contact-hero {
    min-height: 85vh;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    display: flex;
    align-items: center;
    padding: 90px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* soft glow */
.contact-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.35), transparent 70%);
    top: -150px;
    right: -150px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* LEFT */
.hero-text {
    max-width: 620px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff9f43;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 2px;
    font-size: 14px;
}

.hero-text h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
}

.hero-text p {
    font-size: 18px;
    color: #d9d9d9;
    line-height: 1.6;
    max-width: 520px;
}

.hero-cta {
    margin-top: 28px;
}

.hero-cta .btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #ff6a00, #ff8c00);
    color: #fff;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 106, 0, 0.4);
}

/* RIGHT IMAGE */
.hero-image {
    display: flex;
    justify-content: center;
}

.image-glass {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-image img {
    max-width: 420px;
    width: 100%;
    animation: floatImg 4s ease-in-out infinite;
}

/* animation */
@keyframes floatImg {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .hero-text p {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }
}


/* ================== SECTION BACKGROUND ================== */
.quote-section {
    padding: 110px 0;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    position: relative;
    overflow: hidden;
}

/* ================== GLASS FORM CARD ================== */
.quote-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    padding: 50px;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-card h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1d1d1d;
}

/* ================== INPUTS ================== */
.form-control,
.form-select {
    padding: 16px 18px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: #b30000;
    box-shadow: 0 0 0 3px rgba(179, 0, 0, 0.15);
}

/* ================== CHECKBOX ================== */
.agree {
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ================== BUTTON ================== */
.quote-btn {
    width: 100%;
    padding: 15px;
    border-radius: 60px;
    border: none;
    background: linear-gradient(135deg, #b30000, #ff2f2f);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: 0.35s;
}

.quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 47, 47, 0.45);
}

.privacy-text {
    text-align: center;
    margin-top: 18px;
    font-size: 13px;
    color: #666;
}

/* ================== RIGHT CONTACT PANEL ================== */
.contact-info {
    padding-left: 30px;
}

.contact-info h3 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 22px;
    color: #fff;
}

/* ================== INFO ROW ================== */
.info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 16px;
    color: #f1f1f1;
    line-height: 1.6;
}

.info-item i {
    font-size: 20px;
    color: #ffbdbd;
}

/* ================== LINK ================== */
.direction-link {
    display: inline-block;
    margin-top: 15px;
    color: #ffd6d6;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #ffd6d6;
    padding-bottom: 2px;
}

/* ================== SOCIAL ================== */
.social-icons {
    margin-top: 15px;
}

.social-icons i {
    font-size: 22px;
    margin-right: 16px;
    cursor: pointer;
    color: #fff;
    transition: 0.3s;
}

.social-icons i:hover {
    transform: scale(1.2);
    color: #ffbdbd;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
    .quote-section {
        padding: 70px 0;
    }

    .quote-card {
        padding: 35px;
    }

    .contact-info {
        padding-left: 0;
        margin-top: 30px;
    }

    .quote-card h2 {
        font-size: 28px;
    }
}


/* ================= HELP SECTION ================= */
.help-section {
    padding: 110px 0;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    position: relative;
}

/* ================= HEADING ================= */
.help-heading {
    text-align: center;
    margin-bottom: 60px;
}

.help-heading h2 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.help-heading p {
    color: #ffdede;
    font-size: 16px;
    letter-spacing: 1px;
}

/* ================= GRID ================= */
.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

/* ================= CARD ================= */
.help-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.help-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #b30000, #ff3b3b);
    opacity: 0;
    transition: 0.4s;
    z-index: 0;
}

.help-card:hover::before {
    opacity: 1;
}

.help-card * {
    position: relative;
    z-index: 1;
}

.help-card:hover {
    transform: translateY(-10px);
}

/* ================= ICON ================= */
.help-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffe6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

/* ================= TEXT ================= */
.help-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
    transition: 0.3s;
}

.help-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    transition: 0.3s;
}

/* ================= HOVER TEXT ================= */
.help-card:hover h4,
.help-card:hover p {
    color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .help-section {
        padding: 80px 20px;
    }

    .help-heading h2 {
        font-size: 30px;
    }
}


/* ================= STATS SECTION ================= */
.stats-section {
    padding: 80px 0;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

/* GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    align-items: center;
    text-align: center;
}

/* BOX */
.stat-box {
    color: #fff;
    padding: 25px 15px;
    transition: 0.4s ease;
    position: relative;
}

.stat-box::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #ffdede;
    left: 50%;
    bottom: 0;
    transition: 0.4s;
    transform: translateX(-50%);
}

.stat-box:hover::after {
    width: 60%;
}

.stat-box:hover {
    transform: translateY(-8px);
}

/* ICON */
.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

/* TEXT */
.stat-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-box p {
    font-size: 14px;
    color: #ffdede;
    line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
    .stats-section {
        padding: 60px 20px;
    }
}