.contact-info-section {
    background: #1C1F5A;
    padding: 80px 0;
}

.container4 {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-card {
    position: relative;
   background: rgba(255,255,255,0.06);
    padding: 30px 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.contact-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 25px;
    bottom: 25px;
    width: 4px;
    background: #ff5a1f;
    border-radius: 4px;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255,90,31,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 20px;
    color: #ff5a1f;
}

/* WhatsApp Green Icon */
.whatsapp-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.contact-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-card span {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
}

/* Remove unwanted extra icon */
.icon-box::before,
.icon-box::after {
    content: none !important;
    display: none !important;
}

/* Also hide any unwanted spans/icons */
.icon-box span {
    display: none !important;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}


/* =====================================
   CONTACT PAGE - UPDATED CLEAN PREMIUM
   Primary: #1C1F5A
   Accent: #ff5a1f
===================================== */

.contact-page12 {
    background: #1C1F5A;
    padding: 100px 0;
     padding-bottom: 90px;  
    position: relative;
    overflow: hidden;
}

.contact-page12::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,90,31,0.18), transparent 70%);
    top: -120px;
    right: -120px;
    z-index: 0;
}

.contact-page12 .container {
    position: relative;
    z-index: 2;
}

/* LEFT CONTENT */

.sec-title__tagline h4,
.sec-title__title {
    color: #ffffff;
}

.contact-page12__top-content-text1 p {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

/* SOCIAL ICONS */

.social-links {
    margin-top: 25px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff5a1f;
    transform: translateY(-4px);
}

/* =====================================
   FORM CARD
===================================== */

.contact-page12__top-form {
    background: rgba(255,255,255,0.06);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}

/* =====================================
   INPUTS
===================================== */

.input-box {
    margin-bottom: 24px;
}

.input-box label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

/* Inputs */

.input-box input,
.input-box textarea,
.input-box select {
    width: 100%;
    padding: 15px 18px;
    border-radius: 10px;
    border: 1px solid #e2e2e2;
    background: #f8f9fc;
    font-size: 14px;
    color: #1C1F5A;
    transition: all 0.3s ease;
    outline: none;
}

/* Placeholder */

.input-box input::placeholder,
.input-box textarea::placeholder {
    color: #9aa0a6;
}

/* Focus */

.input-box input:focus,
.input-box textarea:focus,
.input-box select:focus {
    border-color: #ff5a1f;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255,90,31,0.12);
}

/* Textarea */

.input-box textarea {
    min-height: 140px;
    resize: vertical;
}

/* =====================================
   BUTTON
===================================== */

.thm-btn {
    position: relative;

    background: linear-gradient(135deg, #ff5a1f, #ff7a45);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255,90,31,0.35);
}

/* Loader */

.btn-loader {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.thm-btn.loading .btn-text {
    visibility: hidden;
}

.thm-btn.loading .btn-loader {
    display: block;
}

/* =====================================
   SUCCESS POPUP
===================================== */

.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28,31,90,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9999;
}

.success-popup.active {
    opacity: 1;
    visibility: visible;
}

.success-box {
    background: #ffffff;
    padding: 45px 55px;
    border-radius: 20px;
    text-align: center;
    animation: popUp 0.4s ease;
}

.success-box h4 {
    color: #1C1F5A;
    margin-top: 15px;
}

.checkmark {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid #ff5a1f;
    position: relative;
    margin: auto;
}

.checkmark::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 40px;
    border-right: 4px solid #ff5a1f;
    border-bottom: 4px solid #ff5a1f;
    transform: rotate(45deg);
    top: 10px;
    left: 22px;
}

@keyframes popUp {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 991px) {
    .contact-page12 {
        padding: 80px 0;
    }

    .contact-page12__top-form {
        margin-top: 40px;
        padding: 35px;
    }
}

@media (max-width: 600px) {
    .contact-page12 {
        padding: 60px 0;
    }

    .contact-page12__top-form {
        padding: 25px 20px;
    }
}






/* =========================
   TRACK BOX - FINAL UI
========================= */
.track-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 14px;

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);

    /* Border Setup */
    border: 2px solid transparent;
    background-clip: padding-box;

    position: relative;
    transition: all 0.3s ease;
}

/* 🔥 Gradient Border Layer */
.track-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 2px;

    background: linear-gradient(135deg, #FD5523, #1C1F5A);

    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none; /* ✅ FIX CLICK ISSUE */
}

/* Hover Effect */
.track-box:hover {
    box-shadow: 0 0 20px rgba(253, 85, 35, 0.35);
}

/* Focus Effect */
.track-box:focus-within {
    box-shadow: 0 0 0 2px rgba(253, 85, 35, 0.3);
}

/* =========================
   ICON
========================= */
.track-icon {
    display: flex;
    align-items: center;
}

/* =========================
   INPUT
========================= */
.track-box input {
    border: none;
    outline: none;
    background: transparent;

    color: #ffffff;
    font-size: 15px;
    width: 180px;
}

/* Placeholder */
.track-box input::placeholder {
    color: white;
}

/* =========================
   BUTTON
========================= */
.track-box button {
    display: flex;
    align-items: center;
    gap: 6px;

    background:  #FD5523;
    color: #ffffff;

    border: none;
    padding: 7px 16px;
    border-radius: 10px;

    cursor: pointer;
    font-size: 13px;
    font-weight: 500;

    transition: all 0.3s ease;
}

/* Button Hover */
.track-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(188, 64, 64, 0.3);
}

/* Button Click */
.track-box button:active {
    transform: scale(0.95);
}

/* =========================
   SAFETY (CLICK FIX)
========================= */
.main-header-one__bottom-right {
    position: relative;
    z-index: 10;
}

.track-box {
    z-index: 10;
}

.track-box button {
    z-index: 11;
    pointer-events: auto;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
    .track-box input {
        width: 140px;
    }
}

/* Mobile Hide */
@media (max-width: 768px) {
    .track-box {
        display: none;
    }
}