/* ================== SERVICES PAGE STYLES ================== */
:root {
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-script: 'Playfair Display', serif;
    --color-dark: #000000;
    --color-text: #333333;
    --color-light: #f8f8f8;
    --color-accent: #8b7355;
    --line-height-base: 1.8;
    --letter-spacing-wide: 0.05em;
    --letter-spacing-narrow: 0.01em;
}

/* Hero Section */
.hero-section {
    background-image: url('https://cdn.pixabay.com/photo/2019/12/17/06/46/marble-4700915_1280.jpg');
    background-color: #FFFFFF;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.hero-text-panel.centered {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    color: white;
    border-radius: 8px;
}

.hero-headline {
    font-family: var(--font-heading);
    color: #FFFFFF;
    font-size: 3.75rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: var(--letter-spacing-narrow);
    text-transform: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-body-text {
    font-family: var(--font-body);
    color: #EEEEEE;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: var(--line-height-base);
    margin: 0 auto 2.5rem;
    max-width: 700px;
    opacity: 0.9;
    letter-spacing: var(--letter-spacing-narrow);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Mobile styles */
@media (max-width: 992px) {
    .hero-section {
        height: auto;
        min-height: 50vh;
        padding: 6rem 0 4rem;
    }

    .hero-text-panel.centered {
        padding: 3rem 2rem;
    }

    .hero-headline {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-body-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .service-content h2 {
        font-size: 2rem;
        margin-top: 1rem;
    }

    .service-content p {
        font-size: 1rem;
        max-width: 100%;
    }

    .service-content::before {
        font-size: 6rem;
        top: -15px;
    }
}

.services-hero {
    background: var(--color-dark);
    padding: 4rem 2rem 2rem 2rem;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.services-hero p {
    font-size: 1.2rem;
    color: var(--color-light-gray);
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 3rem 2rem;
    background: var(--color-light);
}

.service-block {
    background: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    padding: 2.5rem 2rem;
    flex: 1 1 320px;
    max-width: 400px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.service-block p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--color-light-gray);
}

.service-block .cta-btn {
    align-self: flex-start;
}

.services-cta {
    background: var(--color-dark);
    color: var(--color-white);
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 2rem;
    border-radius: 0 0 12px 12px;
}

.services-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-block;
    background: var(--color-brown);
    color: var(--color-white);
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.cta-btn:hover {
    background: #5a402e;
}

@media (max-width: 900px) {
    .services-list {
        flex-direction: column;
        align-items: center;
    }

    .service-block {
        max-width: 100%;
        width: 100%;
    }
}

/* ========== SERVICES PAGE REFERENCE TEMPLATE STYLES ========== */
.services-hero-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #111;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    filter: grayscale(0.2) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem 0;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 3rem;
    letter-spacing: 0.2em;
    font-family: var(--font-heading);
    font-weight: 700;
}

.services-intro {
    background: #fff;
    padding: 2.5rem 1rem 2rem 1rem;
    text-align: center;
    font-size: 1.15rem;
    color: #222;
    max-width: 900px;
    margin: 0 auto 2.5rem auto;
}

.services-blocks {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    max-width: 1100px;
    margin: 0 auto 3rem auto;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: #fafafa;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    padding: 2.5rem 2rem;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-img {
    flex: 1 1 320px;
    max-width: 400px;
}

/* Service Images */
.service-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.service-img:hover img {
    transform: scale(1.03);
}

.service-row {
    display: flex;
    align-items: center;
    margin: 4rem 0;
    gap: 4rem;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    padding: 2rem 0;
}

.service-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--color-dark-gray);
    margin-bottom: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.service-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 2px;
    background: var(--color-brown);
    transition: width 0.3s ease;
}

.service-row:hover .service-content h2::after {
    width: 100px;
}

.service-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-dark-gray);
    margin: 1.5rem 0 2.5rem;
    font-weight: 300;
    max-width: 90%;
}

.service-content {
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 1;
}

.service-content::before {
    content: '" ';
    position: absolute;
    top: 0;
    left: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: rgba(110, 79, 58, 0.1);
    line-height: 1;
    z-index: -1;
    font-style: italic;
}

.enquire-btn {
    display: inline-block;
    background: transparent;
    color: var(--color-brown);
    padding: 0.9rem 2.5rem;
    border: 2px solid var(--color-brown);
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.enquire-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-brown);
    transition: width 0.3s ease;
    z-index: -1;
}

.enquire-btn:hover {
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.enquire-btn:hover::before {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .service-row {
        flex-direction: column;
        gap: 2rem;
    }

    .service-row.reverse {
        flex-direction: column;
    }

    .service-img {
        max-width: 100%;
    }

    .service-content {
        text-align: center;
        padding: 1rem 0;
    }
}

.service-content {
    flex: 2 1 400px;
    padding: 0 1rem;
}

.service-content h2 {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111;
    letter-spacing: 0.03em;
}

.service-content p {
    font-size: 1.05rem;
    color: #222;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.enquire-btn {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 0.7rem 2.2rem;
    border-radius: 0;
    font-size: 1rem;
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    font-weight: 600;
    box-shadow: none;
}

.enquire-btn:hover {
    background: #333;
}

@media (max-width: 900px) {

    .service-row,
    .service-row.reverse {
        flex-direction: column !important;
        text-align: center;
        gap: 1.5rem;
    }

    .service-img,
    .service-content {
        max-width: 100%;
        padding: 0;
    }

    .services-hero-image,
    .hero-img {
        height: 220px;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }
}