/* ==========================================
   SERVICES PAGE STYLES
   Used for services.html
   ========================================== */

/* Wavy underline utility */
.highlight {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: var(--pink);
    text-underline-offset: 4px;
}

/* ==========================================
   HERO SECTION - Split Layout
   ========================================== */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    text-align: left;
    padding: 0;
}

.hero-split .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-split .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background: var(--white);
}

.hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 20px;
}

.hero-split .hero-title {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -3px;
    color: var(--black);
    margin-bottom: 30px;
}

.hero-split .hero-text {
    font-size: 26px;
    color: var(--text-medium);
    max-width: 520px;
    line-height: 1.5;
}

/* ==========================================
   DIVIDER
   ========================================== */
.squiggly-divider {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.squiggly-divider::before {
    content: '';
    width: 120px;
    height: 1px;
    background: #ddd;
}

/* ==========================================
   SERVICE DETAIL SECTIONS
   ========================================== */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background: var(--white);
}

.service-detail:nth-child(odd) .service-content {
    background: var(--off-white);
}

.service-eyebrow {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 18px;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--black);
}

.service-description {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 35px;
}

.service-list {
    list-style: none;
    margin-bottom: 40px;
}

.service-list li {
    padding: 14px 0;
    font-size: 22px;
    color: var(--text-medium);
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 14px;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '\2723';
    color: var(--pink);
    font-size: 18px;
}

.service-price {
    font-size: 22px;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 35px;
}

.service-btn {
    display: inline-block;
    padding: 20px 50px;
    background: var(--blue);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s;
    align-self: flex-start;
}

.service-btn:hover {
    background: var(--blue-dark);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    background: var(--white);
    padding: 120px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(var(--blue) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.04;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 28px;
    letter-spacing: -2px;
    position: relative;
}

.cta-text {
    font-size: 26px;
    color: var(--text-medium);
    margin-bottom: 45px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    position: relative;
}

.cta-btn {
    display: inline-block;
    padding: 22px 55px;
    background: var(--blue);
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s;
    position: relative;
}

.cta-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.cta-email {
    margin-top: 45px;
    font-size: 20px;
    color: var(--text-light);
    position: relative;
}

.cta-email a {
    color: var(--blue);
    text-decoration: none;
}

.cta-email a:hover {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: var(--pink);
    text-underline-offset: 3px;
}

/* ==========================================
   INQUIRY SECTION
   ========================================== */
.inquiry-section {
    background: var(--off-white);
    padding: 100px 60px;
}

.inquiry-container {
    max-width: 700px;
    margin: 0 auto;
}

.inquiry-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -2px;
}

.inquiry-subtitle {
    font-size: 22px;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.5;
}

.inquiry-email {
    font-size: 17px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
}

.inquiry-email a {
    color: var(--blue);
    text-decoration: none;
}

.inquiry-email a:hover {
    text-decoration: underline;
}

.inquiry-form {
    background: var(--white);
    padding: 50px;
    border: 1px solid #eee;
}

.inquiry-submit {
    width: 100%;
    padding: 20px;
    background: var(--blue);
    color: white;
    border: none;
    font-size: 17px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    margin-top: 30px;
    transition: background 0.2s;
}

.inquiry-submit:hover {
    background: var(--blue-dark);
}

.form-success {
    text-align: center;
    padding: 15px;
    margin-top: 15px;
    display: none;
    color: var(--text-medium);
}

/* ==========================================
   MODAL OVERRIDES
   ========================================== */
.modal-detail {
    background: var(--off-white);
    padding: 1rem;
    margin: 1.25rem 0;
}

.modal-close-btn {
    background: var(--blue);
}

.modal-close-btn:hover {
    background: var(--blue-dark);
}

/* ==========================================
   MOBILE RESPONSIVE
   ========================================== */
@media (max-width: 968px) {
    /* Make nav more prominent on mobile */
    .nav {
        position: sticky;
        top: 0;
        z-index: 100;
        background: var(--white);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-split .hero-image {
        height: 50vh;
        min-height: 320px;
        object-position: center top;
    }

    .hero-split .hero-content {
        padding: 40px 25px;
        text-align: center;
    }

    .hero-eyebrow {
        font-size: 12px;
    }

    .hero-split .hero-title {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .hero-split .hero-text {
        font-size: 18px;
        margin: 0 auto;
    }

    .squiggly-divider {
        height: 50px;
    }

    .squiggly-divider::before {
        width: 80px;
    }

    .service-detail {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .service-detail.reverse {
        direction: ltr;
    }

    .service-image {
        height: 50vh;
        min-height: 320px;
        object-position: center;
    }

    .service-content {
        padding: 40px 25px;
    }

    .service-eyebrow {
        font-size: 12px;
    }

    .service-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .service-description {
        font-size: 18px;
    }

    .service-list li {
        font-size: 17px;
        padding: 10px 0;
    }

    .service-price {
        font-size: 17px;
    }

    .service-btn {
        padding: 16px 40px;
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

    .cta-section {
        padding: 60px 25px;
    }

    .cta-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .cta-text {
        font-size: 18px;
    }

    .cta-btn {
        padding: 18px 40px;
        font-size: 16px;
    }

    .cta-email {
        font-size: 16px;
    }

    .inquiry-section {
        padding: 60px 25px;
    }

    .inquiry-title {
        font-size: 32px;
    }

    .inquiry-subtitle {
        font-size: 17px;
    }

    .inquiry-form {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .hero-split .hero-title {
        font-size: 32px;
    }

    .hero-split .hero-text {
        font-size: 16px;
    }

    .service-title {
        font-size: 28px;
    }

    .service-description {
        font-size: 16px;
    }

    .service-list li {
        font-size: 15px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-text {
        font-size: 16px;
    }
}
