/* hook Section */
.hook {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 6rem var(--outerMrgn);
    position: relative;
    overflow: hidden;
}

.hook::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(111, 216, 203, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(111, 216, 203, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hook-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hook-content {
    animation: fadeInUp 0.8s ease-out 0.2s both;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.hook h1 {
    font-family: 'Newsreader', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hook p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hook-image {
    display: flex;
    width: 100%;
    margin-bottom: 0.5rem;

    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.3);

    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Services Section ------------------------------------------------------ */
.services {
    background: var(--teal);
    padding: 6rem var(--outerMrgn);
    position: relative;
    align-items: center;
    text-align: center;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services h2 {
    font-family: 'Newsreader', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.services-subtitle {
    font-size: 1.15rem;
    color: var(--navy);
    opacity: 0.8;
}

/* Service cards at top of the page --------------------------------------- */
.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    padding: 2rem;
    flex: 0 0 320px;
    min-width: 420px;
    text-align: left;
    
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.service-image {
    background: var(--gray-light);
    width: 100%;
    border-radius: 12px;
    background-size: 30px 30px;
    background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
}

/* Button -----------------------------------------------------------------*/
.service-btn {
    padding: 1.25rem 5rem;
    border-radius: 50px;

    background: var(--navy) !important;
    color: var(--white) !important;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(30, 45, 61, 0.3);
}

.service-btn:hover {
    background: var(--navy-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 45, 61, 0.4) !important;
}


/* Price Section --------------------------------------------------------- */
.price-tag {
    border-top: 2px solid var(--gray-light);
    padding-top: 1.25rem;
    margin-top: 1.25rem;
}

.price-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.price {
    font-family: 'Newsreader', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--navy);
}

.price-decimal {
    font-size: 1.5rem;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.4rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-size: 1.5rem;
    line-height: 0.9;
}


/* Location Section ------------------------------------------------------ */
.location {
    background: var(--white);
    padding: 6rem var(--outerMrgn);
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.location h2 {
    font-family: 'Newsreader', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3rem;
}

.map-image {
    display: flex;
    width: 100%;
    margin-bottom: 2rem;

    background: var(--navy);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.location-text {
    color: var(--navy);
    font-size: 1.1rem;
}

/* Responsive Design ------------------------------------------------------ */
@media (max-width: 1080px) {
    .hook-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hook h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {

    .hook {
        padding: 4rem 1.5rem;
    }

    .hook h1 {
        font-size: 2.25rem;
    }

    .services h2,
    .location h2 {
        font-size: 2.25rem;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    .hook h1 {
        font-size: 1.875rem;
    }

    .hook p {
        font-size: 1rem;
    }
}