:root {
    --brand-teal: #0A3030;
    --brand-teal-light: rgba(10, 48, 48, 0.05);
    --brand-gold: #D4AF37;
    --brand-gold-light: rgba(212, 175, 55, 0.12);
    --brand-amber: #F5A623;
    --cream-bg: #FDFBF7;
    --text-dark: #2C3E50;
    --text-muted: #7F8C8D;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Premium Hero Section */
.contact-hero {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(10, 48, 48, 0.85) 0%, rgba(10, 48, 48, 0.65) 100%),
    url('{{ asset("front_assets/images/section/6215.jpg") }}') no-repeat center center;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(to top, #ffffff, transparent);
    pointer-events: none;
}

.contact-hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 15px;
    text-transform: capitalize;
    background: linear-gradient(120deg, #ffffff 40%, var(--brand-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    max-width: 750px;
    margin: 0 auto 35px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    list-style: none;
    margin: 0;
}

.contact-breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-breadcrumbs a:hover {
    color: var(--brand-gold);
}

.contact-breadcrumbs li.active {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: bold;
    font-size: 1.1rem;
}