@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

:root {
    --color-bg: #f9f8f6;
    --color-text: #2c2a29;
    --color-text-light: #6a6561;
    --color-accent: #b89b72;
    --color-accent-hover: #9e825d;
    --color-header-solid: #3a3532;
    --color-white: #ffffff;
    --color-border: #e5e0d8;

    --font-main: "Alexandria", sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    direction: rtl;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: var(--transition-smooth);
    background-color: transparent;
    box-sizing: border-box;
}

header.scrolled {
    background-color: rgba(58, 53, 50, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.logo {
    display: inline-flex;
    align-items: center;
    height: 40px;
    max-width: 180px;
    z-index: 101;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.desktop-nav {
    display: flex;
    gap: 2.5rem;
}

.desktop-nav a {
    color: var(--color-white);
    font-weight: 300;
    font-size: 0.95rem;
    position: relative;
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

.desktop-nav a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.btn-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--color-accent);
    color: var(--color-white);
    border: 1px solid var(--color-accent);
    border-radius: 4px;
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    border-radius: 4px;
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-text);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
}

@media (max-width: 991px) {

    .desktop-nav,
    .header-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}


.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background-color: #1a1817;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
}

.sidebar.active {
    right: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-header {
    padding: 2.5rem 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-logo {
    height: 28px;
}

.sidebar-logo img {
    height: 100%;
    width: auto;
    filter: brightness(0) invert(1);
}

.sidebar-close-trigger {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    background: transparent;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
}

.sidebar-close-trigger:hover {
    background: var(--color-white);
    color: #1a1817;
    transform: rotate(90deg);
}

.sidebar-content {
    flex-grow: 1;
    padding: 2rem 2rem 4rem;
    display: flex;
    flex-direction: column;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    margin-bottom: auto;
}

.sidebar-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.4rem;
    font-weight: 300;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.sidebar-nav a span {
    transition: transform 0.4s ease;
}

.sidebar-nav a::after {
    content: "\f060";
    /* FontAwesome arrow left */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.9rem;
    color: var(--color-accent);
    opacity: 0;
    transform: translateX(15px);
    transition: all 0.4s ease;
}

.sidebar-nav a:hover {
    color: var(--color-white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.sidebar-nav a:hover span {
    transform: translateX(-10px);
}

.sidebar-nav a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.sidebar.active .sidebar-nav a {
    opacity: 1;
    transform: translateY(0);
}

.sidebar-footer {
    margin-top: 4rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.4s;
}

.sidebar.active .sidebar-footer {
    opacity: 1;
    transform: translateY(0);
}

.sidebar-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-link i {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--color-white);
}

.contact-link:hover i {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.sidebar-social-links {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.sidebar-social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.sidebar-social-links a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.sidebar-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.2rem;
    background: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.4s ease;
}

.sidebar-cta-btn:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

/* Specific delay classes for nav items */
.sidebar.active .sidebar-nav a:nth-child(1) {
    transition-delay: 0.1s;
}

.sidebar.active .sidebar-nav a:nth-child(2) {
    transition-delay: 0.15s;
}

.sidebar.active .sidebar-nav a:nth-child(3) {
    transition-delay: 0.2s;
}

.sidebar.active .sidebar-nav a:nth-child(4) {
    transition-delay: 0.25s;
}

.sidebar.active .sidebar-nav a:nth-child(5) {
    transition-delay: 0.3s;
}

.sidebar.active .sidebar-nav a:nth-child(6) {
    transition-delay: 0.35s;
}

.sidebar.active .sidebar-nav a:nth-child(7) {
    transition-delay: 0.4s;
}



/* Update menu-toggle color for consistency */
.menu-toggle span {
    background-color: var(--color-white);
}

@media (max-width: 480px) {
    .sidebar {
        max-width: 100%;
    }
}


/* Hero section */
.hero {
    position: relative;
    height: 88vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../imgs/hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transform: scale(1.05);
    animation: zoomBg 20s ease-out infinite alternate;
}

@keyframes zoomBg {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    color: var(--color-white);
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.5s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtext {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
    display: block;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-desc {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

/* Trust bar */
.trust-bar {
    background: linear-gradient(135deg,
            var(--color-white) 0%,
            rgba(249, 248, 246, 0.8) 100%);
    padding: 2rem 5%;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.blueprint-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.3;
    pointer-events: none;
}

.blueprint-corner.top-right {
    top: 30px;
    right: 30px;
    border-top: 1px solid var(--color-accent);
    border-right: 1px solid var(--color-accent);
}

.blueprint-corner.bottom-left {
    bottom: 30px;
    left: 30px;
    border-bottom: 1px solid var(--color-accent);
    border-left: 1px solid var(--color-accent);
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trust-item {
    text-align: center;
    flex: 1;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    position: relative;
}

.trust-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.trust-item:hover {
    transform: translateY(-10px);
}

.trust-item:hover .trust-value,
.trust-item:hover .trust-label {
    color: var(--color-text);
}

.trust-value {
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--color-header-solid);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 2px;
    transition: var(--transition-smooth);
}

.accent-sign {
    color: var(--color-accent);
    font-size: 3rem;
    font-weight: 300;
    opacity: 0.8;
}

.trust-value.text-value {
    font-size: 3rem;
    letter-spacing: 0;
    font-family: var(--font-main);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.trust-label {
    font-size: 1.1rem;
    color: var(--color-text-light);
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.trust-divider {
    width: 1px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.1);
}

/* About section */
.about-section {
    padding: 2rem 2rem 5%;
    background-color: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-content {
    padding-left: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.about-content.revealed {
    opacity: 1;
    transform: translateY(0);
}

.about-title {
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-header-solid);
    line-height: 1.3;
    margin-bottom: 2rem;
}

.about-desc {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-subtext {
    font-size: 1.1rem;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 3rem;
    border-right: 3px solid var(--color-accent);
    padding-right: 1.5rem;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.about-image-wrapper.revealed {
    opacity: 1;
    transform: translateY(0);
}

.about-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-accent-line {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    border-bottom: 2px solid var(--color-accent);
    border-left: 2px solid var(--color-accent);
    z-index: -1;
}

/* Before & After Section */
.ba-section {
    padding: 2rem 4rem 5%;
    background-color: var(--color-white);
    position: relative;
}

.ba-container {
    max-width: 1400px;
    margin: 0 auto;
}

@keyframes watermarkShimmer {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

/* Unified Section Header Style Block */
.section-header {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    padding: 0 5%;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.section-header.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-watermark {
    position: absolute;
    top: -25px;
    /* Centered perfectly behind/above the title */
    left: 50%;
    transform: translateX(-50%);
    font-size: 7.5rem;
    /* Massive, beautiful serif watermark */
    font-weight: 900;
    letter-spacing: 12px;
    /* Luxury wide tracking spacing */
    font-family: 'Playfair Display', 'Cormorant Garamond', 'Didot', serif;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    z-index: -1;
    /* Placed exactly behind the header text */
    user-select: none;

    /* Elegant Background Shimmer Clip */
    background: linear-gradient(120deg,
            rgba(184, 155, 114, 0.04) 35%,
            rgba(184, 155, 114, 0.25) 50%,
            rgba(184, 155, 114, 0.04) 65%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: watermarkShimmer 8s ease-in-out infinite;
}

.section-title {
    color: var(--color-header-solid);
    font-size: 2.6rem;
    /* Symmetrical bold centered heading */
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 1.5rem;
    display: block;
    width: 100%;
}

.section-desc {
    font-size: 1.25rem;
    /* Clean readable description paragraph */
    color: var(--color-text-light);
    line-height: 1.7;
    font-weight: 400;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

/* 3 Stacked Black Lines of Decreasing Widths (Centered) */
.section-decor-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 2rem;
    align-items: center;
    /* Symmetrically centered */
}

.section-line {
    display: block;
    height: 2px;
    background-color: #000000;
    /* Solid Black */
    opacity: 0.95;
    border-radius: 1px;
}

.section-line-1 {
    width: 120px;
    /* Symmetrical decreasing lengths */
}

.section-line-2 {
    width: 80px;
}

.section-line-3 {
    width: 40px;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ba-project {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.ba-project.revealed {
    opacity: 1;
    transform: translateY(0);
}

.ba-slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    cursor: ew-resize;
}

.ba-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-img-before-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-right: 2px solid var(--color-white);
}

.ba-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
}

.ba-slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--color-white);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 5;
}

.ba-slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-header-solid);
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.ba-badge {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-header-solid);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    z-index: 5;
    pointer-events: none;
}

.before-badge {
    left: 20px;
}

.after-badge {
    right: 20px;
}

.ba-caption {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ba-number {
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-border);
    line-height: 1;
    font-family: Arial, Helvetica, sans-serif;
}

.ba-caption p {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.6;
    font-weight: 400;
}

.masterpiece-services {
    padding: 2rem;
    background-color: var(--color-white);
}

.ms-accent {
    color: var(--color-accent) !important;
    display: inline-block;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .masterpiece-services {
        padding: 5rem 0;
    }

    /* Consolidated Section Header Mobile Responsive */
    .section-header {
        margin-bottom: 3.5rem;
    }

    .section-watermark {
        font-size: 3rem !important;
        /* Scaled down perfectly on mobile screens */
        letter-spacing: 2px !important;
        top: -10px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }

    .section-desc {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .section-decor-lines {
        margin-top: 1.5rem;
        gap: 5px;
    }

    .section-line {
        height: 1.5px;
    }

    .section-line-1 {
        width: 90px;
    }

    .section-line-2 {
        width: 60px;
    }

    .section-line-3 {
        width: 30px;
    }
}

.mural-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 350px;
    gap: 4px;
    /* Thin, elegant lines between images */
    background-color: var(--color-white);
    padding: 0 4px;
    /* Tiny padding to let the gap show on edges */
    max-width: 1600px;
    margin: 0 auto;
}

.mural-item {
    position: relative;
    overflow: hidden;
    background-color: #000;
    cursor: pointer;
}

.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.item-square {
    grid-column: span 1;
    grid-row: span 1;
}

.item-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.mural-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0.8;
    /* Slightly desaturated by default */
}

.mural-item:hover .mural-img {
    transform: scale(1.05);
    opacity: 0.5;
    /* Darkens on hover to show text */
}

.mural-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.1) 60%,
            transparent 100%);
    pointer-events: none;
    transition: background 0.8s ease;
}

.mural-item:hover .mural-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.6) 60%,
            rgba(0, 0, 0, 0.2) 100%);
}

.mural-content {
    position: absolute;
    inset: 0;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
    /* Let hover pass through to the item */
}

/* For small items, less padding */
.item-square .mural-content {
    padding: 2rem;
}

.mural-top {
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mural-item:hover .mural-top {
    transform: translateY(-20px);
}

.mural-num {
    font-family: Arial, sans-serif;
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    display: block;
}

.mural-name {
    font-size: 2.2rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.item-square .mural-name {
    font-size: 1.6rem;
}

.item-tall .mural-name {
    font-size: 1.8rem;
}

.mural-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mural-item:hover .mural-body {
    max-height: 200px;
    opacity: 1;
}

.mural-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.item-square .mural-desc {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.mural-btn {
    font-size: 1rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Decor Trends Section */
.decor-trends {
    padding: 4rem 4rem 5%;
    background-color: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.dt-mosaic {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 6px;
    max-width: 1400px;
    margin: 0 auto 6px;
    height: 620px;
}

.dt-col-right {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 6px;
}

.dt-small-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.dt-cell {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: #c5bdb5;
}

.dt-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dt-cell:hover .dt-img {
    transform: scale(1.06);
}

.dt-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(30, 20, 10, 0.6) 0%,
            transparent 55%);
    transition: background 0.6s ease;
    pointer-events: none;
}

.dt-cell:hover .dt-img-overlay {
    background: linear-gradient(to top,
            rgba(30, 20, 10, 0.75) 0%,
            rgba(10, 5, 0, 0.1) 60%);
}

.dt-img-label {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    pointer-events: none;
}

.dt-trend-tag {
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 3px;
    white-space: nowrap;
}

/* --- Text + Wide Image Block --- */
.dt-text-block {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 6rem auto 0;
    align-items: center;
}

.dt-text-inner {
    padding-right: 2rem;
    border-right: 2px solid var(--color-border);
}

.dt-quote-mark {
    font-size: 8rem;
    line-height: 0.5;
    color: var(--color-accent);
    opacity: 0.3;
    margin-bottom: 2rem;
    font-family: Georgia, serif;
}

.dt-body-text {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-header-solid);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.dt-divider {
    width: 60px;
    height: 2px;
    background-color: var(--color-accent);
    margin-bottom: 2.5rem;
}

.dt-body-sub {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.dt-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--color-header-solid);
    text-decoration: none;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 6px;
    letter-spacing: 1px;
    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.dt-cta-btn:hover {
    color: var(--color-accent);
    gap: 18px;
}

.dt-wide-image {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.dt-wide-image .dt-img {
    border-radius: 2px;
}

.dt-year-float {
    position: absolute;
    bottom: -20px;
    left: -10px;
    font-size: 10rem;
    font-weight: 700;
    color: var(--color-white);
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
    font-family: Arial, sans-serif;
    user-select: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .dt-mosaic {
        grid-template-columns: 1fr;
        height: auto;
    }

    .dt-hero {
        height: 450px;
    }

    .dt-col-right {
        height: auto;
    }

    .dt-medium {
        height: 300px;
    }

    .dt-small {
        height: 240px;
    }

    .dt-text-block {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .dt-text-inner {
        border-right: none;
        border-bottom: 2px solid var(--color-border);
        padding-right: 0;
        padding-bottom: 3rem;
    }

    .dt-wide-image {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .decor-trends {
        padding: 3rem 1.5rem 5%;
    }

    .dt-mosaic {
        gap: 8px;
    }

    .dt-hero {
        height: 280px;
    }

    .dt-medium {
        height: 240px;
    }

    .dt-title {
        font-size: 2.4rem;
    }

    .dt-body-text {
        font-size: 1.3rem;
    }

    .dt-small-pair {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .dt-small {
        height: 180px;
    }

    .dt-year-float {
        font-size: 6rem;
    }

    .dt-text-block {
        gap: 2.5rem;
        margin-top: 3.5rem;
    }
}

/* ==================
   PORTFOLIO GALLERY
   ================== */
.portfolio-gallery {
    padding: 6rem 5% 0;
    background-color: var(--color-bg);
}

/* Header */


/* Grid */
.pg-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.pg-item {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    background: #1a1814;
    cursor: pointer;
    height: 280px;
    grid-column: span 2;
    /* Default for top 3 (2+2+2 = 6) */
}

/* Bottom 2 items span 3 columns each (3+3 = 6) */
.pg-item--wide {
    grid-column: span 3;
}

/* Image */
.pg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:
        transform 0.9s cubic-bezier(0.25, 1, 0.5, 1),
        filter 0.6s ease;
    filter: brightness(0.88);
}

.pg-item:hover .pg-img {
    transform: scale(1.06);
    filter: brightness(0.6);
}

/* Overlay */
.pg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.1) 50%,
            transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.4rem 1.6rem;
    transition: background 0.5s ease;
}

.pg-item:hover .pg-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.3) 55%,
            transparent 100%);
}

.pg-name {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    margin: 0 0 0.3rem;
    line-height: 1.3;
    transform: translateY(4px);
    transition: transform 0.45s ease;
}

.pg-item:hover .pg-name {
    transform: translateY(0);
}

.pg-meta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    opacity: 0;
    transform: translateY(6px);
    transition:
        opacity 0.4s ease 0.05s,
        transform 0.4s ease 0.05s;
}

.pg-item:hover .pg-meta {
    opacity: 1;
    transform: translateY(0);
}

/* CTA */
.pg-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0 6rem;
    text-align: center;
}

.pg-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 2.4rem;
    border: 1px solid var(--color-header-solid);
    color: var(--color-header-solid);
    font-size: 0.95rem;
    font-weight: 400;
    border-radius: 2px;
    letter-spacing: 0.5px;
    transition:
        background 0.35s ease,
        color 0.35s ease,
        gap 0.3s ease;
}

.pg-cta-btn:hover {
    background: var(--color-header-solid);
    color: var(--color-white);
    gap: 1.2rem;
}

/* Responsive */
@media (max-width: 900px) {
    .pg-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 220px 220px 220px;
    }

    .pg-item--wide {
        grid-column: span 1;
    }

    .pg-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .portfolio-gallery {
        padding: 4rem 4% 0;
    }

    .pg-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 8px;
    }

    .pg-item {
        height: 220px;
    }

    .pg-item--wide {
        grid-column: span 1;
        height: 220px;
    }

    .pg-name {
        font-size: 0.95rem;
    }

    .pg-meta {
        opacity: 1;
        transform: none;
    }

    .pg-item:hover .pg-name {
        transform: none;
    }

    .pg-title {
        font-size: 1.8rem;
    }
}

/* Client Testimonials */
.testimonials-section {
    padding: 2rem 2rem 5%;
    background-color: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse,
            rgba(184, 155, 114, 0.07) 0%,
            transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.testimonials-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.test-swiper {
    padding: 3rem 0 4rem;
    overflow: hidden;
}

.test-slide {
    width: 540px;
    height: auto;
    padding: 0.5rem 0;
}

.test-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 3.5rem 3.5rem 3rem;
    position: relative;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.05),
        0 8px 20px rgba(0, 0, 0, 0.03);
    transition:
        transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.test-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.08),
        0 12px 30px rgba(0, 0, 0, 0.05);
}

.test-card-quote-mark {
    position: absolute;
    top: 1.2rem;
    right: 2rem;
    font-size: 10rem;
    line-height: 1;
    color: var(--color-accent);
    opacity: 0.06;
    font-family: Georgia, "Times New Roman", serif;
    pointer-events: none;
    user-select: none;
}

.test-card-quote {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 2rem;
    flex: 1;
    position: relative;
    z-index: 1;
}

.test-card-divider {
    width: 50px;
    height: 2px;
    background-color: var(--color-accent);
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.test-card-client {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.test-card-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-header-solid);
}

.test-card-meta {
    font-size: 0.8rem;
    color: var(--color-text-light);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.test-pagination {
    position: relative;
    bottom: auto;
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
}

.test-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--color-border);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.test-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 4px;
    background: var(--color-accent);
}

/* Responsive */
@media (max-width: 1024px) {
    .test-slide {
        width: 460px;
    }

    .test-title {
        font-size: 2.6rem;
    }

    .test-card {
        padding: 3rem 2.5rem 2.5rem;
    }

    .test-card-quote {
        font-size: 1.35rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 2rem 4%;
    }

    .test-slide {
        width: 85vw;
    }

    .test-title {
        font-size: 2rem;
    }

    .test-desc {
        font-size: 1rem;
    }

    .test-card {
        padding: 2.5rem 2rem 2rem;
        border-radius: 16px;
    }

    .test-card-quote {
        font-size: 1.2rem;
    }

    .test-card-quote-mark {
        font-size: 7rem;
        top: 1rem;
        right: 1.5rem;
    }

    .test-header {
        margin-bottom: 3rem;
    }

    .test-swiper {
        padding: 2rem 0 3rem;
    }
}

@media (max-width: 480px) {
    .test-slide {
        width: 92vw;
    }

    .test-card {
        padding: 2rem 1.5rem 1.8rem;
        border-radius: 14px;
    }

    .test-card-quote {
        font-size: 1.1rem;
    }

    .test-card-quote-mark {
        font-size: 5rem;
    }

    .test-card-divider {
        width: 40px;
    }
}

.luxury-ba-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 42px;
    background: transparent;
    color: #1c1917;
    border: 1.5px solid #bca374;
    text-decoration: none;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 4px;
}

.luxury-ba-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #bca374;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-ba-btn:hover {
    color: #ffffff !important;
    border-color: #bca374;
}

.luxury-ba-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.luxury-ba-btn .btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.luxury-ba-btn:hover .btn-arrow {
    transform: translateX(-6px);
}

/* CTA */
.final-cta {
    position: relative;
    padding: 2rem 0;
    background-color: var(--color-bg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: saturate(0.5);
    transition: transform 12s cubic-bezier(0.2, 1, 0.3, 1);
}

.final-cta.revealed .cta-background img {
    transform: scale(1.1);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
            transparent 0%,
            var(--color-bg) 80%);
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
}

.cta-title {
    font-size: 5rem;
    font-weight: 300;
    color: var(--color-header-solid);
    line-height: 1.1;
    margin-bottom: 2.5rem;
    letter-spacing: -2px;
}

.cta-desc {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto 5rem;
}

.cta-contact-box {
    margin-bottom: 4rem;
}

.cta-contact-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.cta-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-header-solid);
    direction: ltr;
}

.cta-phone {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
}

.cta-phone::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

.cta-phone:hover::after {
    width: 100%;
}

.cta-phone:hover {
    color: var(--color-accent);
}

.cta-divider {
    opacity: 0.2;
    font-weight: 200;
}

.btn-cta {
    padding: 1.4rem 4rem;
    font-size: 1.2rem;
    background-color: var(--color-header-solid);
    border-color: var(--color-header-solid);
    color: var(--color-white);
    border-radius: 0;
    transition: var(--transition-smooth);
}

.btn-cta:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

@media (max-width: 1024px) {
    .cta-title {
        font-size: 3.5rem;
    }

    .cta-desc {
        font-size: 1.3rem;
    }

    .cta-numbers {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.8rem;
    }

    .cta-desc {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .cta-numbers {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 1.8rem;
    }

    .cta-divider {
        display: none;
    }
}

/* Footer */
.footer {
    position: relative;
    background-color: #ece9e4;
    color: var(--color-text);
    overflow: hidden;
    padding: 3rem 5% 2rem;
    z-index: 1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-cta-section {
    text-align: center;
    margin-bottom: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-cta-title {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--color-header-solid);
}

.footer-cta-desc {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
}

.footer-cta-btn {
    font-size: 1.1rem;
    padding: 1rem 3rem;
    border-radius: 0;
    background-color: var(--color-header-solid);
    border-color: var(--color-header-solid);
}

.footer-cta-btn:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    color: var(--color-header-solid);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    color: var(--color-header-solid);
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background-color: var(--color-header-solid);
    color: var(--color-white);
    border-color: var(--color-header-solid);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-header-solid);
    margin-bottom: 2rem;
}

.footer-nav-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-nav-list-vertical li a {
    color: var(--color-text-light);
    font-size: 1rem;
    transition: var(--transition-smooth);
    position: relative;
}

.footer-nav-list-vertical li a:hover {
    color: var(--color-accent);
    padding-right: 8px;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-contact-details li i {
    color: var(--color-header-solid);
    margin-top: 5px;
}

.footer-contact-details li a {
    color: var(--color-text-light);
    transition: var(--transition-smooth);
}

.footer-contact-details li a:hover {
    color: var(--color-accent);
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0.1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: var(--color-accent);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .trust-container {
        flex-wrap: wrap;
        gap: 4rem 0;
    }

    .trust-item {
        flex: 1 1 40%;
    }

    .trust-divider {
        display: none;
    }

    .footer-main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-content {
        padding-left: 0;
    }

    .about-image-wrapper {
        min-height: 400px;
    }

    .mural-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 400px;
    }

    .item-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .item-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .item-wide {
        grid-column: span 2;
        grid-row: span 1;
    }

    .item-square {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .header-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }

    .trust-item {
        flex: 1 1 100%;
    }

    .trust-value {
        font-size: 3.5rem;
    }

    .trust-value.text-value {
        font-size: 2.5rem;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ba-slider-container {
        height: 350px;
    }

    .ba-number {
        font-size: 3rem;
    }

    .ba-title {
        font-size: 2.2rem;
    }

    .services-title {
        font-size: 2.2rem;
    }

    .ms-title {
        font-size: 2.5rem;
    }

    .mural-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 450px;
        padding: 0;
        /* edge to edge */
    }

    .item-large,
    .item-square,
    .item-tall,
    .item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .mural-content {
        padding: 2.5rem;
    }

    .mural-body {
        max-height: 200px;
        opacity: 1;
    }

    .mural-top {
        transform: translateY(-10px);
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-cta-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   ABOUT PAGE — ab- prefix
   ========================================================================== */

/* ----------------------------------------------------------
   Reveal Animations
   ---------------------------------------------------------- */
.ab-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.ab-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.ab-reveal-left {
    opacity: 0;
    transform: translateX(40px);
    transition: var(--transition-slow);
}

.ab-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.ab-reveal-right {
    opacity: 0;
    transform: translateX(-40px);
    transition: var(--transition-slow);
}

.ab-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ----------------------------------------------------------
   Shared Section Label
   ---------------------------------------------------------- */
.ab-section-label {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.2rem;
}

/* ----------------------------------------------------------
   SECTION 1 — HERO
   ---------------------------------------------------------- */
.ab-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}

.ab-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("../imgs/hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transform: scale(1.06);
    animation: abZoomBg 22s ease-out infinite alternate;
}

@keyframes abZoomBg {
    from {
        transform: scale(1.06);
    }

    to {
        transform: scale(1.12);
    }
}

.ab-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.45) 60%,
            rgba(0, 0, 0, 0.25) 100%);
    z-index: -1;
}

.ab-hero-content {
    max-width: 820px;
    color: var(--color-white);
    z-index: 1;
    opacity: 0;
    transform: translateY(35px);
    animation: abFadeUp 1.3s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.6s;
}

@keyframes abFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ab-hero-label {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.8rem;
    position: relative;
    padding-right: 2.5rem;
}

.ab-hero-label::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1.8rem;
    height: 1px;
    background-color: var(--color-accent);
    transform: translateY(-50%);
}

.ab-hero-title {
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.8rem;
    color: var(--color-white);
}

.ab-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    max-width: 580px;
}

.ab-hero-scroll {
    position: absolute;
    bottom: 2.8rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    opacity: 0;
    animation: abFadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards 1.4s;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.ab-hero-scroll:hover {
    color: var(--color-white);
    transform: translateX(-50%) translateY(4px);
}

.ab-hero-scroll svg {
    animation: abScrollBounce 2s ease-in-out infinite;
}

@keyframes abScrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* ----------------------------------------------------------
   SECTION 2 — STORY
   ---------------------------------------------------------- */
.ab-story {
    padding: 8rem 5%;
    background-color: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.ab-story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* Image column — appears on LEFT in RTL layout */
.ab-story-image {
    position: relative;
    width: 100%;
    min-height: 520px;
    border-radius: 4px;
    overflow: visible;
}

.ab-story-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

/* Gold architectural accent lines — bottom-left corner */
.ab-story-accent-line {
    position: absolute;
    bottom: -22px;
    left: -22px;
    width: 160px;
    height: 160px;
    border-bottom: 2px solid var(--color-accent);
    border-left: 2px solid var(--color-accent);
    z-index: 0;
    pointer-events: none;
}

/* Text column — appears on RIGHT in RTL */
.ab-story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.ab-story-label {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.2rem;
    position: relative;
    padding-right: 2.5rem;
}

.ab-story-label::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1.8rem;
    height: 1px;
    background-color: var(--color-accent);
    transform: translateY(-50%);
}

.ab-story-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--color-header-solid);
    line-height: 1.25;
    margin-bottom: 2rem;
}

.ab-story-body {
    font-size: 1.13rem;
    color: var(--color-text-light);
    line-height: 1.85;
    margin-bottom: 1.4rem;
}

.ab-story-quote {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-header-solid);
    line-height: 1.7;
    border-right: 3px solid var(--color-accent);
    padding-right: 1.6rem;
    margin-top: 1rem;
    margin-bottom: 0;
    font-style: normal;
}


/* ----------------------------------------------------------
   SECTION 4 — VALUES
   ---------------------------------------------------------- */
.ab-values-section {
    padding: 8rem 5%;
    background-color: var(--color-bg);
    position: relative;
}

.ab-values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ab-values-header {
    text-align: center;
    margin-bottom: 5rem;
}

.ab-values-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-header-solid);
    line-height: 1.2;
}

.ab-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.ab-value-card {
    background-color: var(--color-white);
    padding: 3rem 2.5rem;
    border-top: 2px solid var(--color-accent);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.ab-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.ab-value-num {
    display: block;
    font-size: 4.5rem;
    font-weight: 700;
    color: rgba(184, 155, 114, 0.12);
    line-height: 1;
    margin-bottom: 1.2rem;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: -3px;
    transition: var(--transition-smooth);
}

.ab-value-card:hover .ab-value-num {
    color: rgba(184, 155, 114, 0.22);
}

.ab-value-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-header-solid);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.ab-value-body {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.85;
}

/* ----------------------------------------------------------
   SECTION 5 — NUMBERS
   ---------------------------------------------------------- */
.ab-numbers-section {
    padding: 8rem 5%;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.ab-numbers-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ab-numbers-title {
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--color-header-solid);
    line-height: 1.25;
}

.ab-numbers-row {
    max-width: 1300px;
    margin: 0 auto;
}

/* Override the hidden state on trust-item when used in ab-numbers-section
   so the ab-reveal observer drives the animation instead */
.ab-numbers-section .trust-item {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-slow);
}

.ab-numbers-section .trust-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------------------------------------
   SECTION 6 — CTA STRIP
   ---------------------------------------------------------- */
.ab-cta-strip {
    padding: 7rem 5%;
    background-color: var(--color-header-solid);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.ab-cta-strip::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(184, 155, 114, 0.08) 0%,
            transparent 70%);
    pointer-events: none;
}

.ab-cta-strip::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(184, 155, 114, 0.08) 0%,
            transparent 70%);
    pointer-events: none;
}

.ab-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.ab-cta-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

.ab-cta-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin-bottom: 2.8rem;
}

.ab-cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1rem;
}

/* ----------------------------------------------------------
   RESPONSIVE — 1024px
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
    .ab-hero-title {
        font-size: 4rem;
    }

    .ab-story-container {
        gap: 4rem;
    }

    .ab-story-title {
        font-size: 2.4rem;
    }

    .ab-vm-col {
        padding: 2.5rem 2.5rem;
    }

    .ab-vm-deco-num {
        font-size: 7rem;
    }

    .ab-values-title {
        font-size: 2.5rem;
    }

    .ab-cta-title {
        font-size: 2.5rem;
    }
}

/* ----------------------------------------------------------
   RESPONSIVE — 768px
   ---------------------------------------------------------- */
@media (max-width: 768px) {
    .ab-hero-title {
        font-size: 2.8rem;
    }

    .ab-hero-subtitle {
        font-size: 1.1rem;
    }

    .ab-story {
        padding: 5rem 5%;
    }

    .ab-story-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .ab-story-image {
        min-height: 360px;
    }

    .ab-story-image img {
        min-height: 360px;
    }

    /* In RTL on mobile, image comes first (top), text second */
    .ab-story-image {
        order: 1;
    }

    .ab-story-content {
        order: 2;
    }

    .ab-story-title {
        font-size: 2rem;
    }

    .ab-vm-section {
        padding: 5rem 5%;
    }

    .ab-vm-container {
        grid-template-columns: 1fr;
    }

    .ab-vm-divider {
        width: 80px;
        height: 1px;
        margin: 0 auto;
        background: linear-gradient(to right,
                transparent 0%,
                var(--color-accent) 20%,
                var(--color-accent) 80%,
                transparent 100%);
    }

    .ab-vm-col {
        padding: 2rem 1rem;
    }

    .ab-vm-deco-num {
        font-size: 6rem;
    }

    .ab-values-section {
        padding: 5rem 5%;
    }

    .ab-values-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .ab-values-title {
        font-size: 2.2rem;
    }

    .ab-numbers-section {
        padding: 5rem 5%;
    }

    .ab-numbers-title {
        font-size: 2rem;
    }

    .ab-cta-strip {
        padding: 5rem 5%;
    }

    .ab-cta-title {
        font-size: 2rem;
    }

    .ab-cta-subtitle {
        font-size: 1rem;
    }
}

/* ----------------------------------------------------------
   RESPONSIVE — 480px
   ---------------------------------------------------------- */
@media (max-width: 480px) {
    .ab-hero-title {
        font-size: 2.2rem;
    }

    .ab-hero-subtitle {
        font-size: 1rem;
    }

    .ab-hero-label {
        font-size: 0.75rem;
    }

    .ab-story-title {
        font-size: 1.7rem;
    }

    .ab-story-body {
        font-size: 1rem;
    }

    .ab-story-quote {
        font-size: 1rem;
    }

    .ab-vm-heading {
        font-size: 1.6rem;
    }

    .ab-values-title {
        font-size: 1.9rem;
    }

    .ab-value-card {
        padding: 2.2rem 1.8rem;
    }

    .ab-value-num {
        font-size: 3.5rem;
    }

    .ab-cta-title {
        font-size: 1.7rem;
    }

    .ab-numbers-title {
        font-size: 1.7rem;
    }
}

/* ----------------------------------------------------------
   ABOUT PAGE — Supplementary Classes
   ---------------------------------------------------------- */

/* Shared centered section header (Values, Numbers) */
.ab-section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.ab-section-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-header-solid);
    line-height: 1.2;
    margin-top: 0.5rem;
}

/* Numbers section inner wrapper */
.ab-numbers-inner {
    max-width: 1400px;
    margin: 0 auto;
}

/* Stats row — reuses .trust-container layout */
.ab-stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Story image inner wrapper */
.ab-story-img-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.ab-story-img-inner img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

/* Gold architectural accent corner on story image */
.ab-story-accent-corner {
    position: absolute;
    bottom: -22px;
    left: -22px;
    width: 160px;
    height: 160px;
    border-bottom: 2px solid var(--color-accent);
    border-left: 2px solid var(--color-accent);
    z-index: 0;
    pointer-events: none;
}

/* CTA strip label */
.ab-cta-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.2rem;
}

/* CTA decorative horizontal line */
.ab-cta-deco-line {
    width: 60px;
    height: 1px;
    background-color: rgba(184, 155, 114, 0.4);
    margin: 2rem auto;
}

/* Hero scroll line animation */
.ab-scroll-line {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    margin: 0 auto 0.4rem;
    animation: abScrollLine 2s ease-in-out infinite;
}

@keyframes abScrollLine {
    0% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: top;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: top;
    }
}

/* Fix hero scroll icon styling for Font Awesome chevron */
.ab-hero-scroll .fa-chevron-down {
    font-size: 0.85rem;
    color: var(--color-accent);
    animation: abScrollBounce 2s ease-in-out infinite;
}

/* Vision/Mission deco number — fix positioning for RTL */
.ab-vm-col {
    position: relative;
}

.ab-vm-deco-num {
    position: absolute;
    top: 0.5rem;
    right: 3.5rem;
    font-size: 9rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.035);
    line-height: 1;
    pointer-events: none;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: -4px;
    user-select: none;
    z-index: 0;
}

/* Responsive supplements */
@media (max-width: 1024px) {
    .ab-section-title {
        font-size: 2.6rem;
    }

    .ab-stats-row {
        gap: 0;
    }
}

@media (max-width: 768px) {
    .ab-section-header {
        margin-bottom: 3.5rem;
    }

    .ab-section-title {
        font-size: 2.2rem;
    }

    .ab-stats-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem 0.5rem !important;
        justify-content: center !important;
        align-items: start !important;
    }

    .ab-stats-row .trust-divider {
        display: none !important;
    }

    .ab-stats-row .trust-item {
        padding: 1rem 0.5rem !important;
        width: auto !important;
    }

    .ab-stats-row .trust-item .trust-value {
        font-size: 2.3rem !important;
        margin-bottom: 0.3rem !important;
        letter-spacing: -1px !important;
    }

    .ab-stats-row .trust-item .trust-value.text-value {
        font-size: 1.8rem !important;
        margin-bottom: 0.3rem !important;
    }

    .ab-stats-row .trust-item .accent-sign {
        font-size: 1.5rem !important;
    }

    .ab-stats-row .trust-item .trust-label {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }

    .ab-story-img-inner {
        min-height: 300px;
    }

    .ab-story-img-inner img {
        min-height: 300px;
    }

    .ab-vm-deco-num {
        font-size: 6rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .ab-section-title {
        font-size: 1.8rem;
    }

    .ab-vm-deco-num {
        font-size: 5rem;
    }
}

/* ----------------------------------------------------------
   SERVICES PAGE
   ---------------------------------------------------------- */
.srv-list-section {
    padding: 8rem 5%;
    background-color: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.srv-list-container {
    max-width: 1400px;
    margin: 0 auto;
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem 3rem;
}

.srv-card {
    background: transparent;
    border: none;
    box-shadow: none;
    position: relative;
    display: flex;
    flex-direction: column;
}

.srv-card:hover {
    transform: none;
    box-shadow: none;
}

.srv-card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 2.2rem;
}

.srv-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.srv-card:hover .srv-card-img {
    transform: scale(1.06);
}

.srv-card-img-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f0ede8;
}

.srv-card-content {
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.srv-card-title {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-header-solid);
    margin-bottom: 1.2rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.srv-card-desc {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.85;
    margin-bottom: 2.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.srv-card-footer {
    margin-top: auto;
}

.srv-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-header-solid);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--color-accent);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.srv-card-btn i {
    font-size: 0.85rem;
    color: var(--color-accent);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.srv-card:hover .srv-card-btn {
    color: var(--color-accent);
}

.srv-card:hover .srv-card-btn i {
    transform: translateX(-6px);
}

.srv-empty {
    text-align: center;
    padding: 5rem 0;
    font-size: 1.2rem;
    color: var(--color-text-light);
}

/* Make CTA strip seamless with background */
.srv-cta {
    background-color: var(--color-header-solid);
}

/* Responsive */
@media (max-width: 1024px) {
    .srv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .srv-list-section {
        padding: 5rem 5%;
    }

    .srv-grid {
        grid-template-columns: 1fr;
    }

    .srv-card-img-wrapper {
        height: 250px;
    }

    /* Trust Bar Mobile Optimization (2 per row & smaller text) */
    .trust-bar {
        padding: 2rem 1rem !important;
    }

    .trust-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem 0.5rem !important;
        justify-content: center !important;
        align-items: start !important;
    }

    .trust-divider {
        display: none !important;
    }

    .trust-item {
        padding: 1rem 0.5rem !important;
    }

    .trust-value {
        font-size: 2.3rem !important;
        margin-bottom: 0.3rem !important;
        letter-spacing: -1px !important;
    }

    .trust-value.text-value {
        font-size: 1.8rem !important;
        margin-bottom: 0.3rem !important;
    }

    .accent-sign {
        font-size: 1.5rem !important;
    }

    .trust-label {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }

    /* Before & After Mobile Optimization (Stack vertically) */
    .ba-section {
        padding: 2rem 1.5rem 5% !important;
    }

    .ba-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .ba-slider-container {
        height: 280px !important;
    }
}