:root {
    --ako-blue: #0B2046;
    --ako-red: #E31837;
    --ako-light: #F8F9FA;
}

body {
    background-color: var(--ako-light);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
}

/* Custom Color Utilities */
.bg-ako-blue {
    background-color: var(--ako-blue) !important;
}

.bg-ako-red {
    background-color: var(--ako-red) !important;
}

.text-ako-blue {
    color: var(--ako-blue) !important;
}

.text-ako-red {
    color: var(--ako-red) !important;
}

.border-ako-red {
    border-color: var(--ako-red) !important;
}

.btn-ako-red {
    background-color: var(--ako-red);
    color: white;
    border: none;
}

    .btn-ako-red:hover {
        background-color: #c0142e;
        color: white;
    }

/* Hero Section Overlay */
.hero-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1580273916550-e323be2ae537?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--ako-blue) 0%, rgba(11,32,70,0.85) 60%, transparent 100%);
}

/* Custom Nav Link styling */
.ako-nav-link {
    color: var(--ako-blue);
    font-weight: 600;
    transition: color 0.2s;
}

    .ako-nav-link:hover {
        color: var(--ako-red);
    }

/* Season Selection Radio Buttons */
.btn-season {
    border: 1px solid #dee2e6;
    color: #6c757d;
    background-color: transparent;
    transition: all 0.2s ease;
}

.btn-check:checked + .btn-season {
    background-color: var(--ako-blue);
    color: white;
    border-color: var(--ako-blue);
}

.btn-season:hover {
    background-color: #f1f3f5;
}

.btn-check:checked + .btn-season:hover {
    background-color: var(--ako-blue);
}

/* Utilities */
.rounded-4 {
    border-radius: 1rem !important;
}

.rounded-5 {
    border-radius: 1.5rem !important;
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .icon-box.bg-primary-subtle {
    background-color: var(--ako-blue) !important;
    color: white !important;
}

.service-card:hover .icon-box.bg-danger-subtle {
    background-color: var(--ako-red) !important;
    color: white !important;
}
