:root {
    /* primary accent colors updated to match logo (warm gold) */
    --accent: #d99a34;
    --accent-2: #e6c07a;
    --dark: #222;
    --muted: #666;
    --max-width: 1100px;
    --radius: 8px;
}

* {
    box-sizing: border-box
}

body {
    font-family: Inter, Segoe UI, Roboto, system-ui, -apple-system, "Helvetica Neue", Arial;
    line-height: 1.6;
    color: var(--dark);
    margin: 0
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px
}

.topbar {
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
    color: var(--dark);
    font-size: 14px;
}

.topbar .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 20px;
}

.topbar-right {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}


.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    fill: var(--muted);
}

.topbar-link {
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
}

.topbar-link:hover {
    color: var(--accent);
}

.topbar-address {
    color: var(--muted);
    font-size: 13px;
}

.sep {
    color: rgba(0, 0, 0, 0.12);
}

@media(max-width:700px) {
    .topbar-right {
        font-size: 13px;
        gap: 8px
    }

    .topbar .sep {
        display: none
    }

    .topbar-address {
        display: none
    }
}

.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid #eee
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px
}

.logo {
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    display: flex;
    align-items: center
}

.logo-img {
    height: 48px;
    display: block
}

@media(max-width:600px) {
    .logo-img {
        height: 38px
    }
}

.nav {
    display: flex;
    gap: 18px;
    align-items: center
}

.nav a {
    margin-left: 18px;
    color: var(--muted);
    text-decoration: none
}

.nav a:hover {
    color: var(--dark)
}

/* mobile nav toggle */
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer
}

.nav-toggle .hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    position: relative
}

.nav-toggle .hamburger:before,
.nav-toggle .hamburger:after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--dark)
}

.nav-toggle .hamburger:before {
    top: -7px
}

.nav-toggle .hamburger:after {
    top: 7px
}

.site-header .btn {
    padding: 8px 12px;
    font-size: 14px
}

.quote-btn {
    margin-left: 16px
}

.hero {
    background: linear-gradient(180deg, rgba(142, 197, 252, 0.12), rgba(224, 195, 252, 0.08));
    padding: 80px 0
}

.hero-inner {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.hero h1 {
    font-size: clamp(28px, 5vw, 44px);
    margin: 0
}

.btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    border: none
}

/* --- Hero (full-bleed slider) --- */
.hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    transform: scale(1.02)
}

.slide.active {
    opacity: 1;
    transform: scale(1)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
    z-index: 1
}

.hero-inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px
}

.hero h1 {
    font-weight: 800;
    font-size: clamp(28px, 5vw, 56px);
    margin: 0 0 12px;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45)
}

.hero-sub {
    max-width: 820px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(16px, 1.6vw, 20px)
}

/* Service pages hero - full-bleed with soft overlay and centered content */
.service-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.35));
    z-index: 1;
}

.service-hero .hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 64px 20px;
}

.service-hero h1 {
    margin: 0 0 12px;
    font-weight: 800;
}

.service-hero .hero-sub {
    color: rgba(255,255,255,0.92);
    margin-bottom: 18px;
}

/* Add space between full-bleed service hero and the main content that follows */
header.service-hero + main {
    padding-top: 40px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center
}

.btn.btn-light {
    background: #fff;
    color: var(--accent);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(16, 16, 16, 0.18)
}

.btn.btn-accent {
    background: var(--accent);
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(16, 16, 16, 0.18)
}

.hero-controls {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 18px
}

.hero-prev,
.hero-next {
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    border: 0;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 22px;
    cursor: pointer
}

.hero-dots {
    display: flex;
    gap: 8px
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: 0;
    cursor: pointer;
    padding: 0
}

.hero-dots button.active {
    background: #fff
}

/* Contact page hero background */
.hero.contact-hero {
    background-image: url('assets/slider1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Ensure text in contact hero is white and high-contrast */
.hero.contact-hero .hero-inner,
.hero.contact-hero h1,
.hero.contact-hero .hero-sub {
    color: #ffffff !important;
}

/* Make links and small text visible on the hero */
.hero.contact-hero a {
    color: rgba(255, 255, 255, 0.95);
}

/* Slight overlay for better contrast when needed */
.hero.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
    z-index: 2;
}

/* Ensure hero content sits above the overlay */
.hero.contact-hero .hero-inner {
    z-index: 3;
}

/* About page hero background */
.hero.about-hero {
    background-image: url('assets/about.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Ensure text in about hero is white and high-contrast */
.hero.about-hero .hero-inner,
.hero.about-hero h1,
.hero.about-hero .hero-sub {
    color: #ffffff !important;
}

.hero.about-hero a {
    color: rgba(255, 255, 255, 0.95);
}

/* Locations block (styled like the provided design) */
.locations {
    background: #3b2b35;
    /* deep muted purple */
    color: #efe9ee;
    padding: 36px 0;
}

.locations .container {
    display: block;
}

.locations h2 {
    font-size: 20px;
    margin: 0 0 12px;
    color: #f3e8eb;
    font-weight: 700;
}

.locations .loc-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    align-items: center;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
}

.locations .loc-item {
    display: inline-block;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    white-space: nowrap;
}

.locations .loc-sep {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.32);
}

@media (max-width:800px) {
    .locations .loc-list {
        gap: 8px 12px;
        font-size: 14px
    }
}


.hero.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
    z-index: 2;
}

.hero.about-hero .hero-inner {
    z-index: 3;
}

/* Floating contact widget (WhatsApp + Call) */
.float-contact {
    position: fixed;
    right: 18px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
    align-items: flex-end;
}

.float-contact .fc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(16, 16, 16, 0.18);
    font-weight: 700;
    transition: transform .12s ease, opacity .12s ease;
}

.float-contact .fc-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.wa-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.wa-popup {
    width: 420px;
    max-width: 92%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    padding: 18px;
    font-family: inherit;
    color: #222;
}

.wa-popup h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.wa-popup p {
    margin: 0 0 12px;
    color: #555;
    font-size: 14px;
}

.wa-popup .wa-row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.wa-popup input[type="text"],
.wa-popup input[type="tel"],
.wa-popup textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.wa-popup textarea {
    resize: vertical;
    min-height: 78px;
}

.wa-popup .wa-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    align-items: center;
}

.wa-popup .btn {
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

.wa-popup .btn-primary {
    background: #25D366;
    color: #fff;
    border: none;
}

.wa-popup .btn-secondary {
    background: #f1f1f1;
    color: #222;
    border: none;
}

.wa-popup .wa-mini {
    display: flex;
    gap: 8px;
    align-items: center;
}

.float-contact .fc-btn .fc-label {
    display: inline-block;
}

.float-contact .fc-call {
    background: linear-gradient(90deg, #2b8bf2, #1b64d7);
}

.float-contact .fc-btn:active {
    transform: translateY(1px);
}

.float-contact .fc-toggle {
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    border: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(16, 16, 16, 0.18);
}

/* Hide labels on very small screens to conserve space */
@media (max-width:420px) {
    .float-contact .fc-label {
        display: none;
    }

    .float-contact {
        right: 12px;
        bottom: 12px;
        gap: 8px
    }
}

/* Responsive adjustments for article pages and hero-small */
@media (max-width:900px) {
    .post-layout {
        display: block;
        padding: 0 14px;
    }

    .post-main {
        width: 100%;
        padding-right: 0;
        box-sizing: border-box;
    }

    .post-sidebar {
        width: 100%;
        margin-top: 28px;
    }

    .post-sidebar .latest-list li a {
        font-size: 15px;
    }

    /* make hero-small more compact */
    .hero-small .container {
        padding: 28px 12px;
    }

    .hero-small h1 {
        font-size: 22px;
    }

    .hero-small p {
        font-size: 14px;
    }
}

@media (max-width:600px) {

    /* further compress spacing */
    .hero-inner {
        padding: 40px 12px;
    }

    .container {
        padding: 0 12px
    }

    /* floating contact: smaller buttons and icon-first layout */
    .float-contact {
        right: 10px;
        bottom: 10px;
        gap: 8px
    }

    .float-contact .fc-btn {
        padding: 8px 10px;
        font-size: 13px
    }

    .float-contact .fc-toggle {
        width: 38px;
        height: 38px
    }

    /* popup: full-width card with breathing room */
    .wa-popup {
        width: 100%;
        max-width: 520px;
        margin: 0 12px;
        padding: 14px
    }

    .wa-popup h3 {
        font-size: 16px
    }

    .wa-popup .wa-row {
        margin-bottom: 8px
    }

    .wa-popup textarea {
        min-height: 72px
    }

    /* sidebar lists: tighter spacing */
    .post-sidebar .latest-list {
        padding-left: 12px
    }
}

/* Improve touch targets and readability */
.btn,
.fc-btn,
.wa-popup .btn {
    touch-action: manipulation
}

.fc-btn,
.btn {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05)
}


/* --- Features / Services section --- */
.features-wrap {
    display: flex;
    justify-content: center;
    margin-top: -60px;
    padding: 0 20px 60px
}

.features {
    background: #fff;
    max-width: var(--max-width);
    width: 100%;
    border-radius: 18px;
    padding: 48px 20px;
    box-shadow: 0 20px 40px rgba(20, 20, 20, 0.08);
    position: relative
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: start
}

.feature {
    padding: 18px 12px;
    text-align: center
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center
}

.feature-icon svg {
    width: 42px;
    height: 42px;
    fill: var(--accent)
}

.feature h3 {
    font-size: 18px;
    margin: 8px 0 12px;
    font-weight: 800
}

.feature p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0 auto;
    max-width: 300px
}

@media(max-width:1000px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

/* CTA / Request Quote */
.cta-section {
    background: linear-gradient(180deg, #fffaf0, #fbf6f1);
    padding: 34px 0;
}

.cta-inner {
    text-align: center;
    max-width: var(--max-width);
    padding: 0 20px
}

.cta-inner h2 {
    font-size: 28px;
    margin: 0 0 8px;
    font-weight: 800;
    color: var(--dark)
}

.cta-sub {
    color: var(--muted);
    margin: 0 auto 12px;
    max-width: 780px
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(217, 154, 52, 0.18);
    text-decoration: none;
}

.cta-btn svg {
    fill: #fff
}

@media (max-width:700px) {
    .cta-inner h2 {
        font-size: 22px
    }

    .cta-btn {
        padding: 12px 20px
    }
}

/* Contact modal */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1200
}

.modal {
    background: #fff;
    width: 100%;
    max-width: 720px;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: translateY(12px);
}

.modal-inner {
    padding: 28px;
}

.modal h3 {
    margin: 0 0 8px;
    font-size: 20px
}

.modal p {
    color: var(--muted);
    margin: 0 0 14px
}

.modal-form {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    font-size: 14px
}

.modal-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 110px
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 8px
}

.modal .btn {
    padding: 10px 14px;
    border-radius: 10px
}

.modal-close {
    position: absolute;
    right: 12px;
    top: 12px;
    background: transparent;
    border: 0;
    font-size: 20px;
    cursor: pointer
}

.modal-backdrop.show {
    display: flex
}

@media(max-width:700px) {
    .modal {
        margin: 24px;
    }

    .modal-form {
        grid-template-columns: 1fr
    }
}



@media(max-width:600px) {
    .features-grid {
        grid-template-columns: 1fr
    }


    /* Services hero (full-bleed background with soft overlay) */
    .hero-services {
        position: relative;
        min-height: 420px;
        display: flex;
        align-items: center;
        color: var(--dark);
        background-image: url('assets/images/5.jpg');
        background-size: cover;
        background-position: center;
    }

    .hero-services::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(245, 242, 236, 0.86);
    }

    .hero-services .hero-inner {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 80px 20px
    }

    .hero-services h1 {
        font-size: clamp(32px, 4.6vw, 56px);
        margin: 0;
        font-weight: 800
    }

    .hero-services .hero-sub {
        color: var(--muted);
        max-width: 920px;
        margin: 12px auto 0;
        font-size: 18px
    }

    @media (max-width: 900px) {
        .hero-services {
            min-height: 320px
        }

        .hero-services .hero-inner {
            padding: 56px 20px
        }

        .hero-services h1 {
            font-size: 28px
        }

        .hero-services .hero-sub {
            font-size: 15px
        }
    }

    /* Services detail + sidebar */
    .services-detail-inner {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 48px;
        align-items: start;
        max-width: var(--max-width);
        padding: 0 20px;
    }

    .services-main {
        padding-right: 12px
    }

    .services-h1 {
        margin: 0 0 6px;
        font-size: 22px;
        font-weight: 800;
        color: var(--dark);
        max-width: 820px
    }

    .services-divider {
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, var(--accent), var(--accent-2));
        margin: 6px 0 14px
    }

    /* small left underline just under the H1 */
    .services-h1 {
        position: relative
    }

    .services-h1:after {
        content: '';
        display: block;
        width: 36px;
        height: 4px;
        background: linear-gradient(90deg, var(--accent), var(--accent-2));
        margin-top: 8px;
        border-radius: 3px;
    }

    .welcome-title {
        margin: 6px 0 0;
        font-size: 16px;
        font-weight: 700
    }

    .welcome-sub {
        margin: 6px 0 18px;
        color: var(--accent);
        font-weight: 700;
        font-size: 14px
    }

    .services-main p {
        color: var(--muted);
        line-height: 1.9;
        margin-bottom: 18px;
        max-width: 560px
    }

    .services-sidebar {
        position: relative
    }

    .sidebar-panel {
        background: #fbf6f1;
        padding: 18px;
        border-radius: 14px
    }

    .sidebar-title {
        font-weight: 800;
        margin: 0 0 12px;
        color: var(--dark);
        font-size: 14px
    }

    /* Make header full width and the details sit in a white rounded box under it */
    .sidebar-card {
        background: transparent;
        border-radius: 12px;
        padding: 0;
        margin-bottom: 18px;
    }

    .sidebar-card .card-header {
        display: block;
        background: linear-gradient(90deg, var(--accent), var(--accent-2));
        color: #fff;
        padding: 12px 14px;
        font-weight: 800;
        border-radius: 10px 10px 0 0;
        font-size: 15px;
        margin: 0
    }

    .sidebar-card .card-body {
        background: #fff;
        margin: 0;
        padding: 14px 16px;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 16px 36px rgba(16, 16, 16, 0.06)
    }

    .sidebar-card ul {
        margin: 0;
        padding-left: 18px
    }

    .sidebar-card li {
        margin: 8px 0;
        color: var(--muted);
        font-size: 14px
    }

    /* make sidebar sticky on larger screens */
    @media(min-width:1100px) {
        .services-sidebar {
            position: sticky;
            top: 110px;
            align-self: start
        }
    }

    @media(max-width:1000px) {
        .services-detail-inner {
            grid-template-columns: 1fr;
        }

        .services-sidebar {
            order: 2
        }
    }


    .features-wrap {
        margin-top: -20px
    }
}

.about,
.services,
.portfolio,
.contact {
    padding: 48px 0
}

.services .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: 0 6px 18px rgba(32, 32, 32, 0.06)
}

.portfolio .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px
}

.portfolio .item {
    min-height: 160px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end
}

.portfolio .overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.45));
    color: #fff;
    padding: 12px;
    width: 100%;
    font-weight: 600
}

.contact form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 640px
}

.contact input,
.contact textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px
}

.site-footer {
    background: #111;
    color: #ddd;
    margin-top: 48px;
}

.site-footer .container {
    max-width: var(--max-width);
    padding: 40px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.footer-col h4 {
    color: var(--accent);
    margin: 0 0 14px;
    font-size: 18px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    max-width: 320px;
}

.socials {
    margin-top: 18px;
    display: flex;
    gap: 12px
}

.social {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 6px;
    color: var(--accent);
    text-decoration: none
}

.social-icon {
    width: 18px;
    height: 18px;
    fill: var(--accent)
}

/* Make footer logo sit on a white rounded background for better contrast */
.footer-logo .logo-img {
    background: #fff;
    padding: 10px 14px;
    border-radius: 14px;
    display: inline-block;
    height: 48px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

@media(max-width:600px) {
    .footer-logo .logo-img {
        height: 40px;
        padding: 8px 12px
    }
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-links li {
    margin: 10px 0
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none
}

.footer-links a:hover {
    color: var(--accent)
}

.footer-contact .contact-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.contact-list li {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 10px 0
}

.contact-icon {
    width: 18px;
    height: 18px;
    fill: var(--accent);
    flex: 0 0 22px
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.9)
}

.newsletter-row {
    display: flex;
    gap: 12px;
    margin-top: 12px
}

.newsletter-row input {
    flex: 1;
    padding: 16px 20px;
    border-radius: 28px;
    border: 0;
    outline: none
}

.newsletter-row .btn {
    border-radius: 28px;
    padding: 14px 18px
}

.small {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 18px 0
}

.footer-bottom-inner {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px
}

@media(max-width:1000px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .newsletter-row {
        flex-direction: column
    }

    .newsletter-row .btn {
        width: 100%
    }
}

@media(min-width:900px) {
    .hero {
        padding: 120px 0
    }

    .site-header .nav {
        display: block
    }
}

@media(max-width:899px) {
    .nav {
        display: none
    }

    .nav-toggle {
        display: block
    }

    .quote-btn {
        margin-left: 12px
    }

    .site-header.nav-open .nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: #fff;
        padding: 12px 18px;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        box-shadow: 0 8px 24px rgba(20, 20, 20, 0.08);
        z-index: 60
    }

    .site-header.nav-open .nav a {
        margin: 8px 0
    }
}

/* --- Who we are featured card --- */
.who {
    padding: 56px 0;
}

.who-card {
    display: flex;
    gap: 36px;
    /* allow the image column to define the card height and let content stretch */
    align-items: stretch;
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 22px 48px rgba(20, 20, 20, 0.06);
}

.who-img {
    flex: 0 0 52%;
    max-width: 720px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(16, 16, 16, 0.06);
    /* make the image column taller so the image appears heighted */
    min-height: 460px;
}

.who-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-content {
    flex: 1 1 48%;
    padding: 8px 6px;
    /* vertically center content when image is tall */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.who-content h2 {
    font-size: 28px;
    margin: 0 0 8px;
    font-weight: 800;
}

.who-subtitle {
    color: var(--accent);
    margin: 8px 0 18px;
    font-weight: 800;
    font-size: 18px;
}

.who-content p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 22px;
    font-size: 16px;
}

/* Who-stats (stacked stat boxes between image and content) */
.who-stats {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    flex: 0 0 160px;
}

.stat-box {
    background: #f7f7f7;
    border-radius: 12px;
    padding: 18px 14px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(20, 20, 20, 0.04);
}

.stat-num {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
}

/* Contact page styles */
.contact-section {
    padding: 56px 20px;
    background: #fff;
}

.contact-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.contact-left {
    padding: 8px 6px;
}

.contact-left h2 {
    font-size: 28px;
    margin: 0 0 8px;
}

.contact-left .lead {
    color: var(--muted);
    margin-bottom: 18px;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-cards .card {
    background: #fff;
    border: 1px solid #eee;
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(20, 20, 20, 0.04);
}

.contact-cards .card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-cards .card a {
    display: block;
    color: var(--accent);
    text-decoration: none;
}

.contact-cards .card .muted {
    color: var(--muted);
    font-size: 13px;
    margin-top: 6px;
}

.small-cta {
    margin-top: 18px;
    display: flex;
    gap: 12px;
}

.contact-right {
    padding: 8px 6px;
}

.contact-right h2 {
    font-size: 26px;
    margin: 0 0 12px;
}

.contact-form .form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
    font-size: 15px;
}

.contact-form textarea {
    resize: vertical;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-status {
    color: var(--accent);
    font-weight: 600;
}

.map-wrap {
    margin-top: 18px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(20, 20, 20, 0.06);
}

@media(max-width:900px) {
    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:600px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        flex-direction: column;
    }
}

.who-img {
    flex: 0 0 32%;
    max-width: 360px;
}

.who-img img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    max-width: 100%;
}

.who-content {
    flex: 1 1 0;
}

.btn.btn-discover {
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
}

@media(max-width:900px) {
    .who-card {
        flex-direction: column;
        gap: 18px;
        padding: 22px;
    }

    .who-img {
        width: 100%;
        max-width: 100%;
        flex: none;
    }

    .who-content {
        padding: 0;
        text-align: left;
    }
}

/* --- Services / Counters section --- */
.stats {
    padding: 48px 0;
    text-align: center;
}

.stats h2 {
    font-size: 36px;
    margin: 0 0 6px;
    font-weight: 800;
}

.stats-sub {
    color: var(--accent);
    font-weight: 700;
    margin: 6px 0 14px;
}

.stats-desc {
    max-width: 880px;
    margin: 0 auto 22px;
    color: var(--muted);
    line-height: 1.8;
}

.stats-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 18px 36px rgba(20, 20, 20, 0.04);
    padding: 18px 8px;
    margin-top: 12px;
}

.stats-row {
    display: flex;
    gap: 0;
    align-items: center;
}

.stat {
    flex: 1 1 0;
    padding: 28px 18px;
    text-align: center;
    position: relative;
}

.stat:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 18px;
    bottom: 18px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(217, 154, 52, 0.12), rgba(217, 154, 52, 0.06));
}

.stat-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-label {
    font-weight: 700;
    color: var(--dark);
}

@media(max-width:900px) {
    .stats-row {
        flex-direction: column;
    }

    .stat:not(:last-child):after {
        display: none;
    }

    .stat {
        padding: 18px 12px;
    }

    .stat-num {
        font-size: 36px;
    }
}

/* Keep who-section stat numbers smaller than site-wide stats */
.who-stats .stat-num {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 6px;
}

/* --- What we offer cards --- */
.offer {
    padding: 56px 0;
    text-align: center;
}

.offer h2 {
    font-size: 36px;
    margin: 0 0 6px;
    font-weight: 800;
}

.offer-sub {
    color: var(--accent);
    font-weight: 700;
    margin: 6px 0 20px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 12px;
}

.offer-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 16px 36px rgba(20, 20, 20, 0.06);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.offer-media {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(16, 16, 16, 0.06);
}

.offer-media img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.offer-card h3 {
    margin: 6px 0 6px;
    font-size: 18px;
    font-weight: 800;
}

.offer-card p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 8px;
}

.offer-link {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.offer-link:hover {
    text-decoration: underline;
}

@media(max-width:1000px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }

    .offer-media img {
        height: 200px;
    }
}

/* --- Promo hero section (image + dark card) --- */
.promo {
    padding: 36px 0;
}

.promo-inner {
    display: flex;
    gap: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 28px 64px rgba(20, 20, 20, 0.08);
    align-items: stretch;
}

.promo-image {
    flex: 1 1 60%;
    min-height: 420px;
    background-size: cover;
    background-position: center;
}

.promo-card {
    flex: 0 0 40%;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, 0.52);
    color: #fff;
    border-top-left-radius: 0;
}

.promo-card h2 {
    font-size: 34px;
    margin: 0 0 12px;
    font-weight: 800;
}

.promo-card p {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.9;
    margin-bottom: 18px;
}

.promo-card .btn {
    padding: 12px 26px;
    border-radius: 28px;
    display: inline-block;
}

@media(max-width:1000px) {
    .promo-image {
        min-height: 320px;
    }

    .promo-card {
        padding: 32px 22px;
    }
}

@media(max-width:700px) {
    .promo-inner {
        flex-direction: column;
    }

    .promo-image {
        flex: none;
        min-height: 240px;
    }

    .promo-card {
        flex: none;
        width: 100%;
        background: rgba(0, 0, 0, 0.6);
        padding: 20px;
    }

    .promo-card h2 {
        font-size: 24px;
    }
}

/* --- Full-bleed promo hero using assets/images/best.jpg --- */
.promo-hero {
    position: relative;
    background-image: url('assets/best.jpg');
    background-size: cover;
    background-position: center;
    /* force to fill most of the viewport so the section is noticeably taller */
    min-height: 100vh;
    height: 100vh;
    margin: 36px 0;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.promo-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
}

.promo-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 20px;
}

.promo-hero-card {
    position: absolute;
    right: clamp(18px, 6vw, 60px);
    top: 50%;
    transform: translateY(-50%);
    width: clamp(320px, 46%, 720px);
    background: rgba(8, 8, 8, 0.66);
    padding: 48px;
    border-radius: 22px;
    color: #fff;
    box-shadow: 0 30px 80px rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(4px);
}

.promo-hero-card h2 {
    margin: 0 0 12px;
    /* reduced heading size for better balance */
    font-size: clamp(22px, 3.2vw, 40px);
    font-weight: 800;
    color: #fff;
}

.promo-hero-card p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.9;
}

.promo-hero-actions {
    display: flex;
    justify-content: flex-end;
}

@media(max-width:900px) {
    .promo-hero {
        /* mobile: keep tall but not full viewport to avoid excessive scroll */
        min-height: 80vh;
        height: auto;
        border-radius: 12px;
    }

    .promo-hero-card {
        position: static;
        transform: none;
        width: 100%;
        margin: 0 auto;
        border-radius: 12px;
        padding: 28px;
        background: rgba(0, 0, 0, 0.6);
    }

    .promo-hero-inner {
        padding: 36px 20px;
    }
}

/* --- How it works section --- */
.how {
    background: #fbf7f2;
    padding: 64px 20px;
    border-radius: 12px;
    margin: 36px 0;
}

.how-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.how-title {
    font-size: clamp(28px, 3.6vw, 44px);
    margin: 0 0 8px;
    font-weight: 800;
    color: var(--dark);
}

.how-sub {
    color: var(--accent-2);
    margin: 0 0 32px;
    font-weight: 600;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 18px;
}

.how-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(20, 20, 20, 0.04);
    text-align: left;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.how-number {
    font-weight: 800;
    font-size: 40px;
    color: var(--accent);
}

.how-card-title {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
}

.how-card-desc {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    flex: 1 1 auto;
}

@media(max-width:1000px) {
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:700px) {
    .how-grid {
        grid-template-columns: 1fr;
    }

    .how {
        padding: 36px 16px;
    }

    .how-card {
        padding: 20px;
    }
}

/* --- Why Choose section --- */
.why {
    background: linear-gradient(180deg, #fbf7f2 0%, #fbf7e9 100%);
    padding: 72px 0;
}

.why-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* --- Services offer (two-column image + cards) --- */
.services-offer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
    max-width: var(--max-width);
    margin: 0 auto;
}

.offer-left .offer-image-wrap {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(16, 16, 16, 0.06);
}

.offer-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 420px;
}

.offer-right .offer-panel {
    background: #fff;
    border-radius: 16px;
    padding: 34px;
    box-shadow: 0 30px 70px rgba(16, 16, 16, 0.07);
}

.offer-tag {
    color: var(--accent);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.offer-title {
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.08;
}

.offer-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 22px;
}

.offer-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(16, 16, 16, 0.06);
    position: relative;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: visible;
}

.card-num {
    color: var(--accent);
    font-weight: 800;
    font-size: 18px;
}

.card-title {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: var(--dark);
}

.card-text {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    flex: 1 1 auto;
}

.learn-btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    color: #fff;
    padding: 8px 14px;
    border-radius: 22px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    align-self: flex-start;
    box-shadow: 0 8px 20px rgba(217, 154, 52, 0.12);
    margin-top: 8px;
}

/* folded-corner decorative effect (subtle top-right triangle) */
.offer-card::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 60%);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    border-top-right-radius: 10px;
    box-shadow: 0 6px 18px rgba(16, 16, 16, 0.04);
    pointer-events: none;
}

/* slight inner highlight so text doesn't clash with the corner */
.offer-card::after {
    content: "";
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.6);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    border-top-right-radius: 8px;
    pointer-events: none;
}

@media (max-width: 1000px) {
    .services-offer-inner {
        grid-template-columns: 1fr;
    }

    .offer-image {
        min-height: 320px;
    }

    .offer-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .offer-title {
        font-size: 20px
    }

    .offer-panel {
        padding: 18px
    }
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 40px;
    align-items: start;
}

.why-content {
    padding-right: 20px;
}

.why-title {
    font-size: clamp(28px, 3.6vw, 40px);
    margin: 0 0 8px;
    font-weight: 800;
    color: var(--dark);
}

.why-accent {
    color: var(--accent);
}

.why-lead {
    color: var(--muted);
    margin: 0 0 28px;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.why-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 18px 40px rgba(20, 20, 20, 0.04);
    text-align: center;
}

.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(217, 154, 52, 0.12);
    color: var(--accent);
}

.why-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--accent);
}

.why-card h3 {
    margin: 6px 0 8px;
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
}

.why-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.why-media {
    height: 620px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(20, 20, 20, 0.06);
}

@media(max-width:1100px) {
    .why-grid {
        grid-template-columns: 1fr 380px;
    }

    .why-media {
        height: 540px;
    }
}

@media(max-width:900px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-media {
        height: 320px;
        margin-top: 24px;
    }
}

/* --- Previous Projects / Gallery --- */
.projects {
    padding: 72px 0;
    text-align: center;
}

.projects h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    margin: 0 0 6px;
    font-weight: 800;
    color: var(--dark);
}

.projects-sub {
    color: var(--accent-2);
    margin: 6px 0 20px;
    font-weight: 600;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 18px;
}

.project-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(20, 20, 20, 0.06);
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.projects-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.projects .btn-discover {
    padding: 12px 36px;
    border-radius: 30px;
    font-weight: 800;
}

@media(max-width:1000px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:700px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card img {
        height: 260px;
    }
}

/* --- Blog page styles --- */
.hero-small {
    padding: 48px 0;
    background: linear-gradient(180deg, rgba(217, 154, 52, 0.06), rgba(246, 244, 240, 0.4));
    color: var(--dark);
}

.blog-list {
    padding: 48px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(20, 20, 20, 0.06);
    display: flex;
    flex-direction: column;
}

.post-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.post-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.post-content h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}

.post-excerpt {
    color: var(--muted);
    margin: 0;
    line-height: 1.7;
    flex: 1 1 auto;
}

.btn.btn-read {
    align-self: flex-start;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

@media(max-width:900px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .post-card img {
        height: 260px;
    }
}

/* --- Post page layout (article + right sidebar) --- */
.post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}

.post-main {
    min-width: 0;
}

.post-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 16px 36px rgba(20, 20, 20, 0.06);
    height: fit-content;
}

.post-sidebar h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
}

.latest-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.latest-list a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
}

.latest-list a:hover {
    color: var(--accent);
}

@media(max-width:900px) {
    .post-layout {
        grid-template-columns: 1fr;
    }

    .post-sidebar {
        order: 2;
    }
}

/* Core Values section */
.core-values {
    background: #fbf6f1;
}

.core-inner {
    padding: 36px 20px;
}

.core-title {
    color: var(--accent);
    font-size: 28px;
    margin: 0 0 8px;
    font-weight: 800
}

.core-intro {
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 28px;
    line-height: 1.8
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 18px
}

.value-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(20, 20, 20, 0.04);
    text-align: center
}

.value-icon {
    font-size: 26px;
    color: var(--accent);
    margin-bottom: 10px
}

.value-card h4 {
    margin: 0 0 8px;
    font-size: 16px;
    color: var(--dark);
    font-weight: 700
}

.value-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6
}

@media(max-width:1000px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:600px) {
    .values-grid {
        grid-template-columns: 1fr
    }
}

/* Our Story section */
.our-story {
    background: #fff;
}

.story-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px
}

.story-title {
    color: var(--accent);
    font-size: 28px;
    margin: 0 0 8px;
    font-weight: 800
}

.story-intro {
    color: var(--muted);
    max-width: 820px;
    margin: 0 auto 28px;
    line-height: 1.8
}

.story-cards {
    display: flex;
    gap: 22px;
    justify-content: center;
    align-items: stretch;
    margin-top: 18px
}

.story-card {
    background: #fff8e6;
    border-radius: 12px;
    padding: 28px 34px;
    box-shadow: 0 14px 30px rgba(217, 154, 52, 0.06);
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.story-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px
}

.story-label {
    font-size: 14px;
    color: var(--dark);
    font-weight: 700
}

@media(max-width:900px) {
    .story-cards {
        flex-direction: column;
        gap: 14px
    }

    .story-card {
        min-width: auto
    }
}

/* Transforming Spaces section */
.transform-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    max-width: var(--max-width);
    padding: 0 20px;
}

.transform-image img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
    box-shadow: 0 20px 48px rgba(16, 16, 16, 0.08);
}

.transform-content .transform-card {
    background: #fff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(20, 20, 20, 0.06);
}

.transform-content h2 {
    font-size: 28px;
    margin: 0 0 12px;
    font-weight: 800;
}

.transform-content p {
    color: var(--muted);
    line-height: 1.9;
    margin: 0 0 12px
}

@media(max-width:900px) {
    .transform-inner {
        grid-template-columns: 1fr;
    }

    .transform-image {
        order: -1
    }

    .transform-content .transform-card {
        padding: 20px
    }
}

/* Our Value section */
.our-value-section {
    background: #0b0b0b;
    color: #fff;
}

.our-value-section .value-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: var(--max-width);
    padding: 0 20px;
}

.our-value-section .value-left {
    padding: 42px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.our-value-section .value-subtitle {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 1.6px;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.our-value-section .value-title {
    font-size: clamp(22px, 3.4vw, 36px);
    margin: 0 0 14px;
    font-weight: 800;
    color: #fff;
    line-height: 1.06;
}

.our-value-section .value-divider {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border-radius: 3px;
    margin-bottom: 20px;
}

.our-value-section .value-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 6px;
}

.our-value-section .value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.our-value-section .value-badge {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex: 0 0 52px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}

.our-value-section .value-badge svg {
    width: 22px;
    height: 22px;
    fill: #fff
}

.our-value-section .value-text h4 {
    margin: 0;
    font-size: 16px;
    color: #fff;
    font-weight: 800
}

.our-value-section .value-text p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px
}

.our-value-section .value-right {
    display: flex;
    justify-content: center
}

.our-value-section .value-image-frame {
    background: #fff;
    padding: 34px;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    max-width: 680px;
}

.our-value-section .value-image-frame img {
    display: block;
    width: 100%;
    height: clamp(240px, 36vw, 420px);
    object-fit: cover;
    border-radius: 12px
}

@media (max-width: 900px) {
    .our-value-section .value-inner {
        grid-template-columns: 1fr;
    }

    .our-value-section .value-right {
        order: -1;
        margin-bottom: 18px
    }

    .our-value-section .value-left {
        padding: 28px
    }

    .our-value-section .value-image-frame {
        padding: 18px
    }
}

/* Director / Testimonial section */
.director-section {
    background: #fff;
}

.director-inner {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: center;
    max-width: var(--max-width);
    padding: 0 20px;
}

.director-card {
    display: flex;
    flex-direction: column;
    align-items: center
}

.director-frame {
    background: #fff;
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(16, 16, 16, 0.06);
    position: relative;
    width: 100%;
    max-width: 320px;
}

.director-frame img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 12px
}

.director-name-badge {
    position: absolute;
    right: 18px;
    top: 58%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.78);
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 700;
}

.director-bottom-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 12px 18px;
    text-align: center;
    font-weight: 700;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.director-role {
    margin-top: 14px;
    color: var(--accent);
    font-weight: 700
}

.director-content p {
    color: var(--muted);
    line-height: 1.9;
    font-size: 16px
}

.director-sign {
    margin-top: 20px
}

.sign-name {
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px
}

.sign-role {
    color: var(--muted);
    font-style: italic
}

@media (max-width:1000px) {
    .director-inner {
        grid-template-columns: 1fr;
    }

    .director-frame img {
        height: 340px
    }

    .director-name-badge {
        top: 58%;
        right: 20px
    }
}

/* Responsive adjustments for WHO WE ARE tall image */
@media (max-width:900px) {
    .who-card {
        flex-direction: column;
        align-items: stretch;
    }

    .who-img {
        width: 100%;
        min-height: 320px;
        max-width: 100%;
    }

    .who-content {
        padding-top: 18px;
    }
}

@media (max-width:420px) {
    .who-img {
        min-height: 260px;
    }
}