.contact-hero {
    position: relative;
    background: url('../assets/contact-page/content-banner.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 120px 0;
    overflow: hidden;
    border-top: 3px solid #cca052;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 45, 26, 0.85) 0%, rgba(0, 45, 26, 0.4) 100%);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px;
    border-radius: 50px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.hero-badge .badge-inner {
    background-color: var(--accent-yellow, #cca554);
    color: #000;
    padding: 4px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    margin-right: 12px;
    text-transform: uppercase;
}

.hero-badge span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding-right: 15px;
}

.contact-hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.3s;
}

.contact-hero h1 span {
    color: var(--accent-yellow, #cca554);
}

.contact-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-hero h1 {
        font-size: 3.8rem;
    }
}

@media (max-width: 991px) {
    .contact-hero {
        padding: 100px 0;
    }
    .contact-hero h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0;
        text-align: center;
    }
    .hero-badge {
        justify-content: center;
    }
    .contact-hero h1 {
        font-size: 2.8rem;
    }
    .contact-hero p {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    .hero-badge .badge-inner {
        font-size: 11px;
        padding: 4px 10px;
    }
    .hero-badge span {
        font-size: 12px;
    }
}
/* Section 3: Location Cards */
.location-cards-section {
    background-color: #fff;
}

.location-card {
    background-color: #fcf9f2;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.03);
    min-height: 160px;
}

.location-card:hover {
    background-color: var(--primary-green, #002d1a);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 45, 26, 0.15);
}

.location-subtitle {
    color: #cca052;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.location-title {
    color: #01321e;
    font-size: 1.25rem;
    transition: color 0.4s ease;
}

.location-card:hover .location-title {
    color: #fff;
}

.location-desc {
    transition: color 0.4s ease;
    font-family: 'Inter', sans-serif;
}

.location-card:hover .location-desc {
    color: rgba(255, 255, 255, 0.7) !important;
}

.location-icon-box {
    width: 65px;
    height: 65px;
    background-color: #cca052;
    color: #fff;
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-left: 20px;
    transition: all 0.4s ease;
}

.location-card:hover .location-icon-box {
    background-color: #fff;
    color: #cca052;
}

.location-img-wrapper {
    min-height: 160px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.location-img-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .location-icon-box {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .location-card {
        padding: 1.5rem !important;
    }
    .location-title {
        font-size: 1.1rem;
    }
}
