:root {
    --gt-body: #ffffff;
    --gt-black: #000000;
    --gt-white: #ffffff;
    --gt-theme: #dd1f25;
    --gt-header: #1D1D1D;
    --gt-text: #595959;
    --gt-border: #FCFCFC;
    --gt-bg: #F2F2F2;
    --gt-box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
    --gt-gold: #f4c542;
    --gt-gold-soft: rgba(244, 197, 66, 0.12);
}
.modal {
    z-index: 10001 !important;
}

.modal-backdrop {
    z-index: 10000 !important;
}
/* Full height layout */
html, body {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Wrapper */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main content grows */
.main-content {
    flex: 1;
    padding-top: 90px; /* VERY IMPORTANT (for fixed navbar) */
}


/*Contqct US*/

/* ==========================================
   CONTACT SECTION
========================================== */

.enhanced-contact-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

/* ==========================================
   HERO
========================================== */

.contact-hero-section {
    max-width: 760px;
    margin: 0 auto;
}

.contact-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.2rem;
    background: rgba(221, 31, 37, 0.08);
    color: #dd1f25;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border: 1px solid rgba(221, 31, 37, 0.12);
}

.contact-hero-title {
    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    color: #111827;
    margin-bottom: 1.25rem;
}

.contact-hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #6b7280;
}

/* ==========================================
   CARDS
========================================== */

.contact-info-card,
.contact-form-card {
    position: relative;
    background: #ffffff;
    padding: 2.3rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: 0.35s ease;
    height: 100%;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.04);
}

    .contact-info-card:hover,
    .contact-form-card:hover {
        transform: translateY(-5px);
        border-color: rgba(221, 31, 37, 0.12);
        box-shadow: 0 25px 60px rgba(221, 31, 37, 0.08);
    }

/* ==========================================
   CARD HEADER
========================================== */

.contact-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-card-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    background: #dd1f25;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 15px 30px rgba(221, 31, 37, 0.2);
}

.contact-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
}

.contact-section-text {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.96rem;
}

/* ==========================================
   CONTACT ITEMS
========================================== */

.contact-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-details-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: #f9fafb;
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: 0.3s ease;
}

    .contact-details-item:hover {
        border-color: rgba(221, 31, 37, 0.12);
        background: rgba(221, 31, 37, 0.02);
        transform: translateX(4px);
    }

.contact-icon-box {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: #dd1f25;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-details-content {
    flex: 1;
}

.contact-label {
    display: block;
    color: #111827;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.contact-details-content p,
.contact-details-content a,
.contact-details-content small {
    color: #6b7280;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s ease;
}

    .contact-details-content a:hover {
        color: #dd1f25;
    }

/* ==========================================
   MAP
========================================== */

.enhanced-map-container {
    position: relative;
    overflow: hidden;
    height: 260px;
    cursor: pointer;
}

    .enhanced-map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
        filter: grayscale(100%);
        transition: 0.4s ease;
    }

    .enhanced-map-container:hover iframe {
        filter: grayscale(0%);
        transform: scale(1.02);
    }

.map-view-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.15));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    gap: 0.8rem;
    opacity: 0;
    transition: 0.35s ease;
}

.enhanced-map-container:hover .map-view-overlay {
    opacity: 1;
}

.map-view-overlay i {
    font-size: 2rem;
}

.map-view-overlay span {
    font-size: 0.95rem;
    font-weight: 600;
}

/* ==========================================
   SOCIAL LINKS
========================================== */

.social-media-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-media-link {
    width: 52px;
    height: 52px;
    background: #f9fafb;
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.35s ease;
}

    .social-media-link:hover {
        background: #dd1f25;
        color: #ffffff;
        border-color: #dd1f25;
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(221, 31, 37, 0.18);
    }

/* ==========================================
   FORM
========================================== */

.enhanced-form-group {
    position: relative;
    transition: 0.3s ease;
}

    .enhanced-form-group.active {
        transform: translateY(-2px);
    }

.enhanced-form-label {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: #111827;
    font-size: 0.9rem;
    font-weight: 600;
}

.enhanced-form-control {
    width: 100%;
    background: #f9fafb;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 1rem 1.1rem;
    color: #111827;
    font-size: 0.96rem;
    outline: none;
    transition: 0.3s ease;
    resize: none;
}

    .enhanced-form-control:focus {
        border-color: rgba(221, 31, 37, 0.4);
        background: #ffffff;
        box-shadow: 0 0 0 4px rgba(221, 31, 37, 0.08);
    }

    .enhanced-form-control::placeholder {
        color: #9ca3af;
    }

/* ==========================================
   BUTTON
========================================== */

.enhanced-submit-btn {
    position: relative;
    overflow: hidden;
    border: 0;
    background: #dd1f25;
    color: #ffffff;
    padding: 1rem 1.6rem;
    width: 100%;
    font-size: 0.96rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: 0.35s ease;
}

    .enhanced-submit-btn:hover {
        background: #b91c1c;
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(221, 31, 37, 0.22);
    }

    .enhanced-submit-btn i {
        transition: 0.3s ease;
    }

    .enhanced-submit-btn:hover i {
        transform: translateX(4px);
    }

/* ==========================================
   BUTTON RIPPLE
========================================== */

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255,255,255,0.45);
    animation: ripple-animation 0.65s linear;
    pointer-events: none;
}

@keyframes ripple-animation {

    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .contact-info-card,
    .contact-form-card {
        padding: 1.8rem;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {

    .enhanced-contact-section {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-subtitle {
        font-size: 0.95rem;
    }

    .contact-card-header {
        flex-direction: column;
    }

    .contact-details-item {
        flex-direction: column;
    }

    .contact-icon-box {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .social-media-links {
        justify-content: center;
    }

    .enhanced-map-container {
        height: 220px;
    }

    .enhanced-submit-btn {
        width: 100%;
    }
}