/* ============================================
   GREEN ROOM GARDENS - SERVICES
   Clean, Minimalist Services Overview
============================================ */

/* ===========================================
   SERVICES HERO
=========================================== */

.grg-services-hero {
    position: relative;
    min-height: 60vh;
    min-height: 60dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--grg-dark-deep);
    padding-top: 116px;
}

.grg-services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/grg-12.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.grg-services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.65) 100%
    );
}

.grg-services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 60px 24px;
}

.grg-services-hero-label {
    font-family: var(--grg-font);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--grg-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.grg-services-hero h1 {
    color: var(--grg-white);
    margin-bottom: 20px;
}

.grg-services-hero p {
    font-family: var(--grg-font);
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===========================================
   SERVICES GRID
=========================================== */

.grg-services-grid-section {
    background: var(--grg-off-white);
    padding: 80px 24px;
    overflow: hidden;
}

.grg-services-grid-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Service Card */
.grg-services-card {
    display: flex;
    flex-direction: row;
    background: var(--grg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grg-services-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.grg-services-card-img {
    width: 200px;
    min-height: 180px;
    flex-shrink: 0;
    overflow: hidden;
}

.grg-services-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grg-services-card:hover .grg-services-card-img img {
    transform: scale(1.05);
}

.grg-services-card-content {
    padding: 28px 28px 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.grg-services-card h2 {
    font-family: var(--grg-font);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--grg-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.grg-services-card p {
    font-family: var(--grg-font);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--grg-mid-grey);
    line-height: 1.65;
    margin-bottom: 16px;
}

.grg-services-card-link {
    font-family: var(--grg-font);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--grg-green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.grg-services-card-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.grg-services-card:hover .grg-services-card-link {
    color: var(--grg-green-dark);
}

.grg-services-card:hover .grg-services-card-link::after {
    transform: translateX(4px);
}

/* ===========================================
   CTA SECTION
=========================================== */

.grg-services-cta {
    background: var(--grg-green);
    padding: 72px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.grg-services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.grg-services-cta-inner {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.grg-services-cta h2 {
    font-family: var(--grg-font);
    color: var(--grg-white);
    margin-bottom: 16px;
}

.grg-services-cta p {
    font-family: var(--grg-font);
    font-size: 1.08rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
}

/* Button */
.grg-btn-white {
    font-family: var(--grg-font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--grg-green);
    background: var(--grg-white);
    padding: 15px 38px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.grg-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ===========================================
   RESPONSIVE
=========================================== */

/* ---------- TABLET ---------- */
@media (max-width: 1024px) {
    .grg-services-hero {
        padding-top: 109px;
    }

    .grg-services-grid-inner {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 24px;
    }

    .grg-services-card-img {
        width: 180px;
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
    .grg-services-hero {
        min-height: 50vh;
        min-height: 50dvh;
        padding-top: 68px;
    }

    .grg-services-hero-content {
        padding: 50px 20px;
    }

    .grg-services-hero-label {
        font-size: 0.82rem;
        letter-spacing: 2.5px;
    }

    .grg-services-hero p {
        font-size: 1rem;
    }

    .grg-services-grid-section {
        padding: 60px 20px;
    }

    .grg-services-card {
        flex-direction: column;
    }

    .grg-services-card-img {
        width: 100%;
        height: 200px;
        min-height: auto;
    }

    .grg-services-card-content {
        padding: 24px;
    }

    .grg-services-card h2 {
        font-size: 1.25rem;
    }

    .grg-services-cta {
        padding: 60px 20px;
    }

    .grg-services-cta h2 {
        font-size: 1.85rem;
    }

    .grg-services-cta p {
        font-size: 1rem;
    }
}

/* ---------- SMALL MOBILE ---------- */
@media (max-width: 480px) {
    .grg-services-hero {
        min-height: 45vh;
        min-height: 45dvh;
        padding-top: 62px;
    }

    .grg-services-hero-content {
        padding: 40px 16px;
    }

    .grg-services-hero-label {
        font-size: 0.78rem;
        letter-spacing: 2px;
    }

    .grg-services-grid-section {
        padding: 48px 16px;
    }

    .grg-services-grid-inner {
        gap: 20px;
    }

    .grg-services-card-img {
        height: 180px;
    }

    .grg-services-card-content {
        padding: 20px;
    }

    .grg-services-card h2 {
        font-size: 1.15rem;
    }

    .grg-services-card p {
        font-size: 0.9rem;
    }

    .grg-services-cta {
        padding: 52px 16px;
    }

    .grg-services-cta h2 {
        font-size: 1.6rem;
    }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    .grg-services-card,
    .grg-services-card-img img,
    .grg-services-card-link::after,
    .grg-btn-white {
        transition: none;
    }
}
