/* Base Variables */
:root {
    --primary-orange: #ea8b1f;
    --primary-orange-hover: #D5761A;
    --navy-dark: #1b150e;
    --background-light: #f8f7f6;
    /* Synced with Project Page */
    --card-light: #fafafa;
    --white: #fafafa;
    --pure-white: #FFFFFF;
    --text-dark: #1b150e;
    --text-grey: #6b7280;
    --font-main: 'Public Sans', 'Inter', sans-serif;
    /* Synced with Project Page */
    --border-radius: 12px;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.5;
    min-height: 100vh;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    padding: 0.5rem 2rem;
    margin-bottom: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: #000;
    text-decoration: none;
}

.logo-text {
    /* Optionally hide if logo image is sufficient */
    display: none;
}

@media (max-width: 768px) {
    .logo-text {
        display: none;
        /* Keep hidden or adjust for mobile */
    }
}

.nav-logo-img {
    height: 90px !important; 
    width: auto !important;
    max-width: 300px !important;
    object-fit: contain !important;
    margin: -20px 0 !important; 
    padding-top: 3px !important;
    transition: all 0.3s ease;
    display: block;
}

@media (max-width: 768px) {
    .nav-logo-img {
        height: 85px !important;
        margin: -20px 0 !important;
        padding-top: 3px !important;
        max-width: 200px !important;
    }
}

.footer-logo-img {
    height: 140px !important;
    width: auto !important;
    max-width: 320px !important;
    object-fit: contain !important;
    background: white !important;
    padding: 10px !important;
    border-radius: 8px !important;
    margin-bottom: 0.5rem !important;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-grey);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #000;
}

/* Base Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-orange-hover);
}

.btn-large {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-container {
    width: 100%;
}

.hero-card {
    position: relative;
    overflow: hidden;
    min-height: 550px;
    /* Reduced from 600px */
    display: flex;
    align-items: center;
    padding: 3rem 4rem;
    /* Adjusted padding */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    /* Placeholder fallback color if image not found */
    background-color: #1a202c;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Gradient to make text readable */
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
}

.hero-title {
    color: var(--white);
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--primary-orange);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.accent-text {
    color: var(--primary-orange);
    font-style: italic;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Glassmorphism attempt */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 8px;
    background-color: var(--primary-orange);
    color: #000;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-play:hover {
    background-color: var(--primary-orange-hover);
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeIn 0.8s ease-out forwards;
}

/* ===================== */
/* Stats Strip           */
/* ===================== */
.stats-strip {
    background-color: var(--white);
    padding: 1.25rem 4rem;
    /* Reduced padding for a more compact design */
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.separator-strip {
    width: 100%;
    height: 12px;
    background-color: var(--white);
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: center;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    /* Reduced from 54px */
    height: 44px;
    /* Reduced from 54px */
    border-radius: 10px;
    background-color: #FFF4E6;
    flex-shrink: 0;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-text .stat-number {
    font-size: 1.5rem;
    /* Reduced from 2rem */
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.stat-text .stat-suffix {
    font-size: 1.25rem;
    /* Reduced from 1.6rem */
    font-weight: 800;
    color: #E88321;
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    /* Reduced from 0.82rem */
    color: var(--text-grey);
    font-weight: 600;
    margin-top: 0.2rem;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Number + suffix inline */
.stat-text>span {
    display: inline;
}

.stat-divider {
    width: 1px;
    height: 30px;
    /* Reduced from 50px */
    background-color: #f1f1f1;
    flex-shrink: 0;
}

/* ===================== */
/* PEB Section           */
/* ===================== */
/* ===================== */
/* Benefits Section      */
/* ===================== */
.benefits-section {
    background-color: var(--background-light);
    padding: 5rem 4rem;
    color: var(--text-dark);
}

.benefits-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-title {
    color: var(--text-dark);
    font-size: 2.5rem;
    /* Slightly larger */
    font-weight: 900;
    /* Bolder for modern look */
    letter-spacing: -0.02em;
    /* Tighter for modern feel */
    margin-bottom: 0.5rem;
}

.benefits-subtitle {
    color: var(--text-grey);
    font-size: 1.1rem;
    font-weight: 500;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background: var(--pure-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ea8b1f' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary-orange);
    transition: height 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(234, 139, 31, 0.3);
}

.benefit-card:hover::before {
    height: 100%;
}

.benefit-icon {
    flex-shrink: 0;
    color: var(--primary-orange);
    background: rgba(234, 139, 31, 0.1);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--primary-orange);
    color: var(--pure-white);
    transform: rotate(-5deg) scale(1.1);
}

.benefit-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit-content p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

.benefits-banner {
    background-color: #E88321;
    border-radius: 12px;
    padding: 3rem;
    color: #000000;
}

.benefits-banner h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.benefits-banner p {
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-section {
        padding: 4rem 2rem;
    }

    .benefits-banner {
        padding: 2rem;
    }
}

.peb-section {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center top;
    padding: 5rem 4rem;
}

.separator-strip {
    width: 100%;
    height: 80px;
    background-color: #ffffff;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
    /* subtle shadow for depth */
}

.peb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 20, 30, 0.88);
    /* Deepened for dark contrast */
    z-index: 1;
}

.peb-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* Two-column intro */
.peb-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.peb-title {
    color: var(--pure-white);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.peb-title-underline {
    width: 60px;
    height: 4px;
    background-color: #E88321;
    border-radius: 2px;
    margin-top: 1rem;
}

.peb-intro-right {
    color: rgba(255, 255, 255, 0.85);
}

.peb-intro-right p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.8;
}

/* Technical Highlights */
.peb-highlights-title {
    color: var(--pure-white);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-align: center;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.peb-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.peb-card {
    background-color: rgba(255, 255, 255, 0.08);
    /* Distinct on dark */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    transition: all 0.3s ease;
}

.peb-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.peb-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.peb-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.peb-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.peb-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background-color: #E88321;
    color: #ffffff;
    margin-bottom: 1rem;
}

.peb-card h4 {
    color: var(--pure-white);
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.peb-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* =============================== */
/* Applications of PEB Section     */
/* =============================== */
.app-section {
    background-color: var(--background-light);
    padding: 4rem 4rem 5rem;
}

.app-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Split Header */
.app-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.app-header-center {
    max-width: 800px;
    margin: 0 auto;
}

.app-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #E88321;
    margin-bottom: 0.6rem;
}

.app-title {
    color: var(--text-dark);
    font-size: 2.5rem;
    /* Standardized heading size */
    font-weight: 900;
    /* Bolder font for premium look */
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.app-title-accent {
    color: #E88321;
}

.app-subtitle {
    color: var(--text-grey);
    font-size: 0.9rem;
    line-height: 1.6;
}

.app-header-right {
    flex-shrink: 0;
}

.btn-view_projects {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e2e8f0;
    color: var(--text-dark);
    background: var(--white);
    padding: 0.65rem 1.4rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.btn-view-projects:hover {
    border-color: var(--primary-orange);
    background: var(--primary-orange);
    color: var(--white);
}

/* 3-column grid */
.app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

/* Individual card */
.app-card {
    position: relative;
    border-radius: 16px;
    /* Project App standard radius */
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 30px rgba(232, 131, 33, 0.35);
    z-index: 2;
}

.app-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    filter: brightness(0.75);
}

.app-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.65);
}

/* Bottom-left card label with orange bar */
.app-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.1rem 1.1rem;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.8) 60%, transparent 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.app-card-bar {
    width: 32px;
    height: 3px;
    background-color: #E88321;
    border-radius: 2px;
    margin-bottom: 0.5rem;
}

.app-card-label h3 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
}

/* Responsive — tablet */
@media (max-width: 900px) {
    .app-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .app-section {
        padding: 3rem 2rem 4rem;
    }
}

/* Responsive — mobile */
@media (max-width: 540px) {
    .app-grid {
        grid-template-columns: 1fr;
    }

    .app-title {
        font-size: 2rem;
    }

    .app-section {
        padding: 2.5rem 1.25rem 3rem;
    }
}

/* =============================== */
/* Interior Work Section           */
/* =============================== */
.interior-section {
    background-color: var(--background-light);
    padding: 5rem 4rem;
    color: var(--text-dark);
}

.interior-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.interior-header {
    text-align: center;
    margin-bottom: 4rem;
}

.interior-header .app-eyebrow {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
}

.interior-title {
    font-size: 3.2rem;
    /* Standardized heading size */
    font-weight: 900;
    /* Bolder font for premium look */
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.interior-title .highlight {
    color: #E88321;
}

.title-underline {
    width: 60px;
    height: 4px;
    background-color: #E88321;
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.interior-subtitle {
    color: #9CA3AF;
    font-size: 1rem;
    font-weight: 500;
}

/* 3-column grid */
.interior-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.interior-card {
    position: relative;
    height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    /* Project App standard radius */
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.interior-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(232, 131, 33, 0.25);
}

.checkmark-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 28px;
    height: 28px;
    background-color: var(--primary-orange);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(232, 131, 33, 0.3);
}

.interior-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.8) 60%, transparent 100%);
    text-align: center;
    transition: background 0.3s ease;
}

.interior-card:hover .interior-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
}

.interior-card-overlay h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

.interior-card-overlay p {
    color: var(--text-grey);
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
    .interior-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .interior-section {
        padding: 4rem 1.5rem;
    }

    .interior-title {
        font-size: 1.8rem;
    }
}

/* =============================== */
/* Why Choose Us Section           */
/* =============================== */
.choose-section {
    background-color: var(--background-light);
    padding: 5rem 4rem;
}

.choose-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.choose-header {
    text-align: center;
    margin-bottom: 4rem;
}

.choose-title {
    font-size: 2.5rem;
    /* Standardized heading size */
    font-weight: 900;
    /* Bolder font for premium look */
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.choose-title .highlight {
    color: #E88321;
}

.choose-quote {
    color: var(--text-grey);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    font-weight: 500;
}

/* 4-column grid */
.choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.choose-card {
    background: var(--card-light);
    border-radius: 16px;
    /* Project App standard radius */
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid var(--primary-orange);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

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

.choose-checkmark {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background-color: #E88321;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose-content {
    padding: 1.5rem;
    text-align: center;
}

.choose-content h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.choose-content p {
    color: var(--text-grey);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .choose-section {
        padding: 4rem 1.5rem;
    }

    .choose-title {
        font-size: 1.8rem;
    }
}

/* =============================== */
/* Clients Section                 */
/* =============================== */
.clients-section {
    background-color: var(--background-light);
    padding: 4rem 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.clients-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.clients-header {
    text-align: center;
    margin-bottom: 3rem;
}

.clients-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1rem;
    align-items: flex-start;
}

.client-item {
    text-align: center;
}

.client-logo {
    width: 60px;
    height: 60px;
    background: var(--card-light);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    padding: 0.50rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.client-item:hover .client-logo {
    transform: translateY(-5px);
    border-color: #E88321;
    color: #E88321;
}

.client-item p {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-grey);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

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

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

/* =============================== */
/* Project Gallery Section         */
/* =============================== */
.gallery-section {
    padding: 5rem 4rem;
    background-color: var(--background-light);
}

.gallery-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Dynamic Gallery Grid - Responsive & Modern */
.gallery-grid-dynamic {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    /* Project App standard radius */
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--card-shadow);
}

.gallery-item-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 0 20px rgba(234, 139, 31, 0.1);
    border-color: rgba(234, 139, 31, 0.3);
}

.gallery-item-card:hover img {
    transform: scale(1.1);
}

.gallery-item-card .gallery-overlay-v2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.gallery-item-card:hover .gallery-overlay-v2 {
    opacity: 1;
}

.gallery-item-card .overlay-eyebrow {
    color: var(--primary-orange);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    transform: translateY(10px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item-card .overlay-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    transform: translateY(10px);
    transition: transform 0.4s ease 0.2s;
}

.gallery-item-card:hover .overlay-eyebrow,
.gallery-item-card:hover .overlay-title {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 4rem 1.5rem;
    }

    .gallery-grid-dynamic {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

/* =============================== */
/* Footer Section                  */
/* =============================== */
.footer {
    background-color: var(--navy-dark);
    color: var(--pure-white);
    padding: 5rem 4rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.footer-logo .accent {
    color: #E88321;
}

.about-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: background 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    background: #E88321;
    color: #ffffff;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-col h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #E88321;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #E88321;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: #E88321;
    flex-shrink: 0;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.footer-btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-weight: 700;
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 4rem;
    text-align: center;
}

.copyright-bar p {
    margin: 0;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .about-col {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 4rem 1.5rem 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-col {
        grid-column: span 1;
    }

    .copyright-bar {
        padding: 1.5rem 0;
    }
}

/* =============================== */
/* Blog Page Styles                */
/* =============================== */

.blog-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, #2c2419 100%);
    padding: 6rem 4rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.blog-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(234, 139, 31, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.blog-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.blog-hero-badge {
    display: inline-block;
    background: rgba(234, 139, 31, 0.15);
    color: var(--primary-orange);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(234, 139, 31, 0.3);
}

.blog-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 5rem 4rem;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.blog-card {
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(234, 139, 31, 0.3);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.blog-card-date {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: var(--text-dark);
}

.blog-card-content p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.blog-read-more:hover {
    gap: 0.5rem;
    color: var(--primary-orange-hover);
}

/* Sidebar */
.sidebar-widget {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    margin-bottom: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.popular-posts {
    list-style: none;
}

.popular-posts li {
    margin-bottom: 1.25rem;
}

.popular-posts a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    line-height: 1.4;
    display: block;
}

.popular-posts a:hover {
    color: var(--primary-orange);
}

.newsletter-widget {
    background: var(--navy-dark);
    color: var(--white);
}

.newsletter-widget h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.newsletter-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-form button {
    width: 100%;
}

/* Blog CTA */
.blog-cta {
    background: var(--primary-orange);
    padding: 5rem 4rem;
    text-align: center;
    color: var(--navy-dark);
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.blog-cta h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.blog-cta p {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-item span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.cta-item a {
    color: var(--navy-dark);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
}

.cta-item a:hover {
    text-decoration: underline;
}

/* Responsive Blog */
@media (max-width: 1100px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

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

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

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .blog-container {
        padding: 3rem 2rem;
    }
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Animate to X when active */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

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

/* Global Responsive Improvements */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem;
    }

    .nav-container {
        padding: 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 4rem 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-dark);
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hero Responsive */
    .hero-title {
        font-size: 3rem;
    }

    .hero-card {
        padding: 4rem 1.5rem;
        text-align: center;
        min-height: 480px;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
        width: 100%;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .nav-logo-img {
        height: 45px !important;
        max-width: 160px !important;
    }

    .hero-title {
        font-size: 2.1rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }

    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
        text-align: center !important;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
        padding: 1rem 1.5rem;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
    }

    .stats-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .stat-divider {
        display: none;
    }

    .peb-title {
        font-size: 1.8rem;
    }

    .peb-intro {
        gap: 1.5rem;
    }

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

    .benefits-section,
    .peb-section,
    .choose-section,
    .gallery-section,
    .interior-section,
    .app-section {
        padding: 3rem 1.25rem !important;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        justify-content: center;
    }
}

/* ================================== */
/* Services Page Styles (v34)        */
/* ================================== */

.app-eyebrow {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--primary-orange);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Hero Section */
.services-hero {
    position: relative;
    padding: 10rem 4rem;
    color: var(--white);
    overflow: hidden;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.services-hero .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.services-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 100%);
    z-index: 2;
}

.services-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.title-underline-left {
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
    margin-bottom: 2rem;
    border-radius: 2px;
}

/* PEB Services Section */
.peb-services-section {
    padding: 8rem 4rem;
    background-color: var(--white);
}

.peb-services-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.peb-services-intro .section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.peb-services-intro .section-desc {
    color: var(--text-grey);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3.5rem;
}

.peb-check-list h3 {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.peb-check-list ul {
    list-style: none;
    padding: 0;
}

.peb-check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.check-icon {
    color: var(--primary-orange);
}

/* PEB Feature Cards */
.peb-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card-v2 {
    background: var(--card-light);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.feature-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-orange);
}

.feature-icon-v2 {
    width: 48px;
    height: 48px;
    color: var(--primary-orange);
    margin-bottom: 2rem;
}

.feature-card-v2 h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.feature-card-v2 p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Interior Section */
.interior-civil-section {
    padding: 8rem 4rem;
    background-color: var(--background-light);
}

.section-header.center {
    text-align: center;
    margin-bottom: 6rem;
}

.title-underline-center {
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
    margin: 0 auto 2.5rem;
    border-radius: 2px;
}

.section-desc-center {
    max-width: 750px;
    margin: 0 auto;
    color: var(--text-grey);
    font-size: 1.15rem;
}

.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-card-v2 {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.service-card-v2:hover {
    transform: translateY(-10px);
}

.service-card-v2 .card-image {
    height: 240px;
    overflow: hidden;
}

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

.service-card-v2:hover .card-image img {
    transform: scale(1.1);
}

.service-card-v2 .card-content-v2 {
    padding: 2.5rem;
}

.service-card-v2 h3 {
    font-size: 1.4rem;
    font-weight: 800;
}

.service-card-v2 p {
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.7;
    margin: 1rem 0 2rem;
}

.service-card-small {
    background: #f4efea;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-small .small-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.small-icon {
    font-size: 1.75rem;
    color: var(--primary-orange);
}

.service-card-small h3 {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}

/* Workflow Section */
.workflow-section {
    padding: 8rem 4rem;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    margin-top: 5rem;
}

.step-item {
    position: relative;
    padding-top: 3rem;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 6px;
    background: var(--primary-orange);
    border-radius: 3px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* CTA Section */
.bottom-cta-section {
    position: relative;
    padding: 8rem 4rem;
    color: var(--white);
    overflow: hidden;
}

.bottom-cta-section .cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.bottom-cta-section .cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 50%, rgba(15, 23, 42, 0.7));
    z-index: 2;
}

.cta-inner {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;
}

.cta-content-left h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-content-left p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-actions-right {
    display: flex;
    gap: 2rem;
}

/* Responsive Overrides (v34) */
@media (max-width: 1024px) {
    .peb-services-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

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

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

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {

    .services-hero,
    .peb-services-section,
    .interior-civil-section,
    .workflow-section,
    .bottom-cta-section {
        padding: 5rem 1.5rem !important;
    }

    .section-title {
        font-size: 2.2rem !important;
    }

    .peb-features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid-v2 {
        grid-template-columns: 1fr;
    }

    .workflow-steps {
        grid-template-columns: 1fr;
    }

    .cta-actions-right {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions-right .btn {
        width: 100%;
    }
}

/* Optimization for PEB section text on mobile (v35) */
@media (max-width: 768px) {
    .peb-intro {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        text-align: center !important;
    }

    .peb-title {
        font-size: 2.22rem !important;
        line-height: 1.25 !important;
    }

    .peb-title-underline {
        margin: 1rem auto !important;
    }

    .peb-intro-right p {
        font-size: 1.05rem !important;
        line-height: 1.8 !important;
        padding: 0 0.5rem !important;
        text-align: justify !important;
    }

    .peb-highlights-title {
        font-size: 0.8rem !important;
        margin-bottom: 2rem !important;
    }

    .peb-cards {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .peb-section {
        padding: 4rem 1.5rem !important;
    }
}

.hover-link {
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.hover-link:hover {
    color: var(--primary-orange) !important;
    transform: translateX(5px);
}

/* WhatsApp Floating Button Styling */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 25px;
    background-color: #25d366;
    color: #FFF !important;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(18, 140, 126, 0.5);
    color: #FFF !important;
    width: auto;
    border-radius: 50px;
    padding: 0 24px;
    gap: 12px;
}

.whatsapp-float span {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.whatsapp-float:hover span {
    max-width: 150px;
    opacity: 1;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px;
        border-radius: 50%;
    }

    .whatsapp-float span {
        display: none;
    }
}