/* ===== SERVICES PAGE STYLES ===== */

/* Service Block */
.services-section {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
}

.service-block {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    min-height: 550px;
    margin-bottom: var(--space-xl);
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.6s var(--ease-out-expo);
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06), 0 0 40px var(--color-gold-shimmer);
}

/* Reverse layout */
.service-block-reverse .service-image-wrapper {
    order: 2;
}

.service-block-reverse .service-content {
    order: 1;
}

/* Service Image */
.service-image-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 550px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s var(--ease-out-expo);
}

.service-block:hover .service-image {
    transform: scale(1.04);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

/* Service Content */
.service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-xl);
}

.service-label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.service-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--color-ink);
    margin-bottom: var(--space-sm);
}

.service-divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    margin-bottom: var(--space-md);
}

.service-desc {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 2;
    color: var(--color-dark-gray);
    margin-bottom: var(--space-lg);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    transition: gap 0.3s var(--ease-out-expo);
}

.service-cta:hover {
    gap: 16px;
}

.service-cta svg {
    transition: transform 0.3s var(--ease-out-expo);
}

.service-cta:hover svg {
    transform: translateX(4px);
}

/* Booking Section */
.booking-section {
    position: relative;
    padding: var(--space-2xl) var(--space-lg);
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-black);
}

.booking-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(28, 56, 41, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(201, 169, 110, 0.1) 0%, transparent 40%);
    animation: exploreBgPulse 12s ease-in-out infinite alternate;
}

@keyframes exploreBgPulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.booking-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    color: var(--color-white);
}

.booking-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 200;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-text {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 2;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: var(--space-lg);
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 48px;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.booking-btn:hover {
    border-color: var(--color-gold);
    background: rgba(201, 169, 110, 0.08);
    box-shadow: 0 0 30px rgba(201, 169, 110, 0.1);
}

.booking-btn .cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.12), transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s var(--ease-out-expo), height 0.6s var(--ease-out-expo);
    pointer-events: none;
}

.booking-btn:hover .cta-glow {
    width: 300px;
    height: 300px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .service-block {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .service-image-wrapper {
        min-height: 350px;
    }

    .service-block-reverse .service-image-wrapper {
        order: 1;
    }

    .service-block-reverse .service-content {
        order: 2;
    }
}

@media (max-width: 768px) {
    .service-image-wrapper {
        min-height: 260px;
    }

    .service-content {
        padding: var(--space-lg);
    }
}