/* ----- Brand Colors (Gold + Navy) ----- */
:root {
    --primary-dark: #0f1e3d;
    --primary-light: #1a305e;
    --gold: #d4af37;
    --gold-light: #e6c55d;
    --gold-dark: #b8962e;
}

.text-gold {
    color: var(--gold) !important;
}
.text-dark-blue {
    color: var(--primary-dark) !important;
}
.bg-dark-blue {
    background-color: var(--primary-dark) !important;
}
.bg-gold {
    background-color: var(--gold) !important;
}
.border-gold {
    border-color: var(--gold) !important;
}

/* ----- Gold Button (replaces gradient buttons) ----- */
.btn-gold {
    background-color: var(--gold);
    color: var(--primary-dark);
    border: none;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background-color: var(--gold-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* ----- Page Header (Hero on all pages) ----- */
.page-header {
    background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2074&q=80');
    background-size: cover;
    background-position: center;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.page-header .overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 30, 61, 0.7);
    z-index: 0;
}
.page-header .content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 2rem 1rem;
}
.page-header .content h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.page-header .content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ----- Contact info cards (gold accents) ----- */
.contact-info-card {
    border-left: 4px solid var(--gold);
    transition: all 0.3s;
}
.contact-info-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.contact-info-card .icon-circle {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* ----- Form inputs (gold focus) ----- */
.form-control-gold:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* ----- Responsive tweaks for contact page ----- */
@media (max-width: 576px) {
    .page-header .content h1 {
        font-size: 2.2rem;
    }
}
/* Country Slider */
.country-slider-container {
    border-radius: 12px;
}
.country-slider-track {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.country-slide {
    padding: 0 10px;
}
.country-card {
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 100px;
    border: 1px solid rgba(0,0,0,0.06) !important;
}
.country-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold) !important;
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,.08) !important;
}
.country-card .display-4 {
    line-height: 1.2;
    font-size: 2.5rem;
}

/* Slider Arrows */
.slider-arrow {
    transition: all 0.2s;
}
.slider-arrow:hover {
    background: var(--gold) !important;
    color: #fff;
}
.slider-arrow i {
    font-size: 1.2rem;
    color: #333;
}
.slider-arrow:hover i {
    color: #fff;
}

/* Dots */
.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.dot.active {
    background: var(--gold);
    transform: scale(1.25);
}
.dot:hover {
    background: var(--gold-light);
}

/* Responsive */
@media (max-width: 576px) {
    .country-card .display-4 {
        font-size: 2rem;
    }
    .country-card {
        min-height: 70px;
    }
    .slider-arrow {
        display: none !important;
    }
}