/*
Theme Name: Memana Builders
Theme URI: https://creativemines.org/clean-block
Description: Premium builders theme styled for Memana Builders.
Author: Antigravity
Author URI: https://google.com
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-background, custom-colors, custom-menu, translation-ready

Designed with a premium minimal aesthetic, dark slate, bright accent orange lines, white geometric layouts, overlapping image grids, and smooth transitions.
*/

/* --- CSS Reset & Global Styling --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #111111;
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

button {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    outline: none;
}

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

/* --- Theme Variables --- */
:root {
    --accent-orange: #c82542; /* Crimson brand color */
    --accent-orange-hover: #a81c34;
    --dark-bg: #111111;
    --light-gray-bg: #f8f8f8;
    --text-dark: #111111;
    --text-muted: #555555;
    --border-light: #e5e5e5;
    --border-dark: #222222;
    --deals-green: #a7f522;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.font-outfit {
    font-family: 'Syne', sans-serif;
}

.font-expanded {
    font-family: 'Syncopate', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

/* --- Top Deals Bar --- */
.top-deals-bar {
    background-color: var(--deals-green);
    color: #111111;
    font-size: 13px;
    padding: 10px 0;
    font-weight: 500;
    position: relative;
    z-index: 1100;
}

.top-deals-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    padding-right: 40px; /* Leave space for close button */
}

.deals-tag .bold-text {
    font-weight: 800;
}

.buy-now-link {
    background-color: #111111;
    color: #ffffff;
    padding: 3px 12px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.buy-now-link:hover {
    opacity: 0.9;
}

.close-deals-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    opacity: 0.6;
}

.close-deals-btn:hover {
    opacity: 1;
}

/* --- Header & Navigation --- */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.site-logo a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #c82542; /* Primary brand color */
    font-family: 'Syncopate', sans-serif;
}

.builders-gray {
    color: #666666;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
}

.header-logo-img {
    height: 52px;
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 52px;
    width: auto;
    display: block;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-menu a {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111111;
    position: relative;
    padding-bottom: 4px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-orange);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-orange);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.search-btn {
    color: #111111;
}

.search-icon {
    width: 20px;
    height: 20px;
}

/* --- Header Actions --- */
.header-enquire-btn {
    background-color: var(--accent-orange);
    color: #ffffff !important;
    padding: 12px 24px;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 1px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.header-enquire-btn:hover {
    background-color: #111111;
}

.header-enquire-btn .arrow-symbol {
    font-size: 11px;
    font-weight: 800;
}

.header-whatsapp-btn {
    background-color: var(--accent-orange);
    color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.header-whatsapp-btn:hover {
    background-color: #111111;
    transform: scale(1.05);
}

.whatsapp-icon {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

/* --- 1. Hero Section Carousel --- */
.hero-carousel-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: right center; /* Focus modern building structure to the right */
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    padding-bottom: 140px; /* Offset vertical centering to clear the bottom banner */
    box-sizing: border-box;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.mobile-hero-img {
    display: none;
}

.hero-slide-white-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,1) 35%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 75%);
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-carousel-section {
        height: auto !important;
        min-height: auto !important;
        display: flex;
        flex-direction: column;
    }
    .carousel-container {
        height: auto !important;
        overflow: visible !important;
    }
    .carousel-slide {
        position: relative !important;
        display: none !important;
        flex-direction: column !important;
        height: auto !important;
        background-image: none !important;
        padding-bottom: 0 !important;
        opacity: 0;
        transition: none !important;
    }
    .carousel-slide.active {
        display: flex !important;
        opacity: 1 !important;
    }
    .mobile-hero-img {
        display: block !important;
        width: 100%;
        height: 320px;
        background-size: cover;
        background-position: center;
    }
    .hero-slide-white-overlay {
        display: none !important;
    }
    .hero-content-wrapper {
        padding: 40px 20px !important;
        background-color: #ffffff;
        width: 100%;
        box-sizing: border-box;
    }
    .new-hero-text-block {
        padding-left: 0 !important;
        text-align: center;
        margin: 0 auto;
        max-width: 100% !important;
    }
    .new-hero-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
        letter-spacing: -1px !important;
    }
    .new-hero-desc {
        font-size: 14px !important;
        margin-bottom: 24px !important;
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
}

.new-hero-text-block {
    max-width: 800px; /* Wide enough to fit HOMES BUILT ON TRUST. SPACES BUILT TO LAST. on 2 lines */
    padding-left: 60px; /* Space for the vertical number indicators */
}

@media (max-width: 768px) {
    .new-hero-text-block {
        padding-left: 0;
        text-align: center;
        margin: 0 auto;
    }
}

.new-hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #111111;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.new-hero-title .red-text {
    color: var(--accent-orange);
}

@media (max-width: 768px) {
    .new-hero-title {
        font-size: 36px;
    }
}

.new-hero-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #111111; /* Changed to dark black for high contrast */
    font-weight: 500;
    margin-bottom: 36px;
    max-width: 580px; /* Keep description text width readable */
}

.new-hero-cta-btn {
    background-color: var(--accent-orange);
    color: #ffffff !important;
    padding: 16px 36px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.3s ease;
}

.new-hero-cta-btn:hover {
    background-color: #111111;
}

.hero-buttons-container {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Vertical Slide Indicator */
.hero-vertical-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

@media (max-width: 768px) {
    .hero-vertical-nav {
        display: none;
    }
}

.v-nav-item {
    font-size: 12px;
    font-weight: 700;
    color: #cccccc;
    cursor: pointer;
    transition: color 0.3s;
}

.v-nav-item.active {
    color: var(--accent-orange);
}

.v-nav-line {
    width: 1px;
    height: 40px;
    background-color: #e5e5e5;
}

/* Bottom Highlight Banner */
.hero-bottom-banner {
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 80%;
    background-color: #111111;
    color: #ffffff;
    z-index: 10;
    padding: 30px 40px;
    border-top-left-radius: 12px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {
    .carousel-slide {
        padding-bottom: 0 !important; /* Clear bottom offset on tablet/mobile where banner flows relatively */
    }
    .hero-bottom-banner {
        left: 0;
        width: 100%;
        border-radius: 0;
        position: relative;
    }
}

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

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

.banner-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.banner-item:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.15);
    padding-right: 20px;
}

@media (max-width: 768px) {
    .banner-item:not(:last-child) {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 15px;
    }
}

.banner-icon-box {
    color: var(--accent-orange);
    flex-shrink: 0;
}

.banner-icon-box svg {
    width: 24px;
    height: 24px;
}

.banner-item-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.banner-item-desc {
    font-size: 12px;
    color: #cccccc;
    line-height: 1.4;
}

.orange-accent-line {
    width: 36px;
    height: 2px;
    background-color: var(--accent-orange);
    margin-bottom: 20px;
}

.box-link {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #111111;
}

.box-link:hover {
    color: var(--accent-orange);
}

/* --- 2. Core Focus Columns --- */
.core-focus-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.focus-col {
    padding-right: 20px;
}

.focus-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-orange);
    margin-bottom: 16px;
}

.focus-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #111111;
}

/* --- 3. Projects Showcase --- */
.projects-section {
    padding: 100px 0;
}

.projects-header-block {
    margin-bottom: 50px;
    position: relative;
}

.projects-subtitle {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.orange-line {
    display: inline-block;
    width: 48px;
    height: 1px;
    background-color: var(--accent-orange);
}

.projects-main-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 800px;
    margin-bottom: 15px;
}

.view-all-projects-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: underline;
}

.view-all-projects-link:hover {
    color: var(--accent-orange);
}

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

.project-card-item {
    cursor: pointer;
}

.project-img-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
}

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

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

.plus-icon-box {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #ffffff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.plus-symbol {
    font-size: 24px;
    font-weight: 300;
    color: #111111;
}

.project-card-item:hover .plus-icon-box {
    background-color: var(--accent-orange);
}

.project-card-item:hover .plus-symbol {
    color: #ffffff;
}

.project-categories {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.project-title-name {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
}

/* --- 4. Our Sectors --- */
.sectors-section {
    padding: 100px 0;
    background-color: var(--light-gray-bg);
}

.sectors-section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
}

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

.sector-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px) saturate(130%);
    -webkit-backdrop-filter: blur(12px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.03);
    padding: 48px 36px;
    transition: all 0.3s ease;
}

.sector-card:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.06);
}

.sector-icon-box {
    margin-bottom: 24px;
    color: var(--accent-orange);
}

.sector-card:hover .sector-title {
    color: var(--accent-orange);
    transition: color 0.3s ease;
}

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

.sector-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.sector-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    min-height: 110px;
}

.sector-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sector-tags a {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    background-color: var(--light-gray-bg);
    padding: 6px 12px;
}

.sector-tags a:hover {
    background-color: var(--accent-orange);
    color: #ffffff;
}

/* --- 5. Sustainability Section --- */
.sustainability-section {
    padding: 120px 0;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.overlapping-images-container {
    position: relative;
    width: 100%;
    height: 480px;
}

.overlapping-images-container img {
    position: absolute;
    width: 320px;
    height: 320px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.overlapping-images-container .back-img {
    top: 0;
    left: 40px;
    z-index: 1;
}

.overlapping-images-container .front-img {
    bottom: 20px;
    right: 40px;
    z-index: 2;
    border: 10px solid #ffffff;
}

.sustainability-text-col {
    padding-left: 20px;
}

.sub-line-tag {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-orange);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.sub-line-tag.text-white {
    color: #ffffff;
}

.sustainability-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sustainability-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.learn-more-black-btn {
    display: inline-block;
    background-color: var(--accent-orange);
    color: #ffffff;
    padding: 14px 36px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: background-color 0.3s ease;
}

.learn-more-black-btn:hover {
    background-color: #111111;
}

/* --- 6. Services Dark Section --- */
.services-dark-section {
    background-color: var(--dark-bg);
    color: #ffffff;
    padding: 100px 0;
}

.services-dark-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.services-left-intro {
    padding-right: 40px;
}

.services-main-heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    margin-top: 10px;
}

.services-right-accordions {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-bottom: 1px solid var(--border-dark);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.accordion-item.active {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--accent-orange);
    padding: 0 20px;
}

.accordion-item:hover .accordion-title,
.accordion-item.active .accordion-title {
    color: var(--accent-orange);
    transition: color 0.3s ease;
}

.accordion-item:hover .accordion-icon,
.accordion-item.active .accordion-icon {
    color: var(--accent-orange);
    transition: color 0.3s ease;
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 30px 0;
    cursor: pointer;
}

.accordion-num {
    font-size: 14px;
    color: var(--accent-orange);
    font-weight: 700;
    width: 60px;
}

.accordion-title {
    font-size: 22px;
    font-weight: 600;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.accordion-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s, color 0.3s ease;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-body p {
    font-size: 15px;
    color: #999999;
    line-height: 1.7;
    padding-bottom: 30px;
    padding-left: 60px;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
}

/* --- 7. Building for the Best Section --- */
.building-best-section {
    padding: 100px 0;
}

.building-best-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1fr;
    gap: 40px;
    align-items: center;
}

.building-best-left {
    padding-right: 20px;
}

.best-main-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.best-main-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.best-accordions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.best-accordion-item {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
}

.best-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.best-accordion-title {
    font-size: 18px;
    font-weight: 700;
}

.best-accordion-toggle {
    width: 14px;
    height: 14px;
    position: relative;
}

.best-accordion-toggle::before,
.best-accordion-toggle::after {
    content: '';
    position: absolute;
    background-color: #111111;
    transition: transform 0.3s;
}

/* Horizontal line */
.best-accordion-toggle::before {
    top: 6px;
    left: 0;
    width: 14px;
    height: 2px;
}

/* Vertical line */
.best-accordion-toggle::after {
    top: 0;
    left: 6px;
    width: 2px;
    height: 14px;
}

.best-accordion-item.active .best-accordion-toggle::after {
    transform: rotate(90deg);
    opacity: 0;
}

.best-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.best-accordion-content p {
    font-size: 14px;
    color: var(--text-muted);
    padding-top: 15px;
    line-height: 1.6;
}

.best-accordion-item.active .best-accordion-content {
    max-height: 150px;
}

.building-best-center-bg {
    height: 450px;
    background-size: cover;
    background-position: center;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.building-best-right-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-left: 40px;
}

.stat-item-block {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--accent-orange);
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- 8. Safety Section --- */
.safety-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-light);
}

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

.safety-img-offset .back-img {
    top: 20px;
    left: 80px;
}

.safety-img-offset .front-img {
    bottom: -20px;
    right: 20px;
    border: 10px solid #ffffff;
}

.safety-text-col {
    padding-left: 20px;
}

.safety-main-desc {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #111111;
    margin-bottom: 40px;
}

.safety-buttons-row {
    display: flex;
    gap: 30px;
}

.safety-text-link {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #111111;
    border-bottom: 2px solid #111111;
    padding-bottom: 4px;
}

.safety-text-link:hover {
    color: var(--accent-orange);
    border-bottom-color: var(--accent-orange);
}

/* --- 9. Sculpture Banner --- */
.sculpture-banner-section {
    height: 480px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.sculpture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
}

/* --- 10. Leadership Section --- */
.leadership-section {
    padding: 120px 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.leadership-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.leadership-carousel-container {
    position: relative;
    border-bottom: 2px solid #111111;
    padding-bottom: 60px;
}

.leadership-slide {
    display: flex;
    gap: 40px;
    opacity: 1;
    transition: opacity 0.3s ease;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(15px) saturate(130%);
    -webkit-backdrop-filter: blur(15px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.04);
}

.leader-image-col {
    flex-shrink: 0;
}

.leader-image-col img {
    width: 320px;
    height: 380px;
    object-fit: cover;
}

.leader-details-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leader-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.leader-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 30px;
    display: block;
}

.leader-quote-divider {
    width: 48px;
    height: 1px;
    background-color: var(--accent-orange);
    margin-bottom: 24px;
}

.leader-quote-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

.leadership-slider-controls {
    position: absolute;
    bottom: -30px;
    left: 0;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.control-btn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, border-color 0.3s;
}

.control-btn:hover {
    border-color: #111111;
    background-color: #f7f7f7;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    stroke: #111111;
}

/* --- 11. News Section --- */
.news-section {
    padding: 100px 0;
    background-color: var(--light-gray-bg);
}

.news-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.news-intro-desc {
    font-size: 20px;
    line-height: 1.5;
    color: #111111;
    margin-top: 10px;
}

.news-right-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-card {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 24px;
}

.news-card-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.news-card-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.news-card-title a:hover {
    color: var(--accent-orange);
}

/* --- 12. Our Clients Section --- */
.clients-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-light);
}

.clients-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.clients-left-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #111111;
}

.clients-logos-wrapper {
    display: flex;
    align-items: center;
    gap: 48px;
}

.client-logo-item {
    font-size: 20px;
    font-weight: 300;
    color: #888888;
}

.bold-jolie {
    font-weight: 800;
    letter-spacing: 1px;
    color: #111111;
}

/* --- 13. Ready to Work Together Section --- */
.work-together-banner {
    background-color: var(--dark-bg);
    color: #ffffff;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.work-together-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.work-together-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.work-together-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

.work-together-buttons-row {
    display: flex;
    gap: 20px;
}

.ghost-btn-white {
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 16px 36px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    background-color: transparent;
}

.ghost-btn-white:hover {
    background-color: #ffffff;
    color: #111111;
}

.banner-bottom-orange-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--accent-orange);
}

/* --- Footer Section --- */
.site-footer {
    background-color: #f5f5f7;
    border-top: 4px solid var(--accent-orange);
    padding: 80px 0 40px 0;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #111111;
}

.footer-loc-col .loc-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-orange);
    margin-bottom: 12px;
}

.footer-loc-col .loc-addr {
    font-size: 13px;
    line-height: 1.5;
    color: #111111;
    margin-bottom: 8px;
}

.footer-loc-col .loc-contact {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-divider {
    border: none;
    border-top: 1px solid var(--border-light);
    margin-bottom: 40px;
}

.footer-middle-nav {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-middle-nav a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #111111;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.footer-middle-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-orange);
    transition: width 0.3s ease;
}

.footer-middle-nav a:hover {
    color: var(--accent-orange);
}

.footer-middle-nav a:hover::after {
    width: 100%;
}

.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-light);
    padding-top: 30px;
}

.footer-bottom-center {
    display: flex;
    gap: 24px;
}

.footer-bottom-right {
    display: flex;
    gap: 24px;
}

.footer-back-to-top .back-to-top-link {
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vertical-bar {
    color: var(--accent-orange);
    font-weight: 400;
    margin-left: 4px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .focus-grid,
    .projects-grid-container,
    .sectors-grid,
    .building-best-grid,
    .footer-top-grid {
        grid-template-columns: 1fr;
    }
    
    .building-best-center-bg {
        display: none;
    }
    
    .building-best-right-stats {
        padding-left: 0;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .sustainability-grid,
    .services-dark-grid,
    .safety-grid,
    .leadership-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .lets-work-together-box {
        position: relative;
        right: 0;
        bottom: 0;
        width: 100%;
        margin-top: 20px;
    }
    
    .work-together-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .clients-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .footer-top-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Featured Projects Carousel Styles --- */
.relative-container {
    position: relative;
}

.featured-projects-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
}

.projects-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.projects-slider-track-container {
    overflow: hidden;
    width: 100%;
}

.projects-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.project-slide-card {
    flex: 0 0 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .project-slide-card {
        flex: 0 0 100%;
    }
}

.project-slide-img-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.project-slide-card:hover .project-slide-img-box img {
    transform: scale(1.05);
}

.project-slide-details {
    padding: 10px 0;
}

.project-slide-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.project-slide-location {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-orange);
}

.project-arrow-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: var(--accent-orange);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border: none;
    transition: background-color 0.3s, transform 0.3s ease;
}

.project-arrow-btn:hover {
    background-color: #111111;
    transform: translateY(-50%) scale(1.05);
}

.project-arrow-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.prev-project-btn {
    left: -24px;
}

.next-project-btn {
    right: -24px;
}

.projects-action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.solid-black-btn {
    background-color: var(--accent-orange);
    color: #ffffff;
    padding: 16px 36px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--accent-orange);
    display: inline-block;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.solid-black-btn:hover {
    background-color: #111111;
    border-color: #111111;
}

.outline-btn-white {
    background-color: #ffffff;
    color: #111111;
    padding: 16px 36px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #111111;
    display: inline-block;
}

.outline-btn-white:hover {
    background-color: #f7f7f7;
}


/* --- Testimonials Section (Tales of Trust) --- */
.testimonials-section {
    padding: 100px 0;
    background-color: #fcfcfc;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.testimonials-main-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 48px;
}

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

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

.testimonial-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-video-box {
    position: relative;
    overflow: hidden;
}

.testimonial-video-box img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center top;
}

.red-play-button {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    background-color: var(--accent-orange);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.testimonial-card:hover .red-play-button {
    transform: scale(1.1);
}

.play-svg {
    width: 16px;
    height: 16px;
    margin-left: 3px;
    fill: currentColor;
    stroke: none;
}

.testimonial-details {
    padding: 24px;
}

.testimonial-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #111111;
}

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

.testimonial-progress-bar-container {
    width: 100%;
    height: 3px;
    background-color: var(--border-light);
    margin-bottom: 50px;
    position: relative;
}

.testimonial-progress-bar-active {
    width: 30%;
    height: 100%;
    background-color: var(--accent-orange);
    position: absolute;
    left: 0;
    top: 0;
}

.testimonials-bottom-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.testimonial-stats-col {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.testimonial-stats-col .stats-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
}

.testimonial-stats-col .stats-label {
    font-size: 12px;
    font-weight: 700;
    color: #111111;
    line-height: 1.3;
    letter-spacing: 1px;
}

.testimonial-text-col {
    flex-grow: 1;
}

.testimonial-highlight-text {
    font-size: 18px;
    line-height: 1.5;
    color: #111111;
    margin-bottom: 12px;
}

.view-testimonials-red-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 0.5px;
}

.view-testimonials-red-link:hover {
    text-decoration: underline;
}

.red-arrow {
    margin-left: 4px;
}

/* --- Global Menu Toggle Styles (Desktop First) --- */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #111111;
}

.burger-svg-icon {
    width: 24px;
    height: 24px;
}

.menu-toggle line {
    stroke: #111111;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.site-header.toggled .menu-toggle .line-1 {
    transform: translateY(6px) rotate(45deg);
}

.site-header.toggled .menu-toggle .line-2 {
    opacity: 0;
}

.site-header.toggled .menu-toggle .line-3 {
    transform: translateY(-6px) rotate(-45deg);
}

/* --- Mobile Specific Media Queries (< 768px) --- */
@media (max-width: 768px) {
    /* Header & Mobile Dropdown */
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #ffffff;
        border-top: 1px solid var(--border-light);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        z-index: 999;
        padding: 20px 0;
    }
    
    .site-header.toggled .main-navigation {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 16px;
        padding: 0 20px;
    }
    
    .nav-menu li a {
        display: block;
        padding: 10px 0;
        font-size: 15px;
        border-bottom: 1px solid #f5f5f5;
    }
    
    .header-actions {
        display: none; /* Hide header action buttons on small mobile */
    }
    
    /* Hero Title Adjustments & Box Hidden */
    .hero-title {
        font-size: 38px;
        line-height: 1.2;
    }
    
    .hero-subtitle-tag {
        font-size: 11px;
    }
    
    .lets-work-together-box {
        display: none !important;
    }
    
    /* Featured Projects Arrows repositioning to overlay inside boundaries */
    .project-arrow-btn {
        width: 40px;
        height: 40px;
        top: 35%;
    }
    
    .prev-project-btn {
        left: 10px;
    }
    
    .next-project-btn {
        right: 10px;
    }
    
    /* Projects CTA Button stack */
    .projects-action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    .projects-action-buttons a {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
    
    /* Overlapping Image Containers specificity fix (Sustainability & Safety) */
    .overlapping-images-container {
        height: 320px;
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .overlapping-images-container img {
        width: 200px;
        height: 200px;
    }
    
    .overlapping-images-container .back-img,
    .safety-img-offset .back-img {
        left: 10px !important;
        top: 10px !important;
    }
    
    .overlapping-images-container .front-img,
    .safety-img-offset .front-img {
        right: 10px !important;
        bottom: 10px !important;
        border-width: 6px !important;
    }
    
    /* Vertical stats stack for mobile */
    .building-best-right-stats {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    
    /* Footer layout stacked and centered on mobile */
    .footer-top-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }
    
    .footer-logo-col {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-middle-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-bottom-row {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
    }
    
    .footer-bottom-center,
    .footer-bottom-right {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    /* Clients Section Layout */
    .clients-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .clients-logos-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 32px;
        width: 100%;
    }
    
    /* Ready to Work Together Layout */
    .work-together-banner {
        padding: 80px 0;
    }
    
    .work-together-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .work-together-text-col {
        text-align: center !important;
    }
    
    .work-together-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .work-together-buttons-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    
    .work-together-buttons-row .ghost-btn-white {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
    
    /* Padding/Margin fixes for section spacing on small viewports */
    .sustainability-section,
    .sectors-section,
    .projects-section,
    .services-dark-section,
    .safety-section,
    .testimonials-section,
    .news-section {
        padding: 60px 0;
    }

    /* Mobile heading font scale overrides */
    .featured-projects-title,
    .testimonials-main-title,
    .sectors-section-title,
    .sustainability-title,
    .services-main-heading,
    .best-main-title,
    .why-choose-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 24px !important;
    }

    /* Centering overlapping image groups on mobile */
    .sustainability-images-col,
    .safety-images-col {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    /* Center top deals content on mobile to prevent overflow */
    .top-deals-content {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
        gap: 8px;
        padding-right: 30px;
        font-size: 11px;
    }

    /* Center slider buttons on mobile */
    .hero-buttons-container {
        justify-content: center;
    }

    /* Center safety section contents and buttons on mobile */
    .safety-text-col {
        text-align: center;
    }

    .safety-buttons-row {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    /* Stack footer columns fully on small mobile screen widths */
    .footer-top-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .footer-loc-col {
        text-align: center;
    }
}

/* --- Testimonial Dots & Colors --- */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 30px;
}

.t-dot {
    width: 6px;
    height: 6px;
    background-color: #cccccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.t-dot.active {
    background-color: #007bff; /* Blue dot from the screenshot! */
}

/* --- Why Choose Us Section Styles --- */
.why-choose-section {
    position: relative;
    background-color: #111111;
    overflow: hidden;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}

.why-choose-left-block {
    display: flex;
    align-items: center;
    padding: 100px 80px 100px 40px;
    padding-left: calc((100vw - 1200px) / 2 + 24px); /* Align left edge exactly with standard container */
}

.why-choose-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 100%;
    max-width: 1000px;
}

.why-choose-intro-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.why-choose-subtitle {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    display: block;
}

.why-choose-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
}

.why-choose-line {
    width: 48px;
    height: 2px;
    background-color: var(--accent-orange);
    margin-bottom: 24px;
}

.why-choose-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 36px;
    max-width: 750px;
}

.why-choose-cta-btn {
    background-color: var(--accent-orange);
    color: #ffffff !important;
    padding: 14px 28px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: fit-content;
}

.why-choose-cta-btn:hover {
    background-color: #ffffff;
    color: #111111 !important;
}

.why-choose-features-col {
    display: block;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px 40px;
    width: 100%;
}

.feature-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon-box {
    color: var(--accent-orange);
    flex-shrink: 0;
}

.feature-svg {
    width: 24px;
    height: 24px;
}

.feature-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.feature-desc {
    font-size: 12px;
    color: #999999;
    line-height: 1.4;
}

.why-choose-right-image {
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

@media (max-width: 1200px) {
    .why-choose-left-block {
        padding-left: 40px;
        padding-right: 40px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    .why-choose-left-block {
        padding: 60px 30px;
    }
    .why-choose-content-wrapper {
        gap: 50px;
    }
    .why-choose-right-image {
        height: 380px;
        min-height: auto;
    }
}

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

/* --- Project Detail Modal Styles --- */
.memana-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 20px;
    box-sizing: border-box;
}

.memana-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.memana-modal-window {
    background-color: #ffffff;
    width: 100%;
    max-width: 850px;
    max-height: 90vh;
    border-top: 5px solid var(--accent-orange);
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow-y: auto;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.memana-modal-overlay.active .memana-modal-window {
    transform: translateY(0);
}

.memana-modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10002;
    color: #111111;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: background-color 0.2s, transform 0.2s;
}

.memana-modal-close-btn:hover {
    background-color: #111111;
    color: #ffffff;
    transform: scale(1.05);
}

/* Modal Gallery */
.modal-gallery-container {
    width: 100%;
    position: relative;
    background-color: #161616; /* Deep dark background */
    height: 550px;
    overflow: hidden;
}

@media (max-width: 576px) {
    .modal-gallery-container {
        height: 320px;
    }
}

.modal-gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Fit the entire image in the viewport without cropping */
    transition: opacity 0.3s ease;
}

.modal-gallery-prev-btn,
.modal-gallery-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #111111;
    transition: background-color 0.2s, color 0.2s;
    z-index: 10001;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.modal-gallery-prev-btn { left: 15px; }
.modal-gallery-next-btn { right: 15px; }

.modal-gallery-prev-btn:hover,
.modal-gallery-next-btn:hover {
    background-color: var(--accent-orange);
    color: #ffffff;
}

.modal-gallery-prev-btn svg,
.modal-gallery-next-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.modal-thumbnails-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 15px 24px;
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.modal-thumb-item {
    width: 70px;
    height: 50px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: opacity 0.2s, border-color 0.2s;
}

.modal-thumb-item.active {
    opacity: 1;
    border-color: var(--accent-orange);
}

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

/* Modal Body Info */
.modal-body-info {
    padding: 30px;
    box-sizing: border-box;
}

.modal-project-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.modal-project-type {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-orange);
    letter-spacing: 1px;
}

.modal-project-location {
    font-size: 13px;
    color: #777777;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.modal-project-title {
    font-size: 32px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.modal-project-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 30px;
}

/* Enquiry Form Trigger Button */
.modal-enquire-trigger-btn {
    background-color: var(--accent-orange);
    color: #ffffff !important;
    padding: 16px 32px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
    margin-bottom: 25px;
    border-radius: 4px;
}

.modal-enquire-trigger-btn:hover {
    background-color: #111111;
}

/* Collapsible Enquiry Form */
.modal-enquiry-form-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #f9f9fb;
    border-radius: 6px;
}

.modal-enquiry-form-wrapper.open {
    max-height: 500px; /* Allow expansion */
    border: 1px solid #eeeeee;
    margin-bottom: 20px;
}

.modal-enquiry-form {
    padding: 24px;
}

.modal-enquiry-form h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111111;
}

.enquiry-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

@media (min-width: 576px) {
    .enquiry-form-grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

.enquiry-form-group {
    display: flex;
    flex-direction: column;
}

.enquiry-form-group label {
    font-size: 12px;
    font-weight: 600;
    color: #555555;
    margin-bottom: 6px;
}

.enquiry-form-group input,
.enquiry-form-group textarea {
    padding: 12px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: #ffffff;
}

.enquiry-form-group input:focus,
.enquiry-form-group textarea:focus {
    border-color: var(--accent-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(200, 37, 66, 0.1);
}

.enquiry-submit-btn {
    background-color: #111111;
    color: #ffffff !important;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.enquiry-submit-btn:hover {
    background-color: var(--accent-orange);
}

.enquiry-submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.enquiry-status-msg {
    margin-top: 15px;
    padding: 12px;
    border-radius: 4px;
    font-size: 13px;
    display: none;
}

.enquiry-status-msg.success {
    background-color: #e6f6ec;
    color: #1d7c3d;
    border: 1px solid #ccefd8;
    display: block;
}

.enquiry-status-msg.error {
    background-color: #fdf2f2;
    color: #9b1c1c;
    border: 1px solid #fde8e8;
    display: block;
}

.video-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 38%; /* Smaller cinematic height on desktop */
    height: 0;
    overflow: hidden;
    background-color: #000000;
}

@media (max-width: 768px) {
    .video-iframe-wrapper {
        padding-bottom: 56.25%; /* Maintain 16:9 on mobile for visibility */
    }
}

.video-iframe-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 56.25vw; /* Maintain 16:9 aspect ratio relative to viewport width */
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: 0;
}

@media (max-width: 768px) {
    .video-iframe-wrapper iframe {
        height: 100%;
    }
}

/* ==========================================================================
   ABOUT US PAGE STYLES
   ========================================================================== */

/* 1. About Hero Section */
.about-hero-section {
    position: relative;
    background-color: #111111;
    padding: 120px 0;
    color: #ffffff;
    text-align: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.about-hero-container {
    position: relative;
    z-index: 2;
}

.about-hero-tagline {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.about-breadcrumbs {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.about-breadcrumbs a:hover {
    color: var(--accent-orange);
}

.about-breadcrumbs .breadcrumb-sep {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.4);
}

.about-breadcrumbs .breadcrumb-current {
    color: var(--accent-orange);
    font-weight: 700;
}

/* 2. Brand Narrative Section */
.about-story-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-story-title {
    font-size: 38px;
    font-weight: 700;
    margin: 10px 0 24px 0;
    line-height: 1.25;
}

.about-story-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 20px;
}

.about-story-image-box {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.about-story-img {
    width: 100%;
    height: auto;
    display: block;
}

/* 3. Leadership Section */
.about-leadership-section {
    padding: 100px 0;
    background-color: #fcfcfd;
    border-top: 1px solid #f0f0f2;
    border-bottom: 1px solid #f0f0f2;
}

.about-leadership-header {
    margin-bottom: 60px;
    text-align: center;
}

.about-leadership-main-title {
    font-size: 38px;
    font-weight: 700;
    margin: 10px 0 16px 0;
}

.about-leadership-subtitle {
    font-size: 16px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.about-leader-card {
    display: block;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #f0f0f2;
}

.about-leader-img-box {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.about-leader-img {
    width: 100%;
    height: auto;
    display: block;
}

.leader-role {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.leader-name {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.leader-bio {
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 16px;
}

/* 4. Capabilities Grid */
.about-capabilities-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.about-capabilities-header {
    margin-bottom: 60px;
}

.about-capabilities-title {
    font-size: 38px;
    font-weight: 700;
    margin: 10px 0 0 0;
}

.about-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.cap-card {
    background: #ffffff;
    padding: 48px 36px;
    border-radius: 6px;
    border: 1px solid #eef0f2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: rgba(229, 62, 62, 0.15);
}

.cap-icon-box {
    margin-bottom: 24px;
}

.cap-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 14px 0;
}

.cap-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* 5. CTA Section */
.about-cta-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: #ffffff;
    text-align: center;
}

.about-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.about-cta-container {
    position: relative;
    z-index: 2;
}

.about-cta-title {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.about-cta-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 36px auto;
    line-height: 1.5;
}

/* Responsive Overrides for About Page */
@media (max-width: 991px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-leader-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
    .about-capabilities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-hero-title {
        font-size: 36px;
    }
    .about-cta-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .about-story-section,
    .about-leadership-section,
    .about-capabilities-section {
        padding: 60px 0;
    }
    .about-hero-section,
    .about-cta-section {
        padding: 80px 0;
    }
    .about-leader-card {
        padding: 24px;
        text-align: center;
    }
    .about-leader-img-box {
        max-width: 280px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   PROJECTS ARCHIVE PAGE STYLES
   ========================================================================== */

.archive-projects-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.archive-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.archive-project-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.archive-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(229, 62, 62, 0.15);
}

.archive-project-img-box {
    position: relative;
    height: 260px;
    overflow: hidden;
    background-color: #f5f5f7;
}

.archive-project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.archive-project-card:hover .archive-project-img {
    transform: scale(1.05);
}

.archive-project-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffffff;
    color: #111111;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.archive-project-content {
    padding: 30px;
}

.archive-project-location {
    display: block;
    font-size: 12px;
    color: #777777;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.archive-project-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.archive-project-excerpt p {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    margin: 0 0 20px 0;
}

/* Pagination styles */
.archive-pagination {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 40px;
}

.archive-pagination .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    background: #f5f5f7;
    color: #111111;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}

.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
    background: var(--accent-orange);
    color: #ffffff;
}

/* Responsive Overrides for Projects Page */
@media (max-width: 991px) {
    .archive-projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .archive-project-img-box {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .archive-projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .archive-projects-section {
        padding: 60px 0;
    }
    .archive-project-content {
        padding: 20px;
    }
}

/* ==========================================================================
   CONTACT US PAGE STYLES
   ========================================================================== */

.contact-page-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-block-title {
    font-size: 38px;
    font-weight: 700;
    margin: 10px 0 20px 0;
    line-height: 1.25;
}

.contact-block-desc {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    background: #fdf2f2;
    padding: 10px;
    border-radius: 50%;
    color: var(--accent-orange);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-text h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #111111;
}

.detail-text p {
    font-size: 15px;
    color: #555555;
    margin: 0;
    line-height: 1.5;
}

.detail-text p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
}

.detail-text p a:hover {
    color: var(--accent-orange);
}

.contact-whatsapp-promo {
    margin-top: 40px;
}

.contact-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 12px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    transition: background-color 0.2s, box-shadow 0.2s;
}

.contact-whatsapp-btn:hover {
    background-color: #20ba5a;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
    color: #ffffff;
}

/* Contact Page Form Block */
.contact-form-block {
    background: #fcfcfd;
    padding: 50px;
    border-radius: 6px;
    border: 1px solid #eef0f2;
    box-shadow: 0 5px 20px rgba(0,0,0,0.01);
}

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

.contact-form-field {
    margin-bottom: 20px;
}

.contact-form-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333333;
}

.contact-form-field input,
.contact-form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d2d6dc;
    border-radius: 4px;
    background: #ffffff;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.contact-submit-btn {
    width: 100%;
    background: var(--accent-orange);
    color: #ffffff;
    font-weight: 700;
    border: none;
    padding: 14px;
    border-radius: 4px;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.2s, opacity 0.2s;
}

.contact-submit-btn:hover {
    opacity: 0.9;
}

@media (max-width: 991px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .contact-form-block {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .contact-page-section {
        padding: 60px 0;
    }
    .contact-form-grid-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================================================
   CAREERS ARCHIVE PAGE STYLES
   ========================================================================== */

.jobs-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-accordion-item {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.job-accordion-item:hover {
    border-color: rgba(229, 62, 62, 0.15);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.job-accordion-item.active {
    border-color: var(--accent-orange);
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.job-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: #ffffff;
    transition: background-color 0.2s;
    user-select: none;
}

.job-accordion-header:hover {
    background-color: #fdfdfd;
}

.job-position-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #111111;
}

.job-meta-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.job-meta-tag {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 30px;
}

.dept-tag {
    background: #eef2f7;
    color: #2b6cb0;
}

.loc-tag {
    background: #fff5f5;
    color: #c53030;
}

.type-tag {
    background: #f0fff4;
    color: #2f855a;
}

.job-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.job-exp-text {
    font-size: 13px;
    color: #555555;
    font-weight: 600;
}

.accordion-toggle-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f7fafc;
    color: #718096;
    transition: transform 0.3s ease, background-color 0.2s, color 0.2s;
}

.job-accordion-item:hover .accordion-toggle-arrow {
    background: #edf2f7;
    color: #1a202c;
}

.job-accordion-item.active .accordion-toggle-arrow {
    transform: rotate(180deg);
    background: var(--accent-orange);
    color: #ffffff;
}

.job-accordion-body {
    display: none;
    padding: 0 30px 30px 30px;
    border-top: 1px dashed #eef0f2;
    background: #ffffff;
}

.job-accordion-item.active .job-accordion-body {
    display: block;
}

.job-description-content {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    padding-top: 25px;
    padding-bottom: 25px;
}

.job-description-content p {
    margin: 0 0 15px 0;
}

.job-description-content ul {
    margin: 0 0 15px 0;
    padding-left: 20px;
}

.job-description-content li {
    margin-bottom: 8px;
}

.job-apply-trigger-btn {
    background: #111111;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.2s, color 0.2s;
}

.job-apply-trigger-btn:hover {
    background-color: var(--accent-orange);
}

.job-application-form-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, margin-top 0.3s ease;
    opacity: 0;
    border-top: 1px dashed #eef0f2;
}

.job-application-form-wrapper.open {
    max-height: 1000px;
    opacity: 1;
    margin-top: 30px;
    padding-top: 30px;
}

@media (max-width: 768px) {
    .job-accordion-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }
    .job-header-right {
        width: 100%;
        justify-content: space-between;
        border-top: 1px solid #f7fafc;
        padding-top: 15px;
    }
    .job-accordion-body {
        padding: 0 20px 20px 20px;
    }
}

/* ==========================================================================
   TESTIMONIALS ARCHIVE PAGE STYLES
   ========================================================================== */

.testimonial-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.archive-testimonial-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 4px;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.01);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.archive-testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 62, 62, 0.15);
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}

.testimonial-card-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star-icon {
    font-size: 16px;
    color: #d2d6dc;
}

.star-icon.filled {
    color: #f5a623;
}

.client-quote-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    font-style: italic;
    margin: 0 0 24px 0;
    border: none;
    padding: 0;
}

.client-details-block {
    display: block;
}

.client-name {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #111111;
}

.client-designation {
    display: block;
    font-size: 13px;
    color: #777777;
    margin-bottom: 8px;
}

.client-location-tag {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    background: #fff5f5;
    color: #c53030;
    padding: 2px 8px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

@media (max-width: 576px) {
    .testimonial-archive-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .archive-testimonial-card {
        padding: 30px 20px;
    }
    .testimonials-archive-section {
        padding: 60px 0;
    }
}

/* Client Avatar Styles */
.client-profile-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    border-top: 1px solid #eef0f2;
    padding-top: 20px;
}

.client-avatar {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f7fafc;
}

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

.default-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff5f5;
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    border: 1px solid rgba(229, 62, 62, 0.1);
}

/* Utility Helper Classes */
.text-center {
    text-align: center !important;
}


