/* =========================================
   PAGE BANNER & BREADCRUMB STYLES
========================================= */
.page-banner-section {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--primary, #0b0524); /* Fallback to your dark color */
}

/* --- Animated Background --- */
.banner-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.banner-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Subtle continuous zoom effect */
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    /* Rich premium gradient overlay: darkens the edges and bottoms */
    background: linear-gradient(to right, rgba(11, 5, 36, 0.85) 0%, rgba(11, 5, 36, 0.4) 50%, rgba(11, 5, 36, 0.85) 100%),
                linear-gradient(to top, var(--primary, #0b0524) 0%, transparent 100%);
    z-index: 2;
}

/* --- Content & Typography --- */
.banner-content-container {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 var(--space-md);
    /* Slide-up entrance animation */
    animation: fadeUpContent 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.banner-title {
    font-family: var(--font-primary);
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive font scaling */
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: capitalize;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* --- Breadcrumb Navigation --- */
.banner-breadcrumb {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 24px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    font-family: var(--font-secondary);
    font-size: var(--fs-sm, 14px);
    font-weight: 500;
}

.banner-breadcrumb a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-200, #e2e8f0);
    text-decoration: none;
    transition: all 0.3s ease;
}

.banner-breadcrumb a:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.banner-breadcrumb .separator {
    display: flex;
    align-items: center;
    color: var(--gray-500, #64748b);
}

.banner-breadcrumb .active {
    color: var(--gray-400, #94a3b8);
    pointer-events: none;
}

/* --- Animations --- */
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

@keyframes fadeUpContent {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .page-banner-section {
        height: 250px; /* Shorter on mobile */
    }
    
    .banner-breadcrumb {
        padding: 8px 16px;
    }
    
    .banner-breadcrumb ol {
        font-size: 13px;
        gap: 8px;
    }
}

/* =========================================
   PREMIUM LIGHT THEME VARIABLES
========================================= */
:root {
    --bg-main: #ffffff;       /* Pure white backgrounds */
    --bg-sub: #f8fafc;        /* Soft gray for section panels */
    --bg-card: #ffffff;       /* Card backgrounds */
    --border-clean: #e2e8f0;  /* Subtle divider lines */
    
    --text-main: #1e293b;     /* High-contrast dark text */
    --text-muted: #627183;    /* Muted gray text for descriptions */
    --text-light: #94a3b8;    /* Placeholder / icon gray */
    
    /* Layout & Animation variables assumed from your project */
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* =========================================
   2. CONTACT PAGE STYLES (LIGHT)
========================================= */
.contact-page-section {
    background-color: var(--bg-main);
    color: var(--text-main);
    padding: 80px 0;
}

.contact-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    color: var(--text-main);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-clean);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-card:hover {
    border-color: var(--text-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.highlight-card {
    background: var(--bg-sub);
    border-top: 3px solid var(--primary);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-sub);
    border: 1px solid var(--border-clean);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    margin-bottom: 24px;
    transition: var(--transition);
}

.contact-card:hover .card-icon {
    background: var(--primary);
    color: var(--bg-main);
    border-color: var(--primary);
}

.contact-card h3 {
    color: var(--text-main);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 8px 0;
}

.contact-card p a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-card p a:hover {
    color: var(--accent);
}

.direction-link {
    margin-top: auto;
    padding-top: 24px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.direction-link .arrow {
    transition: transform 0.2s ease;
}

.direction-link:hover {
    color: var(--accent);
}

.direction-link:hover .arrow {
    transform: translateX(4px);
}

/* Split layout adjustment for clean alignment */
.contact-split-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: var(--bg-sub);
    border: 1px solid var(--border-clean);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.form-container {
    padding: 50px;
}

.form-title {
    color: var(--text-main);
    font-size: 1.7rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.premium-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--bg-main);
    border: 1px solid var(--border-clean);
    color: var(--text-main);
    padding: 14px 16px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--text-main);
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.05);
}

.submit-btn {
    background: var(--primary);
    color: var(--bg-main);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
}

.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.map-container {
    width: 100%;
    min-height: 100%;
    position: relative;
    border-left: 1px solid var(--border-clean);
}

.map-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* Standard light layout values map naturally without visual filters */
}