:root {
    --primary-navy: #042157;
    --accent-gold: #c69c3a;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: var(--light-bg);
    padding-bottom: 60px; /* Space for mobile footer */
}

h1, h2, h3, h4, h5, .brand-font {
    font-family: 'Playfair Display', serif;
    color: var(--primary-navy);
}

/* Navbar */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 0.5rem 0;
}

.brand-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f0f4fd 0%, #e1e9f9 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    background-color: var(--accent-gold);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(198, 156, 58, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight-text {
    color: #d81b60;
}

.hero-image {
    max-height: 600px;
    object-fit: contain;
    border: 8px solid #fff;
}

.banner-image {
    max-height: 400px;
}

/* Minimalist Cards */
.offer-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border-top: 4px solid var(--accent-gold);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.offer-card .icon-wrapper {
    height: 55px;
    width: 55px;
    background: rgba(198, 156, 58, 0.1);
    color: var(--accent-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-outline-gold {
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.6rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-gold:hover {
    background-color: var(--accent-gold);
    color: #fff;
}

/* Mobile Fixed Footer */
.mobile-fixed-footer {
    background-color: #fff;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
    z-index: 1030;
    border-top: 1px solid #eee;
}

.mobile-fixed-footer a {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.mobile-fixed-footer .separator {
    width: 1px;
    height: 35px;
    background-color: #e9ecef;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
}