/* ===== INNER PAGE STYLES ===== */

/* ===== Main Nav Dropdown ===== */
.nav-list li.has-dropdown {
    position: relative;
}

.nav-list li.has-dropdown .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--white);
    border-top: 3px solid var(--red);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    z-index: 100;
    padding: 0;
    list-style: none;
}

.nav-list li.has-dropdown:hover .dropdown {
    display: block;
}

.nav-list li.has-dropdown .dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid #eee;
    transition: background 0.2s, color 0.2s;
}

.nav-list li.has-dropdown .dropdown li a:hover {
    background: var(--light-gray);
    color: var(--red);
}

/* Continue Reading link */
.continue-reading {
    display: inline-block;
    color: var(--red);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: color 0.3s;
    margin-top: 8px;
}

.continue-reading:hover {
    color: var(--red-dark);
}

/* Inner Hero */
.inner-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.inner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(192, 57, 43, 0.3) 100%);
    z-index: 1;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 40px 20px;
}

.inner-hero-icon {
    display: block;
    margin: 0 auto 16px;
    height: auto;
}

.inner-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 30px;
    color: #fff;
}

.btn-request-service {
    display: inline-block;
    padding: 16px 40px;
    background: #C0392B;
    border: 2px solid #C0392B;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    transition: all 0.3s;
}

.btn-request-service:hover {
    background: #A93226;
    color: var(--dark);
    color: #fff;
}

/* Inner Intro */
.inner-intro {
    padding: 80px 0 60px;
    background: var(--light-gray);
}

.intro-roof-icon {
    display: block;
    margin: 0 auto 16px;
    height: auto;
}

.inner-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

.inner-intro h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

.inner-intro p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    max-width: 900px;
}

/* CTA Bar */
.cta-bar {
    background: var(--dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.cta-bar p {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.7;
}

.cta-bar a {
    color: var(--red);
    font-weight: 700;
    text-decoration: underline;
}

.cta-bar a:hover {
    color: #ff5555;
}

/* Inner Content Section */
.inner-content-section {
    padding: 60px 0;
    background: var(--white);
}

.section-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 16px;
}

.inner-content-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
    max-width: 900px;
}

/* Our Services Section */
.our-services-section {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.section-roof-icon {
    display: block;
    margin: 0 auto 10px;
    height: auto;
}

.our-services-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 40px;
    letter-spacing: 0.06em;
}

/* Dark service cards */
.dark-service-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 30px;
}

.dark-card {
    background: var(--dark);
    padding: 50px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.dark-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.dark-card-icon {
    margin-bottom: 20px;
}

.dark-card-icon svg {
    width: 48px;
    height: 48px;
}

.dark-card h4 {
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
}

.btn-view-all {
    display: inline-block;
    padding: 16px 40px;
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    transition: background 0.3s;
}

.btn-view-all:hover {
    background: var(--red-dark);
}

/* Our Approach */
.our-approach {
    padding: 80px 0;
    background: var(--white);
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.approach-image-wrap {
    position: relative;
}

.approach-image-wrap::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    background: var(--red);
    z-index: 0;
}

.approach-image-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.approach-roof-icon {
    display: block;
    margin-bottom: 16px;
    height: auto;
}

.approach-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: 0.04em;
}

.approach-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

/* Resource Cards */
.resource-cards {
    padding: 80px 0;
    background: var(--light-gray);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.resource-card {
    background: var(--white);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.resource-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.resource-body {
    padding: 24px 20px;
}

.resource-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.resource-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark);
    margin: 8px 0 6px;
}

.resource-body h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.resource-body p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.btn-resource {
    display: inline-block;
    padding: 12px 24px;
    background: var(--red);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: background 0.3s;
}

.btn-resource:hover {
    background: var(--red-dark);
}

/* ===== SERVICE HUB ===== */
.service-hub-intro h2,
.service-hub-group__header h2,
.service-hub-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    text-transform: uppercase;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.service-hub-groups {
    padding: 80px 0;
    background: var(--light-gray);
}

.service-hub-groups .container {
    display: grid;
    gap: 32px;
}

.service-hub-group {
    padding: 36px;
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 18px 34px rgba(35, 31, 32, 0.08);
}

.service-hub-group__header {
    margin-bottom: 26px;
    text-align: center;
}

.service-hub-group__header p:last-child {
    max-width: 760px;
    font-size: 0.96rem;
    line-height: 1.8;
    color: #555;
    margin-left: auto;
    margin-right: auto;
}

.service-hub-group__header > .section-eyebrow {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.service-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.service-hub-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-height: 100%;
    padding: 24px 22px;
    border: 1px solid rgba(192, 57, 43, 0.14);
    border-radius: 18px;
    background: #fff;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-hub-card:hover {
    transform: translateY(-4px);
    border-color: rgba(192, 57, 43, 0.35);
    box-shadow: 0 14px 28px rgba(35, 31, 32, 0.08);
}

.service-hub-card h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.service-hub-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
}

.service-hub-card__cta {
    margin-top: auto;
    color: var(--red);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-hub-cta {
    padding: 80px 0;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.service-hub-cta h2 {
    color: var(--white);
}

.service-hub-cta p {
    max-width: 760px;
    margin: 0 auto 28px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
}

.service-hub-cta .hero-buttons {
    justify-content: center;
}

.service-hub-cta__secondary {
    border-color: rgba(255, 255, 255, 0.72);
}

/* ===== ATTIC SERVICES LANDING ===== */
.attic-services-intro,
.crawl-services-intro,
.rodent-services-intro {
    text-align: center;
}

.attic-services-intro h2,
.crawl-services-intro h2,
.rodent-services-intro h2,
.attic-services-proof__copy h2,
.crawl-services-proof__copy h2,
.rodent-services-proof__copy h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    text-transform: uppercase;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.attic-services-intro p,
.crawl-services-intro p,
.rodent-services-intro p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.attic-problem-strip,
.crawl-problem-strip,
.rodent-problem-strip {
    padding: 0 0 80px;
    background: var(--white);
}

.attic-problem-strip .container,
.crawl-problem-strip .container,
.rodent-problem-strip .container {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.attic-problem-tile,
.crawl-problem-tile,
.rodent-problem-tile {
    padding: 18px 16px;
    border-radius: 18px;
    background: var(--light-gray);
    color: var(--dark);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}

.attic-services-proof,
.crawl-services-proof,
.rodent-services-proof {
    padding: 80px 0;
    background: var(--white);
}

.attic-services-proof .container,
.crawl-services-proof .container,
.rodent-services-proof .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 36px;
    align-items: center;
}

.attic-services-proof__copy p,
.crawl-services-proof__copy p,
.rodent-services-proof__copy p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.attic-services-proof__image img,
.crawl-services-proof__image img,
.rodent-services-proof__image img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 20px 36px rgba(35, 31, 32, 0.08);
}

.attic-services-areas .container,
.crawl-services-areas .container,
.rodent-services-areas .container {
    grid-template-columns: 1fr;
}

.attic-services-areas .areas-info > .section-eyebrow,
.crawl-services-areas .areas-info > .section-eyebrow,
.rodent-services-areas .areas-info > .section-eyebrow {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.attic-services-areas .areas-info > h2,
.crawl-services-areas .areas-info > h2,
.rodent-services-areas .areas-info > h2 {
    text-align: center;
}

.attic-services-areas .areas-info > p,
.crawl-services-areas .areas-info > p,
.rodent-services-areas .areas-info > p,
.attic-services-areas .areas-list,
.crawl-services-areas .areas-list,
.rodent-services-areas .areas-list,
.attic-services-areas .areas-list li,
.crawl-services-areas .areas-list li,
.rodent-services-areas .areas-list li,
.attic-services-areas .btn-outline-white,
.crawl-services-areas .btn-outline-white,
.rodent-services-areas .btn-outline-white {
    text-align: left;
}

.attic-services-areas .areas-list,
.crawl-services-areas .areas-list,
.rodent-services-areas .areas-list {
    justify-items: start;
}

/* ===== SERVICE PAGE ===== */
.service-page-intro {
    text-align: center;
}

.service-page-intro h2,
.service-page-intro h3,
.service-page-intro p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.service-page-content {
    padding: 80px 0;
    background: var(--white);
}

.service-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 36px;
    align-items: start;
}

.service-page-main {
    display: grid;
    gap: 28px;
}

.service-detail-block,
.service-compare-block,
.service-sidebar-card,
.service-faq-block .container {
    background: var(--light-gray);
    border-radius: 22px;
}

.service-detail-block,
.service-sidebar-card__body,
.service-faq-block .container {
    padding: 34px;
}

.service-detail-block h2,
.service-faq-block h2,
.service-page-cta-bar h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.service-detail-block > .section-eyebrow,
.service-compare-card > .section-eyebrow,
.service-sidebar-card__body > .section-eyebrow,
.service-faq-block .section-eyebrow,
.service-page-cta-bar .section-eyebrow {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.service-detail-block h2,
.service-compare-card h3,
.service-related-card h3,
.service-sidebar-card h3,
.service-faq-block h2,
.service-page-cta-bar h2 {
    text-align: center;
}

.service-detail-block p,
.service-sidebar-card__body p:last-of-type,
.service-page-cta-bar p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
}

.service-checklist {
    margin-top: 22px;
}

.service-checklist li,
.service-sidebar-links li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.92rem;
    line-height: 1.7;
    color: #555;
}

.service-checklist li::before,
.service-sidebar-links li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

.service-compare-block {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 18px;
}

.service-compare-card {
    padding: 26px 24px;
    border-radius: 18px;
    background: #fff;
}

.service-compare-card--featured {
    border: 2px solid rgba(192, 57, 43, 0.2);
    box-shadow: 0 16px 30px rgba(35, 31, 32, 0.07);
}

.service-compare-card h3,
.service-related-card h3,
.service-sidebar-card h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-compare-card p,
.service-related-card p,
.service-sidebar-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
}

.service-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.service-related-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100%;
    padding: 24px 22px;
    border-radius: 18px;
    border: 1px solid rgba(192, 57, 43, 0.14);
    background: #fff;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-related-card:hover {
    transform: translateY(-4px);
    border-color: rgba(192, 57, 43, 0.34);
    box-shadow: 0 14px 28px rgba(35, 31, 32, 0.08);
}

.service-page-sidebar {
    display: grid;
    gap: 22px;
}

.service-sidebar-card {
    overflow: hidden;
}

.service-sidebar-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-sidebar-links {
    margin-top: 18px;
}

.service-sidebar-links li a {
    color: var(--red);
    font-weight: 600;
}

.service-sidebar-links li a:hover {
    text-decoration: underline;
}

.service-sidebar-card--cta {
    background: var(--dark);
}

.service-sidebar-card--cta .service-sidebar-card__body p:last-of-type,
.service-sidebar-card--cta h3 {
    color: var(--white);
}

.service-sidebar-card--cta .section-eyebrow {
    color: var(--white);
}

.service-sidebar-card__body > .btn-red,
.service-sidebar-card__body > .btn-outline-white {
    display: inline-block;
    margin-top: 18px;
}

.service-sidebar-card--cta .service-sidebar-card__body > .btn-red,
.service-sidebar-card--cta .service-sidebar-card__body > .btn-outline-white {
    display: table;
    margin: 18px auto 0;
}

.service-sidebar-card--cta .service-sidebar-card__body p:last-of-type {
    margin-bottom: 0;
}

.service-faq-block {
    padding: 0 0 80px;
    background: var(--white);
}

.service-faq-block .container {
    box-shadow: 0 18px 34px rgba(35, 31, 32, 0.08);
}

.service-faq-list {
    margin-top: 24px;
}

.service-page-cta-bar {
    padding: 80px 0;
    background: var(--dark);
    text-align: center;
}

.service-page-cta-bar h2 {
    color: var(--white);
}

.service-page-cta-bar p {
    max-width: 760px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.78);
}

.service-page-cta-bar .hero-buttons {
    justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .dark-service-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .resource-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-hub-grid {
        grid-template-columns: 1fr;
    }

    .service-page-grid,
    .service-related-grid {
        grid-template-columns: 1fr;
    }

    .attic-problem-strip .container,
    .crawl-problem-strip .container,
    .rodent-problem-strip .container,
    .attic-services-proof .container,
    .crawl-services-proof .container,
    .rodent-services-proof .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .inner-hero h1 {
        font-size: 2rem;
    }

    .inner-intro h2 {
        font-size: 1.8rem;
    }

    .dark-service-cards {
        grid-template-columns: 1fr 1fr;
    }

    .resource-grid {
        grid-template-columns: 1fr;
    }

    .service-hub-intro h2,
    .service-hub-group__header h2,
    .service-hub-cta h2 {
        font-size: 1.9rem;
    }

    .service-hub-group {
        padding: 28px 22px;
    }

    .service-detail-block,
    .service-sidebar-card__body,
    .service-faq-block .container {
        padding: 28px 22px;
    }

    .service-detail-block h2,
    .service-faq-block h2,
    .service-page-cta-bar h2 {
        font-size: 1.75rem;
    }

    .attic-services-intro h2,
    .crawl-services-intro h2,
    .rodent-services-intro h2,
    .attic-services-proof__copy h2,
    .crawl-services-proof__copy h2,
    .rodent-services-proof__copy h2 {
        font-size: 1.9rem;
    }

    .service-compare-block {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .dark-service-cards {
        grid-template-columns: 1fr;
    }

    .inner-hero h1 {
        font-size: 1.6rem;
    }

    .service-hub-group {
        padding: 24px 18px;
    }

    .service-detail-block,
    .service-sidebar-card__body,
    .service-faq-block .container {
        padding: 24px 18px;
    }

    .attic-problem-strip .container,
    .crawl-problem-strip .container,
    .rodent-problem-strip .container {
        gap: 12px;
    }
}

/* ===== SUB-PAGE LAYOUT ===== */
.subpage-content {
    padding: 60px 0;
    background: var(--light-gray);
}

.subpage-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.subpage-main {
    background: var(--white);
    padding: 40px;
    border-radius: 2px;
}

.subpage-main h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}

.subpage-main h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

.subpage-main p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Checklist */
.checklist {
    margin: 30px 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.check-icon {
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Content Divider */
.content-divider {
    width: 100%;
    max-width: 500px;
    height: 4px;
    background: var(--red);
    margin: 40px 0;
}

.cta-text {
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
    text-align: center;
    color: var(--dark);
}

/* Sidebar */
.subpage-sidebar {
    background: var(--dark);
    border-radius: 2px;
    overflow: hidden;
}

.subpage-sidebar h4 {
    background: rgba(255, 255, 255, 0.05);
    padding: 18px 24px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.subpage-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subpage-sidebar ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    color: #ccc;
    font-size: 0.88rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s, color 0.2s;
}

.subpage-sidebar ul li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.subpage-sidebar ul li.active a {
    color: var(--red);
}

.subpage-sidebar .arrow {
    font-size: 0.7rem;
    opacity: 0.6;
}

/* SUB-PAGE RESPONSIVE */
@media (max-width: 1024px) {
    .subpage-grid {
        grid-template-columns: 1fr;
    }

    .subpage-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .subpage-main {
        padding: 24px;
    }

    .subpage-main h2 {
        font-size: 1.6rem;
    }
}
/* ===== FAQ STYLES ===== */
.faq-item {
    background: var(--white);
    border-radius: 4px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-summary {
    padding: 20px 24px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    position: relative;
    list-style: none; /* Hide default arrow */
    transition: background 0.3s, color 0.3s;
}

.faq-summary::-webkit-details-marker {
    display: none; /* Hide default arrow in webkit */
}

.faq-summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--red);
    transition: transform 0.3s;
}

.faq-item[open] .faq-summary::after {
    content: '−';
}

.faq-item[open] .faq-summary {
    color: var(--red);
    border-bottom: 1px solid #f0f0f0;
}

.faq-content {
    padding: 24px;
    background: var(--white);
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    border-top: 1px solid #f0f0f0;
}

/* Contact Page */
.contact-page-main {
    background: linear-gradient(180deg, var(--dark) 0, var(--dark) 280px, var(--white) 280px, var(--white) 100%);
}

.contact-page {
    padding: 72px 0 88px;
}

.contact-page__layout {
    display: grid;
    gap: 26px;
}

.contact-page__shell {
    display: grid;
    grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
    gap: 0;
    background: var(--dark);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
}

.contact-page__form-column,
.contact-page__info-column {
    padding: 56px 48px;
}

.contact-page__form-column {
    background:
        radial-gradient(circle at top left, rgba(192, 57, 43, 0.10), transparent 40%),
        var(--dark);
    color: var(--white);
}

.contact-page__info-column {
    display: flex;
    flex-direction: column;
    gap: 28px;
    color: var(--white);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.14)),
        var(--dark);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-page__heading {
    margin-bottom: 32px;
    text-align: center;
}

.contact-page__heading h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--white);
    text-align: center;
}

.contact-page__form {
    display: grid;
    gap: 14px;
}

.contact-page__grid {
    display: grid;
    gap: 14px;
}

.contact-page__grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-page__field label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.contact-page__field input,
.contact-page__field textarea,
.contact-page__field select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.92rem;
    line-height: 1.5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-page__field input::placeholder,
.contact-page__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.contact-page__field select {
    color: rgba(255, 255, 255, 0.55);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-page__field select option {
    background: var(--dark);
    color: var(--white);
}

.contact-page__field input:focus,
.contact-page__field textarea:focus,
.contact-page__field select:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

.contact-page__field textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-page__disclaimer {
    font-size: 0.72rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

.contact-page__disclaimer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
}

.contact-page__disclaimer a:hover {
    color: var(--white);
}

.contact-page__submit {
    width: 100%;
    margin: 8px 0 0;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
}

.contact-page__callout {
    display: grid;
    gap: 16px;
}

.contact-page__callout-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    line-height: 1.15;
    letter-spacing: 0.04em;
    color: var(--white);
    text-align: center;
}

.contact-page__callout p {
    max-width: 32rem;
    font-size: 0.98rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.78);
}

.contact-page__heading-copy {
    max-width: 34rem;
    margin: 10px auto 0;
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
}

.contact-page__details--clean {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.contact-page__detail--clean {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 18px 20px;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-page__detail--clean:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-page__detail--clean:nth-child(n+3) {
    border-bottom: none;
}

a.contact-page__detail--clean:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.contact-page__detail-icon--sm {
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(192, 57, 43, 0.14);
}

.contact-page__detail-label {
    display: block;
    margin-bottom: 2px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.contact-page__detail-value {
    font-size: 0.92rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.contact-page__area-note {
    padding: 20px 24px;
    border-radius: 14px;
    background: rgba(192, 57, 43, 0.08);
    border: 1px solid rgba(192, 57, 43, 0.18);
}

.contact-page__area-note p {
    margin: 0 0 8px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.contact-page__quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding-top: 4px;
}

.contact-page__quick-links a {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--red);
    transition: color 0.2s ease;
}

.contact-page__quick-links a:hover {
    color: var(--white);
}

.contact-page__divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

.contact-page__faq {
    padding-top: 0;
}

.contact-page__map-link {
    display: inline-block;
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-page__map-link:hover {
    color: var(--white);
}

@media (max-width: 1180px) {
    .contact-page__shell {
        grid-template-columns: 1fr;
    }

    .contact-page__info-column {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 780px) {
    .contact-page__grid--two {
        grid-template-columns: 1fr;
    }

    .contact-page__details--clean {
        grid-template-columns: 1fr;
    }

    .contact-page__detail--clean:nth-child(odd) {
        border-right: none;
    }

    .contact-page__detail--clean {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .contact-page__detail--clean:last-child {
        border-bottom: none;
    }

    .contact-page__form-column,
    .contact-page__info-column {
        padding: 40px 24px;
    }

    .contact-page__heading h1 {
        font-size: 1.7rem;
    }

    .contact-page__callout-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 520px) {
    .contact-page {
        padding: 56px 0 72px;
    }

    .contact-page-main {
        background: linear-gradient(180deg, var(--dark) 0, var(--dark) 200px, var(--white) 200px, var(--white) 100%);
    }

    .contact-page__form-column,
    .contact-page__info-column {
        padding: 28px 18px;
    }

    .contact-page__heading h1 {
        font-size: 1.5rem;
    }

    .contact-page__callout-title {
        font-size: 1.4rem;
    }

    .contact-page__detail-value {
        font-size: 0.85rem;
    }

    .contact-page__heading-copy {
        font-size: 0.82rem;
    }
}
