/* ============================================
   CONTACT PAGE - GUDFIN STYLE
   ============================================ */
.contact-hero {
    height: 500px;
    background-image: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?w=1920&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    padding-left: 0;
}

.contact-hero h1 {
    font-size: 60px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-breadcrumb {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-breadcrumb a {
    color: #fff;
}

.contact-breadcrumb i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
}


/* Contact Cards */
.contact-cards-section {
    padding: 100px 0;
    background: #fff;
}

.contact-card-gudfin {
    border: 1px solid var(--border-light);
    padding: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    background: #fff;
}

.contact-card-gudfin:hover {
    border-color: var(--accent-yellow);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.icon-yellow-outline {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
    font-size: 24px;
    margin-bottom: 24px;
    border: 2px solid var(--accent-yellow);
    transition: all 0.3s;
}

.contact-card-gudfin:hover .icon-yellow-outline {
    background: var(--accent-yellow);
    color: #fff;
}

.contact-card-gudfin h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-card-gudfin p {
    color: var(--text-body);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.read-more-link {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.read-more-link:hover {
    color: var(--accent-yellow);
}

.read-more-link i {
    width: 28px;
    height: 28px;
    background: #f4f5f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: 0.3s;
    color: var(--text-dark);
}

.read-more-link:hover i {
    background: var(--accent-yellow);
    color: #fff;
}


/* Contact Split Section (Form + Image) */
.contact-split-section {
    padding: 80px 0;
    background: #f3f5f8;
    position: relative;
    overflow: hidden;
}

/* World map background pattern */
.contact-split-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/World_map_blank_without_borders.svg/2000px-World_map_blank_without_borders.svg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
}

.contact-form-title-tag {
    display: inline-block;
    background: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-body);
    letter-spacing: 0.5px;
    border-radius: 4px;
    margin-bottom: 16px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-left-img {
    position: relative;
    z-index: 1;
}

.contact-left-img img {
    max-width: 100%;
    border-radius: 12px;
}

.form-gudfin-wrapper h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.form-gudfin input,
.form-gudfin textarea {
    width: 100%;
    padding: 18px 25px;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
    background: #ffffff;
    margin-bottom: 24px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    transition: border 0.3s;
}

.form-gudfin input:focus,
.form-gudfin textarea:focus {
    border-color: var(--accent-yellow);
    outline: none;
}

.form-gudfin .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.checkbox-group input {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--accent-yellow);
}

.checkbox-group label {
    font-size: 14px;
    color: var(--text-body);
    cursor: pointer;
}

.btn-send-msg {
    background: #1a2332;
    color: #fff;
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    border: none;
}

.btn-send-msg:hover {
    background: var(--accent-yellow);
    color: #fff;
}

.btn-send-msg i {
    background: #fff;
    color: #1a2332;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}


/* Partners & Map Section */
.partners-map-wrapper {
    position: relative;
    padding-top: 0;
}

.map-grayscale-full {
    width: 100%;
    height: 450px;
    filter: grayscale(100%);
    display: block;
}

.floating-partners-container {
    position: absolute;
    top: -40px;
    /* Overlap the map section */
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.floating-partners-bar {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    padding: 15px 40px;
    /* Reduced vertical padding */
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    /* Constrain width */
    width: 90%;
    overflow: hidden;
    /* Important for Marquee */
}

.partners-label {
    font-weight: 700;
    font-size: 14px;
    width: 150px;
    flex-shrink: 0;
    color: var(--text-dark);
}

.partners-marquee {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scroll 20s linear infinite;
}

/* Pause on hover to allow clicking if needed */
.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move left by 1/3 of total width (since we have 3 sets) 
           OR simply measure visual width. 
           If 4 logos + 60px gap each = roughly (width of set). 
           Better technique: translate -33.333% if we have 3 identical sets 
           and we want to reset after one full set passes.
        */
        transform: translateX(-33.333%);
    }
}

.partner-logo {
    height: 24px;
    opacity: 0.6;
    transition: 0.3s;
    filter: grayscale(100%);
    flex-shrink: 0;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .contact-split-section .container {
        grid-template-columns: 1fr;
    }

    .form-gudfin .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .floating-partners-bar {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 20px;
        gap: 30px;
        padding: 30px;
    }
}