:root {
    --primary-color: #04033D;
    --accent-color: #004AC6;
    --font-family: 'Hanken Grotesk', sans-serif;
    --heading-font: 'Fenix', serif;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/plus-jakarta-sans.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


/* Hero section styles restored */
.hero-slider-section {
    position: relative;
    width: 100%;
}

.hero-slide {
    height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: black;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 0;
    max-width: 690px;
    gap: 20px;
}

.hero-content h2 {
    font-family: var(--heading-font);
    font-size: 53px;
    font-weight: 800;
    line-height: 80px;
}

.hero-content h2 span {
    color: var(--accent-color);
    font-size: 62px;
    font-weight: 800;
    line-height: 80px;
}

.hero-content p {
    font-size: 20px;
    line-height: 36px;
    margin-top: 25px;
    color: #434655;
}

.btn-hero {
    background-color: var(--accent-color);
    color: white !important;
    padding: 15px 40px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 22px;
    margin-top: 35px;
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #004AC6;
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-hero:hover::before {
    left: 0;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background: #004AC6;
}

.featured-card {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    z-index: 3;
}

.featured-img-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 25px;
}

.featured-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-tag {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.featured-title {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
}

.featured-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 25px;
}

.featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.card-price {
    font-size: 20px;
    font-weight: 700;
}

.explore-details {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.explore-details:hover {
    color: white;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    transition: all 0.3s;
}



.swiper-button-prev-custom {
    left: 40px;
}

.swiper-button-next-custom {
    right: 40px;
}

.swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #004AC6;
    opacity: 0.3;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}
