/* ==========================================================================
   Intereal Theme - Premium Architecture & Interior Design Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN SYSTEM & VARIABLES
   -------------------------------------------------------------------------- */
:root {
    /* Required Brand Tokens */
    --primary-color: #0A6F92;
    --secondary-color: #18A999;
    --accent-color: #F4B400;
    --background: #fefefe;
    --text: #1A202C;
    --white: #ffffff;
    --radius: 50px;
    --radius-card: 12px;

    /* Functional Token Mappings */
    --black: #1A202C;
    --cream-light: #F8FAFC;
    --muted: #4A5568;
    --border: rgba(26, 32, 44, 0.08);
    --border-light: rgba(255, 255, 255, 0.15);
    --overlay: rgba(26, 32, 44, 0.5);
    --overlay-dark: rgba(26, 32, 44, 0.75);

    /* Header & Navigation */
    --nav-bg: var(--black);
    --nav-text: var(--white);
    --nav-text-hover: var(--primary-color);
    --nav-text-active: var(--accent-color);

    /* Buttons & Indicators */
    --btn-bg: var(--primary-color);
    --btn-text: var(--white);
    --btn-arrow-bg: var(--white);
    --btn-arrow-color: var(--primary-color);
    --btn-arrow-hover-bg: var(--secondary-color);
    --btn-arrow-hover-color: var(--white);

    /* CTA Buttons */
    --btn-cta-bg: var(--primary-color);
    --btn-cta-text: var(--white);
    --btn-cta-arrow-bg: var(--white);
    --btn-cta-arrow-color: var(--primary-color);

    /* UI Indicator Colors */
    --dot-color: rgba(10, 111, 146, 0.3);
    --dot-color-active: var(--accent-color);

    /* Shadows */
    --shadow-navbar: 0 4px 15px rgba(26, 32, 44, 0.08);
    --shadow-navbar-sticky: 0 10px 30px rgba(26, 32, 44, 0.15);
    --shadow-btn: 0 6px 20px rgba(10, 111, 146, 0.25);
    --shadow-btn-hover: 0 10px 25px rgba(24, 169, 153, 0.35);
    --shadow-card: 0 8px 30px rgba(26, 32, 44, 0.04);
    --shadow-card-hover: 0 15px 40px rgba(26, 32, 44, 0.1);

    /* Typography */
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* --------------------------------------------------------------------------
   2. GLOBAL BASE & RESET
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    padding: 24px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    body {
        padding: 12px;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* SEO Utilities */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Base Layout Containers */
.container-custom {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.bg-cream {
    background-color: var(--cream-light);
}

/* Text elements styling */
.text-black {
    color: var(--secondary-color);
}

.text-gold {
    color: var(--primary-color) !important;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 60px);
    line-height: 1.05;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.section-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--muted);
    max-width: 600px;
    margin-bottom: 40px;
}

.section-paragraph {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 24px;
}

.section-paragraph-muted {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: rgba(27, 27, 27, 0.6);
}

/* --------------------------------------------------------------------------
   3. LOOMYWEB PLUGIN SLOTS
   -------------------------------------------------------------------------- */
[data-slot]:empty {
    display: none !important;
}

/* --------------------------------------------------------------------------
   4. NAVIGATION HEADER
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 48px;
    left: 0;
    width: 100%;
    padding: 0 48px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@media (max-width: 1024px) {
    .site-header {
        top: 36px;
        padding: 0 36px;
    }
}

@media (max-width: 768px) {
    .site-header {
        top: 24px;
        padding: 0 24px;
    }
}

.navbar-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--background);
    border-radius: var(--radius);
    padding: 16px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px var(--shadow-navbar);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

/* Sticky Shrinking Navbar */
.site-header.sticky {
    top: 24px;
}

@media (max-width: 768px) {
    .site-header.sticky {
        top: 12px;
    }
}

.site-header.sticky .navbar-wrapper {
    padding: 10px 24px;
    box-shadow: 0 15px 45px var(--shadow-navbar-sticky);
}

/* Brand Logo */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1010;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: height 0.4s ease;
}

.site-header.sticky .logo-img {
    height: 60px;
}

/* Desktop Menu Layout */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
}

.nav-item-wrapper {
    position: relative;
    padding: 12px 0;
}

.nav-item {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: var(--nav-text-hover);
}

/* Dropdown Arrow indicator */
.arrow-down {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.nav-item-wrapper:hover .nav-item .arrow-down {
    transform: rotate(225deg);
}

/* Desktop Dropdown Panel */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--dropdown-bg);
    border: 1px solid var(--dropdown-border);
    border-radius: 20px;
    padding: 12px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 15px 40px var(--shadow-navbar-sticky);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 100;
}

.nav-item-wrapper:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 24px;
    color: var(--dropdown-text);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background-color: var(--dropdown-hover-bg);
    color: var(--primary-color);
}

/* Header Right Actions */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1010;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--black);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }
}

.menu-toggle.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0.5);
}

.menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    border-radius: 30px;
    margin-top: 12px;
    padding: 24px;
    box-shadow: 0 20px 50px var(--shadow-navbar-sticky);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 999;
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .mobile-nav {
        display: block;
    }
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.mobile-nav-item,
.mobile-nav-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-nav-item:hover,
.mobile-nav-toggle-btn:hover,
.mobile-nav-item.active {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
}

.mobile-submenu a {
    display: block;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-submenu a:hover {
    color: var(--primary-color);
}

.mobile-nav-group.open .mobile-submenu {
    max-height: 200px;
    margin-top: 4px;
    margin-bottom: 8px;
}

.mobile-nav-group.open .mobile-nav-toggle-btn .arrow-down {
    transform: rotate(225deg);
}

.mobile-nav-footer {
    padding-top: 16px;
    border-top: 1px solid var(--dropdown-border);
}

/* --------------------------------------------------------------------------
   5. PREMIUM BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 12px 20px 12px 28px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--shadow-btn);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--btn-arrow-bg);
    color: var(--btn-arrow-color);
    margin-left: 14px;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-arrow svg {
    transition: transform 0.3s ease;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-hover);
}

.btn:hover .btn-arrow {
    background-color: var(--btn-arrow-hover-bg);
    color: var(--background);
}

.btn:hover .btn-arrow svg {
    transform: translate(2px, -2px);
}

/* Button Variants */

/* CTA Buttons */
.btn-header,
.btn-hero,
.btn-mobile-cta,
.btn-sub-cta,
.btn-promo,
.btn-footer-cta,
.btn-about {
    background-color: var(--primary-color);
    color: var(--btn-cta-text);
}

.btn-header .btn-arrow,
.btn-hero .btn-arrow,
.btn-mobile-cta .btn-arrow,
.btn-sub-cta .btn-arrow,
.btn-promo .btn-arrow,
.btn-footer-cta .btn-arrow,
.btn-about .btn-arrow {
    background-color: var(--btn-cta-arrow-bg);
    color: var(--btn-cta-arrow-color);
}

.btn-header:hover,
.btn-hero:hover,
.btn-mobile-cta:hover,
.btn-sub-cta:hover,
.btn-promo:hover,
.btn-footer-cta:hover,
.btn-about:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-header:hover .btn-arrow,
.btn-hero:hover .btn-arrow,
.btn-mobile-cta:hover .btn-arrow,
.btn-sub-cta:hover .btn-arrow,
.btn-promo:hover .btn-arrow,
.btn-footer-cta:hover .btn-arrow,
.btn-about:hover .btn-arrow {
    background-color: var(--white);
    color: var(--secondary-color);
}

.btn-header {
    padding: 8px 8px 8px 24px;
    font-size: 12px;
}

@media (max-width: 1024px) {
    .btn-header {
        display: none;
    }
}

.btn-hero {
    padding: 14px 14px 14px 32px;
    font-size: 13px;
}

.btn-mobile-cta {
    padding: 12px 12px 12px 28px;
    font-size: 13px;
    width: 100%;
}

.btn-about,
.btn-services-view,
.btn-portfolio-all,
.btn-blog-all {
    padding: 12px 12px 12px 28px;
    font-size: 13px;
}

.btn-sub-cta,
.btn-promo {
    padding: 12px 12px 12px 28px;
    font-size: 13px;
}

.btn-footer-cta {
    padding: 14px 14px 14px 32px;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* --------------------------------------------------------------------------
   6. HERO BANNER
   -------------------------------------------------------------------------- */
.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.main-content-subpage {
    flex-grow: 1;
}

.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 48px);
    min-height: 650px;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--secondary-color);
    display: flex;
    align-items: flex-end;
}

@media (max-width: 768px) {
    .hero-section {
        height: calc(100vh - 24px);
        min-height: 550px;
    }
}

.hero-slides-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
    animation: panScale 25s infinite alternate ease-in-out;
}

@keyframes panScale {
    0% {
        transform: scale(1.03) translate(0, 0);
    }

    100% {
        transform: scale(1.10) translate(0.5%, -0.5%);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 2;
}

.hero-content-container {
    position: relative;
    width: 100%;
    z-index: 3;
    padding: 80px;
    pointer-events: none;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: end;
}

.hero-left-col,
.hero-right-col {
    pointer-events: auto;
}

@media (max-width: 1024px) {
    .hero-content-container {
        padding: 48px;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-content-container {
        padding: 36px 24px;
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6.2vw, 84px);
    line-height: 0.95;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
}

.hero-desc {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    max-width: 460px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 80px;
    right: 80px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

@media (max-width: 1024px) {
    .slider-dots {
        bottom: 48px;
        right: 48px;
    }
}

@media (max-width: 900px) {
    .slider-dots {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 24px;
        padding-left: 24px;
        padding-bottom: 24px;
        justify-content: flex-start;
    }
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--dot-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: var(--dot-color-active);
}

/* --------------------------------------------------------------------------
   8. SUBPAGE HERO
   -------------------------------------------------------------------------- */
.subpage-hero-section {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: var(--radius);
    background-image: url('../images/1.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 140px;
    /* Offset sticky header */
}

@media (max-width: 768px) {
    .subpage-hero-section {
        height: 280px;
        margin-top: 100px;
    }
}

.subpage-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-dark);
    z-index: 1;
}

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

.subpage-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5.5vw, 64px);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.1;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs .separator {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumbs .current {
    color: var(--primary-color);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   9. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-flex-layout {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 1024px) {
    .about-flex-layout {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .about-center-col {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-flex-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-decor-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.section-paragraph-secondary {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Stats Block */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 36px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.stat-card {
    text-align: left;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 44px);
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 6px;
    font-weight: 400;
}

.stat-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About subpage layout */
.about-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 991px) {
    .about-grid-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.about-img-layout {
    position: relative;
    padding-bottom: 60px;
    padding-right: 60px;
}

.about-img-main-box {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card-hover);
}

.about-img-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-img-secondary-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 240px;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 8px solid var(--background);
    box-shadow: var(--shadow-card-hover);
}

.about-img-secondary {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge-layout {
    position: absolute;
    top: 40px;
    left: -30px;
    background-color: var(--secondary-color);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    color: var(--white);
    min-width: 130px;
}

.about-experience-badge-layout .badge-number {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--primary-color);
    line-height: 1;
    display: block;
}

.about-experience-badge-layout .badge-text {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

.about-director-note {
    border-left: 4px solid var(--primary-color);
    padding-left: 24px;
    margin-top: 30px;
}

.director-note-text {
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 8px;
}

.director-note-author {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
}

/* --------------------------------------------------------------------------
   10. SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.services-header-left {
    max-width: 50%;
}

.services-header-right {
    max-width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-paragraph-header {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 24px;
}

@media (max-width: 900px) {
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .services-header-left,
    .services-header-right {
        max-width: 100%;
    }
}

/* Grid of Service cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.service-card {
    position: relative;
    height: 380px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.5s ease;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    transition: background 0.5s ease;
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 3;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 400;
}

.service-card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

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

.service-card:hover .service-card-desc {
    max-height: 80px;
    opacity: 1;
}

.service-card:hover .service-card-btn {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotate(45deg);
}

/* Services subpage list */
.services-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

@media (max-width: 991px) {
    .services-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-list-grid {
        grid-template-columns: 1fr;
    }
}

.service-detail-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-num-label {
    font-family: var(--font-heading);
    font-size: 36px;
    color: rgba(182, 138, 87, 0.2);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}

.service-title-text {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-desc-text {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-detail-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-detail-link .link-arrow {
    transition: transform 0.3s ease;
}

.service-detail-link:hover .link-arrow {
    transform: translateX(5px);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-color);
}

/* --------------------------------------------------------------------------
   11. PORTFOLIO & PROJECTS
   -------------------------------------------------------------------------- */
.portfolio-header {
    margin-bottom: 60px;
}

.projects-list-layout {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.project-block {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.project-block.reverse {
    grid-template-columns: 0.8fr 1.2fr;
}

@media (max-width: 991px) {

    .project-block,
    .project-block.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.project-media-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.project-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.project-grid-wrap-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.project-grid-wrap-2 .project-img {
    height: 380px;
    border-radius: 20px;
}

.project-info-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project-category {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.project-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.project-desc {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.65;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-bottom: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
}

.project-readmore-btn {
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 4px;
}

.project-readmore-btn:hover {
    color: var(--primary-color);
}

.portfolio-view-all {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.filter-btn {
    background: none;
    border: 1px solid var(--border);
    padding: 10px 24px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Subpage grid layout */
.projects-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .projects-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-card-item {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    cursor: pointer;
}

.portfolio-card-img-wrap {
    height: 280px;
    overflow: hidden;
}

.portfolio-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card-info {
    padding: 30px;
}

.portfolio-card-cat {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.portfolio-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.portfolio-card-loc {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 16px;
}

.portfolio-card-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.portfolio-card-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-color);
}

.portfolio-card-item:hover .portfolio-card-img {
    transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   12. PROCESS SECTION
   -------------------------------------------------------------------------- */
.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-header .section-desc {
    margin-left: auto;
    margin-right: auto;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-center-col {
        order: -1;
    }
}

.process-side-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-card {
    background-color: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.process-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.process-num {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-color);
    line-height: 1;
}

.process-icon {
    width: 38px;
    height: 38px;
    background-color: var(--cream-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-title-card {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-desc-card {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.process-center-col {
    display: flex;
    justify-content: center;
}

.process-image-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card-hover);
    max-width: 320px;
    width: 100%;
}

.process-middle-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-color);
}

/* --------------------------------------------------------------------------
   13. PROMOTIONAL CTA
   -------------------------------------------------------------------------- */
.promo-box {
    background-color: var(--secondary-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

@media (max-width: 900px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }

    .promo-right {
        order: -1;
    }
}

.promo-left {
    padding: 80px;
    color: var(--white);
}

@media (max-width: 768px) {
    .promo-left {
        padding: 40px 30px;
    }
}

.promo-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 54px);
    line-height: 1.05;
    margin-bottom: 24px;
    font-weight: 400;
}

.promo-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.65;
}

.promo-bullets {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.promo-img-wrap {
    height: 100%;
    min-height: 480px;
}

.promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --------------------------------------------------------------------------
   14. WHY CHOOSE US
   -------------------------------------------------------------------------- */
.whychoose-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 991px) {
    .whychoose-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.whychoose-left {
    position: relative;
}

.whychoose-image-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card-hover);
}

.whychoose-main-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.whychoose-experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 24px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(182, 138, 87, 0.3);
    text-align: center;
}

.whychoose-experience-badge .badge-num {
    font-family: var(--font-heading);
    font-size: 38px;
    line-height: 1;
    margin-bottom: 4px;
    font-weight: 400;
}

.whychoose-experience-badge .badge-lbl {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.whychoose-desc {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 36px;
}

.whychoose-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 580px) {
    .whychoose-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.feature-item-box {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--cream-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text .feature-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-text .feature-desc-text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   15. TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.testimonials-header-left {
    max-width: 50%;
}

.testimonials-header-right {
    max-width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .testimonials-header-left,
    .testimonials-header-right {
        max-width: 100%;
    }
}

.testimonials-slider-container {
    width: 100%;
}



.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.testimonial-content-split {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-media {
    height: 220px;
    overflow: hidden;
}

.testimonial-project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 72px;
    color: var(--primary-color);
    line-height: 0.3;
    margin-bottom: 24px;
    display: block;
}

.testimonial-quote {
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted);
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-author .author-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-author .author-title {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-color);
}

/* --------------------------------------------------------------------------
   16. BLOG SECTION
   -------------------------------------------------------------------------- */
.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-header .section-desc {
    margin-left: auto;
    margin-right: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
}

.blog-image-wrap {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.blog-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
}

.blog-cat {
    align-self: flex-start;
    font-size: 10px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 26px;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 400;
}

.blog-card-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.blog-read-link {
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-read-link svg {
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.blog-card:hover .blog-card-img {
    transform: scale(1.08);
}

.blog-card:hover .blog-read-link {
    color: var(--primary-color);
}

.blog-card:hover .blog-read-link svg {
    transform: translate(2px, -2px);
}

.blog-footer-btn {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.page-num.active,
.page-num:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* --------------------------------------------------------------------------
   17. SYSTEM FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--primary-color);
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    color: var(--background);
    padding: 80px 0 40px 0;
    margin-top: auto;
    /* Push to bottom */
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0 30px 0;
    }
}

.footer-cta-area {
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.footer-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
    margin-bottom: 16px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
}

.footer-cta-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 36px auto;
}

.footer-middle-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

@media (max-width: 900px) {
    .footer-middle-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-col-brand .footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 24px;
}

.footer-col-brand .footer-desc {
    font-size: 14px;
    color: var(--background);
    line-height: 1.65;
}

.footer-col-heading {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links-list a:hover {
    color: var(--accent-color);
    padding-left: 4px;
}

.footer-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 13px;
    color: var(--white);
}

.footer-info-list strong {
    color: var(--white);
}

.footer-info-list a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-info-list a:hover {
    color: var(--accent-color);
}

.footer-bottom-bar {
    border-top: 1px solid var(--border-light);
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--border-light);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}



.footer-credits {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-credits a {
    color: var(--primary-color);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   18. ABOUT SUBPAGE - VALUE CARDS, LEADERSHIP & PROCESS FLOWS
   -------------------------------------------------------------------------- */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

.mv-card {
    background-color: var(--white);
    padding: 48px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.mv-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.mv-card-text {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--cream-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.value-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card);
}

/* Team section */
.team-member-card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.team-card-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

@media (max-width: 768px) {
    .team-card-inner {
        grid-template-columns: 1fr;
    }
}

.team-image-box {
    height: 100%;
    min-height: 320px;
}

.team-member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-text-box {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-member-role {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.team-member-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.team-member-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 24px;
}

.team-member-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.t-stat .t-stat-lbl {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted);
    display: block;
    margin-bottom: 4px;
}

.t-stat .t-stat-val {
    font-size: 16px;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   19. GALLERY MASONRY GRID
   -------------------------------------------------------------------------- */
.gallery-photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .gallery-photos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-photos-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-photo-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    aspect-ratio: 4/5;
    cursor: pointer;
}

.gallery-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-cat-lbl {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.gallery-title-lbl {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.gallery-photo-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-photo-item:hover .gallery-info-overlay {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   20. FORMS & INPUT CONTROLS
   -------------------------------------------------------------------------- */
.contact-flex-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}

@media (max-width: 991px) {
    .contact-flex-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.contact-info-list-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
}

.info-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--cream-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item-text h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.info-item-text p,
.info-item-text a {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.info-item-text a:hover {
    color: var(--primary-color);
}

/* Form Styles */
.contact-form-column {
    background-color: var(--white);
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

@media (max-width: 580px) {
    .contact-form-column {
        padding: 30px 20px;
    }
}

.contact-form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.lead-form-element {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 580px) {
    .form-row-double {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.form-field-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field-wrap label {
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input-text,
.form-input-select,
.form-input-textarea {
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background-color: var(--cream-light);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--secondary-color);
    outline: none;
    transition: all 0.3s ease;
}

.form-input-text:focus,
.form-input-select:focus,
.form-input-textarea:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(182, 138, 87, 0.06);
}

.form-input-select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.form-field-wrap {
    position: relative;
}

.form-status-msg {
    font-size: 14px;
    font-weight: 600;
}

.btn-contact-submit {
    padding: 14px 0;
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
}

/* Map block */
.map-container-placeholder {
    height: 480px;
    border-radius: var(--radius);
    background-color: #e2ded8;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background-image: url('../images/17.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 320px;
    text-align: center;
    border: 1px solid var(--border);
    z-index: 2;
}

.map-overlay-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.map-overlay-card p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 16px;
}

.map-directions-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Newsletter local form */
.newsletter-form-local {
    display: flex;
    gap: 10px;
    max-width: 500px;
    width: 100%;
    margin: 24px auto 0 auto;
}

@media (max-width: 580px) {
    .newsletter-form-local {
        flex-direction: column;
    }
}

.newsletter-input {
    flex-grow: 1;
    padding: 14px 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--white);
    outline: none;
    font-family: var(--font-body);
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-newsletter {
    padding: 14px 32px;
    font-size: 13px;
    background-color: var(--primary-color);
    color: var(--white);
}

/* --------------------------------------------------------------------------
   21. LIGHTBOX MODAL / INTERACTIVE DETAILS DIALOG
   -------------------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 24px;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background-color: var(--white);
    max-width: 900px;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.open .modal-box {
    transform: scale(1);
}

@media (max-width: 768px) {
    .modal-box {
        grid-template-columns: 1fr;
        max-height: calc(100vh - 48px);
        overflow-y: auto;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 20px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.modal-img-wrap {
    height: 100%;
    min-height: 400px;
    background-color: #222;
}

.modal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body {
    padding: 48px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 580px) {
    .modal-body {
        padding: 30px 20px;
    }
}

.modal-cat {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.modal-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.modal-loc {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
}

.modal-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.modal-detail-item span {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted);
    display: block;
    margin-bottom: 4px;
}

.modal-detail-item h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Lightbox specific styling (for gallery modal) */
.lightbox-box {
    grid-template-columns: 1fr;
    max-width: 700px;
    background-color: transparent;
    box-shadow: none;
}

.lightbox-box .modal-img-wrap {
    height: auto;
    max-height: 70vh;
    border-radius: 20px;
    overflow: hidden;
}

.lightbox-caption-bar {
    padding: 20px 0;
    text-align: center;
}

.lightbox-cat {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: block;
}

.lightbox-title {
    font-size: 18px;
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   22. SCROLL ENTRANCE REVEAL EFFECTS
   -------------------------------------------------------------------------- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-reveal.fade-left {
    transform: translateX(-40px);
}

.scroll-reveal.fade-right {
    transform: translateX(40px);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 {
    transition-delay: 0.15s !important;
}

.delay-2 {
    transition-delay: 0.3s !important;
}

.delay-3 {
    transition-delay: 0.45s !important;
}

/* --------------------------------------------------------------------------
   23. FAQ ACCORDION STYLES
   -------------------------------------------------------------------------- */
.faq-accordion-wrapper {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-accordion-item {
    background-color: var(--white);
    border-radius: 15px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-header {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
    transition: color 0.3s ease;
}

.faq-accordion-header:hover {
    color: var(--primary-color) !important;
}

.faq-accordion-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.faq-accordion-icon::before,
.faq-accordion-icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    transition: transform 0.3s ease;
}

/* Horizontal line */
.faq-accordion-icon::before {
    top: 7px;
    left: 0;
    width: 100%;
    height: 2px;
}

/* Vertical line */
.faq-accordion-icon::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 100%;
}

.faq-accordion-item.open .faq-accordion-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-accordion-item.open .faq-accordion-icon::before {
    transform: rotate(180deg);
}

.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-accordion-body p {
    padding: 0 30px 24px 30px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

.faq-accordion-item.open {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card-hover);
}

/* ==========================================================================
   24. ABOUT PAGE SECTIONS STYLING
   ========================================================================== */

/* Background Outline Text Utility */
.section-outline-bg {
    position: relative;
    overflow: hidden;
}

.outline-bg-text {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: clamp(80px, 12vw, 160px);
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(27, 27, 27, 0.04);
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    letter-spacing: 4px;
}

.outline-bg-text.light {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
}

/* About Company Section */
.about-company-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-company-content {
    position: relative;
}

.about-company-layout h2 {
    font-size: clamp(32px, 4.5vw, 54px);
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 400;
}

.about-company-layout h2 span {
    color: var(--primary-color);
}

.about-company-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-signature-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.about-signature-svg {
    width: 140px;
    height: 60px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.about-signature-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
}

.about-signature-role {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}

.about-cta-row {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-phone-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-phone-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--shadow-btn);
    transition: transform 0.3s ease;
}

.about-phone-icon:hover {
    transform: scale(1.05);
}

.about-phone-details {
    display: flex;
    flex-direction: column;
}

.about-phone-lbl {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    font-weight: 600;
}

.about-phone-num {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
}

.about-company-media {
    position: relative;
    padding-bottom: 40px;
}

.about-media-box {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-card-hover);
}

.about-media-box img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.about-media-offset-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    width: calc(100% - 40px);
    height: calc(100% - 20px);
    border: 1px solid var(--primary-color);
    border-radius: var(--radius);
    z-index: 1;
    pointer-events: none;
}

.about-media-badge {
    position: absolute;
    bottom: 0;
    right: -30px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    max-width: 280px;
    z-index: 3;
}

.about-badge-text {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.about-badge-author {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

/* Partners Logos Section */
.partners-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 0;
    background-color: var(--background);
}

.partners-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partners-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.partners-logos {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner-logo-item {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 400;
    color: rgba(27, 27, 27, 0.2);
    letter-spacing: 2px;
    text-transform: uppercase;
    user-select: none;
    transition: color 0.3s ease;
}

.partner-logo-item:hover {
    color: var(--primary-color);
}

/* Dark Work Process Section */
.process-dark-section {
    background-color: var(--secondary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.process-dark-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.process-dark-card {
    position: relative;
    padding: 40px 30px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    transition: all 0.4s ease;
}

.process-dark-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.04);
}

.process-dark-num {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.25;
    margin-bottom: 20px;
    display: block;
    transition: opacity 0.3s ease;
}

.process-dark-card:hover .process-dark-num {
    opacity: 1;
}

.process-dark-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.process-dark-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-us-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.why-us-media-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-us-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-us-collage img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.why-us-collage img:nth-child(even) {
    transform: translateY(20px);
}

/* Progress Bars */
.progress-bars-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.progress-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-color);
}

.progress-bar-bg {
    width: 100%;
    height: 6px;
    background-color: rgba(27, 27, 27, 0.06);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Features Grid */
.why-us-content-col h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.15;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 400;
}

.why-us-content-col h2 span {
    color: var(--primary-color);
}

.why-us-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.why-us-feature-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.why-us-feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
}

.why-us-feature-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.why-us-feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.why-us-feature-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* Testimonials Reviews Section */
.testimonials-reviews-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.testimonials-reviews-info h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.15;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 400;
}

.testimonials-reviews-info h2 span {
    color: var(--primary-color);
}

.testimonials-reviews-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.testimonial-review-card {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-review-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.testimonial-review-quote-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonial-review-text {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-review-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
}

.testimonial-review-author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

.testimonial-review-author-role {
    font-size: 12px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
}

/* About Team Section */
.team-section-about-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.team-section-about-title {
    max-width: 60%;
}

.team-section-about-title h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.15;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 400;
}

.team-section-about-title h2 span {
    color: var(--primary-color);
}

.team-section-about-desc {
    font-size: 14px;
    color: var(--muted);
    max-width: 500px;
}

.team-section-about-btn {
    flex-shrink: 0;
}

.team-section-about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.team-member-about-card {
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--white);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.team-member-about-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-5px);
}

.team-member-about-img-wrap {
    height: 340px;
    overflow: hidden;
    position: relative;
}

.team-member-about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-member-about-card:hover .team-member-about-img-wrap img {
    transform: scale(1.05);
}

.team-member-about-info {
    padding: 24px;
    text-align: center;
}

.team-member-about-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.team-member-about-card:hover .team-member-about-name {
    color: var(--primary-color);
}

.team-member-about-role {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Appointment CTA Strip Section */
.cta-strip-section {
    padding: 40px 0;
    background-color: var(--cream-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-strip-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-strip-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-strip-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(182, 138, 87, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-strip-info {
    display: flex;
    flex-direction: column;
}

.cta-strip-title {
    font-size: 14px;
    color: var(--muted);
    font-weight: 600;
}

.cta-strip-tel-link {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-strip-tel-link:hover {
    color: var(--primary-color);
}

.cta-strip-right {
    display: flex;
    align-items: center;
}

/* Responsive adjustments for About Page sections */
@media (max-width: 1024px) {
    .about-company-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-us-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .team-section-about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .testimonials-reviews-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-dark-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .partners-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .partners-logos {
        justify-content: center;
        gap: 30px;
    }

    .cta-strip-layout {
        flex-direction: column;
        align-items: flex-start;
    }

    .why-us-collage {
        grid-template-columns: 1fr;
    }

    .why-us-collage img:nth-child(even) {
        transform: none;
    }
}

@media (max-width: 580px) {
    .team-section-about-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-reviews-cards {
        grid-template-columns: 1fr;
    }

    .about-cta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .about-media-badge {
        position: relative;
        right: 0;
        margin-top: 20px;
        max-width: 100%;
    }

    .why-us-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* --- WHY CHOOSE US V2 --- */
.why-us-v2-section {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .why-us-v2-section {
        margin-left: -12px;
        margin-right: -12px;
        padding-left: 12px;
        padding-right: 12px;
    }
}

.why-us-v2-watermark {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15vw;
    font-family: 'Bebas Neue', cursive;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

.why-us-v2-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
    align-items: center;
}

/* Left Images */
.why-us-v2-left {
    position: relative;
    padding-bottom: 80px;
}

.why-us-v2-images {
    display: flex;
    gap: 20px;
    position: relative;
}

.why-us-v2-images .img-1 {
    width: 45%;
    height: 450px;
    object-fit: cover;
}

.why-us-v2-images .img-2 {
    width: 55%;
    height: 500px;
    object-fit: cover;
    margin-top: 60px;
}

/* Progress Card */
.why-us-v2-progress-card {
    position: absolute;
    bottom: 0;
    right: 5%;
    background-color: #232323;
    padding: 30px 40px;
    width: 320px;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.progress-item {
    margin-bottom: 20px;
}

.progress-item:last-child {
    margin-bottom: 0;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.progress-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.progress-percent {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.progress-bar-wrap {
    background-color: rgba(255, 255, 255, 0.1);
    height: 4px;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    background-color: var(--primary-color);
    height: 100%;
    border-radius: 2px;
}

/* Right Content */
.why-us-v2-right {
    padding-top: 20px;
}

.text-gold {
    color: var(--primary-color);
}

.why-us-v2-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    padding-top: 30px;
}

.wu-feature-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.wu-feature-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.wu-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.wu-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.wu-text p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
    .why-us-v2-layout {
        grid-template-columns: 1fr;
    }

    .why-us-v2-images .img-1 {
        height: 350px;
    }

    .why-us-v2-images .img-2 {
        height: 400px;
    }

    .why-us-v2-progress-card {
        right: 0;
        width: 90%;
        max-width: 320px;
    }

    .why-us-v2-features {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   14. TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonials-section {
    background-color: var(--white);
    padding: 100px 0;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.testimonials-header-left {
    flex: 1;
}

.testimonials-header-left .section-subtitle {
    display: block;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
}

.testimonials-header-left .section-title {
    font-size: 48px;
    line-height: 1.1;
    margin: 0;
}

.testimonials-header-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
}

.testimonials-header-right .section-desc {
    margin-bottom: 0;
    max-width: 480px;
    font-size: 15px;
    line-height: 1.6;
}

/* Testimonials Grid Layout */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Premium Card Upgrade */
.testimonials-grid .testimonial-card {
    background-color: var(--white);
    border-radius: 28px; /* 24-30px border radius */
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02); /* soft shadow */
    border: 1px solid var(--border);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    height: 100%; /* Equal height */
    justify-content: space-between;
}

.testimonials-grid .testimonial-card:hover {
    transform: translateY(-6px); /* slight lift */
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07); /* stronger shadow */
    border-color: var(--primary-color);
}

.testimonial-stars {
    color: #F4B400; /* Gold */
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    gap: 4px;
}

.testimonial-quote-icon {
    color: var(--primary-color);
    opacity: 0.15;
    margin-bottom: 20px;
    display: block;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
}

.testimonial-client-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial-client-title {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    /* Mobile horizontal auto-scroll slider layouts */
    .services-grid, .testimonials-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-behavior: smooth !important;
        scrollbar-width: none !important; /* Hide scrollbar Firefox */
        padding: 10px 5px 20px 5px !important; /* Allow room for card shadows/glow */
        margin-left: -15px !important;
        margin-right: -15px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .services-grid::-webkit-scrollbar, .testimonials-grid::-webkit-scrollbar {
        display: none !important; /* Hide scrollbar Chrome/Safari */
    }
    
    .services-grid .service-card, .testimonials-grid .testimonial-card {
        flex: 0 0 85% !important; /* Card takes 85% width, showing next card preview */
        max-width: 85% !important;
        scroll-snap-align: center !important; /* Snap to center of viewport */
        margin-right: 20px !important;
    }
    
    .services-grid .service-card:last-child, .testimonials-grid .testimonial-card:last-child {
        margin-right: 0 !important;
    }
}