/* ================= CONTACT HERO (WARM PREMIUM) ================= */
.contact-hero {
    position: relative;
    padding: 120px 0;
    overflow: hidden;

    /* 🌅 warm light gradient */
    background: linear-gradient(180deg,
            #fff8f2 0%,
            #fdf1e6 50%,
            #f6e6d7 100%);
}

/* 🔥 soft warm glow */
.hero-glow {
    position: absolute;
    top: -100px;
    right: -120px;
    width: 400px;
    height: 400px;

    background: radial-gradient(circle,
            rgba(255, 122, 0, 0.18),
            transparent 70%);

    filter: blur(120px);
    z-index: 0;
}

/* subtle cool balance */
.contact-hero::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 350px;
    height: 350px;

    background: radial-gradient(circle,
            rgba(0, 119, 204, 0.12),
            transparent 70%);

    filter: blur(120px);
}

/* ================= CONTENT ================= */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

/* eyebrow */
.eyebrow {
    font-size: 13px;
    letter-spacing: 2px;
    color: #ff7a00;
    font-weight: 600;
    margin-bottom: 12px;
}

/* heading */
.hero-content h1 {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.2;
    color: #0b2c5f;
    margin-bottom: 20px;
}

/* subtext */
.hero-sub {
    font-size: 17px;
    color: #5f6f7f;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* ================= CONTACT BOX ================= */
.hero-contact {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

/* ================= HERO LINK PREMIUM ================= */
.hero-item {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 16px;
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);

    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
    line-height: 1.5;
    /* align-items: flex-start; */
}

/* ✨ soft glow layer */
.hero-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;

    background: linear-gradient(120deg,
            rgba(255, 122, 0, 0.25),
            rgba(255, 59, 59, 0.15),
            transparent 60%);

    opacity: 0;
    transition: 0.4s;
}

/* ================= HOVER ================= */
.hero-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.12),
        0 5px 15px rgba(0, 0, 0, 0.08);
}

.hero-item:hover::before {
    opacity: 1;
}

.hero-item:hover p {
    color: #ff7a00;
}

.hero-item:hover span {
    transform: scale(1.15);
}

/* ================= CLICK (ACTIVE) ================= */
.hero-item:active {
    transform: scale(0.96);
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.15) inset;
}

/* ================= FOCUS (ACCESSIBILITY + PREMIUM RING) ================= */
.hero-item:focus {
    outline: none;
    box-shadow:
        0 0 0 2px rgba(255, 122, 0, 0.4),
        0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ================= ICON ================= */
.hero-item span {
    font-size: 18px;
    transition: 0.3s;
}

/* ================= TEXT ================= */
.hero-item p {
    font-size: 14px;
    color: #2f3f4f;
    transition: 0.3s;
}

.hero-item:active {
    transform: scale(0.95);
}

/* ================= HERO TAGS ================= */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* individual tag */
.hero-tags span {
    font-size: 13px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 50px;

    color: #0b2c5f;

    /* glass + warm tone */
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 255, 255, 0.7);

    transition: all 0.3s ease;
}

/* hover effect */
.hero-tags span:hover {
    transform: translateY(-3px);

    background: linear-gradient(90deg, #ff7a00, #ff3b3b);
    color: #fff;

    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.3);
}

/* ================= RESPONSIVE ================= */

/* ---------- LARGE TABLET (1024px) ---------- */
@media (max-width: 1024px) {
    .contact-hero {
        padding: 100px 0;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-contact {
        gap: 18px;
    }
}


/* ---------- TABLET (768px) ---------- */
@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-sub {
        font-size: 15px;
    }

    /* stack contact items */
    .hero-contact {
        flex-direction: column;
        align-items: center;
    }

    .hero-item {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }

    /* tags center */
    .hero-tags {
        justify-content: center;
    }

    /* reduce glow size */
    .hero-glow {
        width: 300px;
        height: 300px;
        top: -80px;
        right: -80px;
    }
}


/* ---------- MOBILE (480px) ---------- */
@media (max-width: 480px) {
    .contact-hero {
        padding: 70px 0;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-sub {
        font-size: 14px;
        line-height: 1.6;
    }

    .eyebrow {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .hero-item {
        padding: 10px 14px;
        gap: 8px;
    }

    .hero-item span {
        font-size: 16px;
    }

    .hero-item p {
        font-size: 13px;
    }

    .hero-tags span {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* reduce background blur for performance */
    .hero-glow,
    .contact-hero::after {
        filter: blur(80px);
    }
}


/* ---------- SMALL MOBILE (360px) ---------- */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-sub {
        font-size: 13px;
    }
}

/* ================= CONTACT FORM SECTION ================= */
.contact-form-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;

    /* 🌅 layered premium background */
    background:
        radial-gradient(circle at 20% 25%, rgba(255, 122, 0, 0.12), transparent 40%),
        radial-gradient(circle at 80% 75%, rgba(255, 59, 59, 0.10), transparent 45%),
        radial-gradient(circle at 60% 40%, rgba(0, 119, 204, 0.08), transparent 50%),
        linear-gradient(180deg,
            #fffaf5 0%,
            #f7efe6 50%,
            #f2e3d3 100%);
}

/* 🔥 TOP GLOW */
.contact-form-section::before {
    content: "";
    position: absolute;
    top: -150px;
    left: -150px;
    width: 420px;
    height: 420px;

    background: radial-gradient(circle, rgba(255, 122, 0, 0.25), transparent 70%);
    filter: blur(140px);
    z-index: 0;
}

/* 🔥 BOTTOM GLOW */
.contact-form-section::after {
    content: "";
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 350px;
    height: 350px;

    background: radial-gradient(circle, rgba(0, 119, 204, 0.12), transparent 70%);
    filter: blur(120px);
    z-index: 0;
}

/* ✨ GRAIN TEXTURE (separate layer fix) */
.contact-form-section .container::after {
    content: "";
    position: absolute;
    inset: 0;

    background-image: repeating-radial-gradient(circle at 0 0,
            rgba(0, 0, 0, 0.03) 0,
            rgba(0, 0, 0, 0.03) 1px,
            transparent 1px,
            transparent 3px);

    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
}

/* ================= WRAPPER ================= */
.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

/* ================= LEFT ================= */
.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 900;
    margin-bottom: 20px;
    color: #0b2c5f;
}

.form-left p {
    font-size: 16px;
    color: #5a6675;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* benefit points */
.form-points div {
    margin-bottom: 12px;
    font-size: 15px;
    color: #2f3f4f;
    position: relative;
    padding-left: 24px;
}

.form-points div::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff7a00;
    font-weight: bold;
}

/* ================= RIGHT FORM ================= */
.form-right {
    flex: 1;
    padding: 50px;
    border-radius: 26px;

    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.85),
            rgba(255, 255, 255, 0.55));

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.6);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.08),
        0 10px 30px rgba(0, 0, 0, 0.05);

    transition: 0.4s ease;
}

.form-right:hover {
    transform: translateY(-6px);
}

/* ================= GRID ================= */
.grid-2 {
    display: flex;
    gap: 20px;
}

/* ================= INPUT GROUP ================= */
.input-group {
    position: relative;
    flex: 1;
    margin-bottom: 26px;
}

/* INPUT + TEXTAREA + SELECT */
.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 16px 14px;
    border-radius: 12px;
    border: 1px solid #e2e6ea;

    background: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    outline: none;

    transition: all 0.3s ease;
}

/* TEXTAREA */
.input-group textarea {
    min-height: 130px;
    resize: none;
}

/* ================= HOVER + FOCUS ================= */
.input-group input:hover,
.input-group textarea:hover,
.input-group select:hover {
    border-color: #ffb27a;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border-color: #ff7a00;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
}

/* ================= FLOAT LABEL ================= */
.input-group label {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    font-size: 13px;
    color: #888;
    pointer-events: none;
    transition: 0.3s ease;
}

.input-group input:focus+label,
.input-group textarea:focus+label,
.input-group select:focus+label,
.input-group input:valid+label,
.input-group textarea:valid+label,
.input-group select:valid+label {
    top: -8px;
    font-size: 11px;
    color: #ff7a00;
    background: #fff;
    padding: 0 6px;
    border-radius: 6px;
}

/* full width */
.iti {
    width: 100%;
}

/* spacing for flag */
.phone-group input {
    padding-left: 90px !important;
}

/* dropdown style */
.iti__country-list {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

/* search input inside dropdown */
.iti__search-input {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #eee;
}

/* hover effect */
.iti__country:hover {
    background: #fff3e6;
}

/* selected country */
.iti__country.iti__highlight {
    background: #ffe0cc;
}

/* ERROR STYLE (like red box in image) */
.phone-group input.error {
    border-color: #ff3b30;
    box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.15);
}

.form-message {
    margin-top: 15px;
    font-size: 14px;
    padding: 12px 15px;
    border-radius: 10px;
    display: none;
}

.form-message.success {
    display: block;
    background: #e7f9ed;
    color: #1a7f37;
    border: 1px solid #b7ebc6;
}

.form-message.error {
    display: block;
    background: #ffeaea;
    color: #d93025;
    border: 1px solid #f5b5b5;
}

/* ================= BUTTON ================= */
.form-right button {
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    border: none;

    font-size: 15px;
    font-weight: 600;
    color: #fff;

    background: linear-gradient(90deg, #ff7a00, #ff3b3b);
    cursor: pointer;

    position: relative;
    /* 🔥 IMPORTANT */
    overflow: hidden;
    /* 🔥 IMPORTANT */

    transition: all 0.4s ease;
}

/* shine layer (hidden by default) */
.form-right button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;

    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);

    opacity: 0;
    /* 🔥 hidden */
    transition: 0.6s;
}

/* show ONLY on hover */
.form-right button:hover::before {
    left: 120%;
    opacity: 1;
}

/* hover lift */
.form-right button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 122, 0, 0.4);
}

/* click */
.form-right button:active {
    transform: scale(0.96);
}

/* ================= TRUST NOTE ================= */
.form-note {
    margin-top: 10px;
    font-size: 12px;
    color: #6b5a4a;
}

/* ================= QUICK CONTACT ================= */
.quick-contact {
    margin-top: 15px;
    font-size: 13px;
    color: #555;
}

.quick-contact a {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    position: relative;

}

.quick-contact a:hover {
    background: linear-gradient(90deg, #ff7a00, #ff3b3b);
    color: #fff;
}

.quick-contact a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;

    background: linear-gradient(90deg, #ff7a00, #ff3b3b);
    transition: 0.3s;
}

.quick-contact a:hover::after {
    width: 100%;
}

/* ================= STATES ================= */
.form-loading,
.form-success {
    display: none;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
}

.form-loading {
    color: #ff7a00;
}

.form-success {
    color: #2ecc71;
}

/* ================= WHATSAPP ================= */
.whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 50px;

    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;

    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* ================= RESPONSIVE IMPROVED ================= */

/* ---------- LARGE TABLET (1200px) ---------- */
@media (max-width: 1200px) {
    .form-wrapper {
        gap: 40px;
    }

    .form-left h2 {
        font-size: 36px;
    }
}


/* ---------- TABLET (992px) ---------- */
@media (max-width: 992px) {
    .contact-form-section {
        padding: 100px 0;
    }

    .form-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .form-left {
        text-align: center;
    }

    .form-points div {
        padding-left: 0;
    }

    .form-points div::before {
        display: none;
    }

    .form-right {
        width: 100%;
    }
}


/* ---------- SMALL TABLET (768px) ---------- */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 80px 0;
    }

    .form-left h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .form-left p {
        font-size: 15px;
    }

    .grid-2 {
        flex-direction: column;
        gap: 0;
    }

    .form-right {
        padding: 30px 24px;
        border-radius: 20px;
    }

    .input-group {
        margin-bottom: 22px;
    }

    .input-group input,
    .input-group textarea,
    .input-group select {
        padding: 14px;
        font-size: 14px;
    }

    .form-right button {
        padding: 14px;
        font-size: 14px;
    }

    /* reduce heavy glow */
    .contact-form-section::before {
        width: 300px;
        height: 300px;
        filter: blur(100px);
    }

    .contact-form-section::after {
        width: 260px;
        height: 260px;
        filter: blur(90px);
    }
}


/* ---------- MOBILE (480px) ---------- */
@media (max-width: 480px) {
    .contact-form-section {
        padding: 70px 0;
    }

    .form-left h2 {
        font-size: 26px;
    }

    .form-left p {
        font-size: 14px;
        line-height: 1.6;
    }

    .form-right {
        padding: 24px 18px;
    }

    .input-group label {
        font-size: 12px;
    }

    .input-group input,
    .input-group textarea,
    .input-group select {
        font-size: 13px;
        padding: 12px;
    }

    .form-note {
        font-size: 11px;
    }

    .quick-contact {
        font-size: 12px;
    }

    .quick-contact a {
        padding: 5px 10px;
        font-size: 12px;
    }

    .whatsapp-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}


/* ---------- SMALL MOBILE (360px) ---------- */
@media (max-width: 360px) {
    .form-left h2 {
        font-size: 22px;
    }

    .form-left p {
        font-size: 13px;
    }

    .form-right {
        padding: 20px 14px;
    }
}

/* ================= GLOBAL PRESENCE ================= */
.global-presence {
    padding: 130px 0;
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at 20% 30%, rgba(255, 122, 0, 0.12), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 119, 204, 0.08), transparent 45%),
        linear-gradient(180deg, #fffaf5, #f2e3d3);
}

/* subtle glow */
.global-presence::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03), transparent 70%);
    z-index: 0;
}

/* ================= HEADER ================= */
.global-presence .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.global-presence .eyebrow {
    color: #ff7a00;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 10px;
}

.global-presence h2 {
    font-size: clamp(24px, 4.5vw, 44px);
    font-weight: 900;
    color: #0b2c5f;
}

.global-presence h2 span {
    background: linear-gradient(90deg, #ff7a00, #ff3b3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.global-sub {
    max-width: 700px;
    margin: 20px auto 50px;
    color: #5a6675;
    font-size: 16px;
    line-height: 1.8;
}

/* ================= COUNTRIES ================= */
.countries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.countries-grid span {
    padding: 10px 18px;
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.8);

    font-size: 14px;
    color: #0b2c5f;
    font-weight: 500;

    backdrop-filter: blur(10px);

    transition: 0.3s;
}

/* hover effect */
.countries-grid span:hover {
    transform: translateY(-4px);
    background: linear-gradient(90deg, #ff7a00, #ff3b3b);
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.3);
}

/* ================= STATS ================= */
.global-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    background: rgba(255, 255, 255, 0.7);
    padding: 30px 40px;
    border-radius: 20px;
    backdrop-filter: blur(14px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: 0.3s;
}

/* hover */
.stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);

}

/* numbers */
.stat h3 {
    font-size: 34px;
    color: #ff7a00;
    margin-bottom: 5px;
    transition: 0.3s;
}

.stat:hover h3 {
    transform: scale(1.1);
}

/* text */
.stat p {
    font-size: 14px;
    color: #5a6675;
}

/* ================= RESPONSIVE IMPROVED ================= */

/* ---------- LARGE TABLET (1200px) ---------- */
@media (max-width: 1200px) {
    .global-presence {
        padding: 110px 0;
    }

    .global-presence h2 {
        font-size: 38px;
    }

    .global-sub {
        font-size: 15px;
    }
}


/* ---------- TABLET (992px) ---------- */
@media (max-width: 992px) {
    .global-presence {
        padding: 100px 0;
    }

    .global-presence h2 {
        font-size: 34px;
    }

    .countries-grid {
        gap: 12px;
    }

    .global-stats {
        gap: 25px;
    }
}


/* ---------- SMALL TABLET (768px) ---------- */
@media (max-width: 768px) {
    .global-presence {
        padding: 80px 0;
    }

    .global-presence h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .global-sub {
        font-size: 14px;
        margin: 15px auto 40px;
    }

    .countries-grid span {
        font-size: 13px;
        padding: 8px 14px;
    }

    /* stack stats nicely */
    .global-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat {
        width: 100%;
        max-width: 320px;
        text-align: center;
        padding: 22px;
    }

    .stat h3 {
        font-size: 28px;
    }

    /* reduce heavy glow */
    .global-presence::before {
        opacity: 0.6;
    }
}


/* ---------- MOBILE (480px) ---------- */
@media (max-width: 480px) {
    .global-presence {
        padding: 70px 0;
    }

    .global-presence h2 {
        font-size: 26px;
    }

    .global-sub {
        font-size: 13px;
        line-height: 1.6;
    }

    .countries-grid {
        gap: 8px;
    }

    .countries-grid span {
        font-size: 12px;
        padding: 6px 12px;
    }

    .stat {
        padding: 18px;
        border-radius: 16px;
    }

    .stat h3 {
        font-size: 24px;
    }

    .stat p {
        font-size: 13px;
    }
}


/* ---------- SMALL MOBILE (360px) ---------- */
@media (max-width: 360px) {
    .global-presence h2 {
        font-size: 22px;
    }

    .global-sub {
        font-size: 12px;
    }
}
