/* Hero Section */


.hero-options {
    height: 50vh;
    background: url('https://res.cloudinary.com/dp24kap9x/image/upload/f_auto,q_auto/v1759646924/IMG_3259_mysmrz.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    color: white;
}

.hero-title {
    font-family: var(--ff-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: var(--ff-primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
    color: var(--clr-secondary-cream);
}

.hero-usp {
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    color: var(--clr-accent-red);
    font-weight: 500;
    font-style: italic;
}

.hero-usp span {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.2rem;
    color: var(--clr-secondary-cream);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-cta:first-of-type {
    margin-top: 2.5rem;
}

.cta-primary,
.cta-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.cta-primary {
    background: linear-gradient(135deg, var(--clr-accent-red), var(--clr-accent-red));
    color: white;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 176, 55, 0.4);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: var(--clr-secondary-red);
    color: var(--clr-secondary-cream);
    transform: translateY(-3px);
}





.linking-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.linking-subtitle {
    font-family: var(--ff-primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
    text-align: center;
}

.packages-container {
    display: block;
    max-width: 1240px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

.packages-container section {
    background-color: transparent;
    max-height: none;
    margin: 0 0 0.75rem;
    padding: 0;
}

.services-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.75rem;
    padding: 0;
}

@media (max-width: 1024px) {
    .packages-container {
        padding: 1.25rem 0.75rem;
    }

    .services-items {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 0.65rem;
    }

    .packages-container section {
        margin-bottom: 0.65rem;
    }
}

@media (max-width: 768px) {

    .hero-options {
        height: 100dvh;
    }

    .services-items {
        grid-template-columns: 1fr;
    }

    .packages-container {
        padding: 1rem;
    }
}