/* ============================================
   TLHALEFANG GENERAL ENTERPRISE — MAIN STYLES
   ============================================ */

/* ---------- CSS Variables / Design Tokens ---------- */
:root {
    --primary: #0071bc;
    --lavender: #d4b2e4;
    --deep-purple: #493979;
    --white: #ffffff;
    --dark: #1a1a2e;
    --sidebar-bg: #110f1e;
    --gray-50: #f8f9fa;
    --gray-100: #f0f1f3;
    --gray-200: #e2e4e8;
    --gray-500: #6c757d;
    --gray-700: #3a3d42;
    --overlay: rgba(73, 57, 121, 0.55);
    --overlay-dark: rgba(26, 26, 46, 0.72);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 14px 48px rgba(0, 0, 0, 0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.35s cubic-bezier(.4, 0, .2, 1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--deep-purple);
    line-height: 1.2;
}

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

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background: var(--deep-purple);
    border-color: var(--deep-purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--deep-purple);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--deep-purple);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--lavender);
    border-color: var(--lavender);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Bordered button — template style */
.btn-bordered {
    display: inline-block;
    padding: 12px 32px;
    border: 1px solid var(--deep-purple);
    color: var(--deep-purple);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--transition);
    background: transparent;
}

.btn-bordered:hover {
    background: var(--deep-purple);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-bordered.light {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}

.btn-bordered.light:hover {
    background: var(--white);
    color: var(--deep-purple);
    border-color: var(--white);
}

.btn-bordered.center-btn {
    display: block;
    width: fit-content;
    margin: 36px auto 0;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.btn-link:hover {
    gap: 12px;
    color: var(--deep-purple);
}

/* ========================================
   HERO — SPLIT LAYOUT
   ======================================== */
.hero-split {
    display: flex;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

/* --- Sidebar --- */
.hero-sidebar {
    width: 190px;
    min-width: 190px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 36px 20px;
    z-index: 10;
    position: relative;
}

.sidebar-top {
    width: 100%;
    display: flex;
    justify-content: center;
}

.sidebar-logo img {
    height: 200px;
    object-fit: contain;
}

.sidebar-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.sidebar-nav ul {
    display: flex;
    flex-direction: column;
    gap: 26px;
    text-align: center;
    width: 100%;
}

.sidebar-nav ul a {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.55);
    text-transform: lowercase;
    letter-spacing: 1.5px;
    transition: color var(--transition);
    position: relative;
    display: block;
    padding: 4px 0;
}

.sidebar-nav ul a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width var(--transition);
}

.sidebar-nav ul a:hover,
.sidebar-nav ul a.active {
    color: var(--deep-purple);
}

.sidebar-nav ul a:hover::after,
.sidebar-nav ul a.active::after {
    width: 60%;
}

.sidebar-nav ul a.active {
    color: var(--primary);
    font-weight: 600;
}

.sidebar-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.sidebar-social {
    display: flex;
    gap: 14px;
}

.sidebar-social a {
    color: var(--deep-purple);
    font-size: 0.88rem;
    transition: color var(--transition);
}

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

/* --- Hero Main (image side) --- */
.hero-main {
    flex: 1;
    position: relative;
    overflow: hidden;

}

.hero-image-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image-wrap>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(73, 57, 121, 0.60) 0%,
            rgba(0, 113, 188, 0.35) 60%,
            rgba(26, 26, 46, 0.55) 100%);
}

.hero-headline {
    position: absolute;
    bottom: 14%;
    left: 8%;
    z-index: 2;
    max-width: 560px;
}

.hero-headline h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.0;
    letter-spacing: -1px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-headline p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 30px;
    font-family: var(--font-body);
    line-height: 1.6;
    max-width: 420px;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 30px;
    font-family: var(--font-body);
    line-height: 1.6;
    max-width: 420px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 5%;
    right: 6%;
    z-index: 2;
}

.hero-scroll a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: bounce 2s infinite;
    transition: all var(--transition);
}

.hero-scroll a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

/* ============================================
   MOBILE NAV DRAWER
   Full-screen overlay menu, shown when hamburger is active
   ============================================ */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    /* top/right/bottom/left: 0 */
    width: 100%;
    height: 100%;
    background: rgba(17, 15, 30, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 9999;
    /* above everything */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow: hidden;
}

.mobile-nav.open {
    display: flex;
    animation: navFadeIn 0.25s ease forwards;
}

@keyframes navFadeIn {
    from {
        opacity: 0;
        transform: scale(0.97);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.mobile-nav ul li a {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.5px;
    display: block;
    padding: 4px 16px;
    transition: color var(--transition), transform var(--transition);
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
    color: var(--lavender);
    transform: translateX(6px);
}

/* Close button inside drawer */
.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 2.8rem;
    line-height: 1;
    cursor: pointer;
    padding: 8px;
    transition: color var(--transition), transform var(--transition);
    z-index: 10000;
}

.mobile-nav-close:hover {
    color: var(--white);
    transform: rotate(90deg);
}

/* ============================================
   HAMBURGER BUTTON
   Three-bar icon that animates to an X when active
   ============================================ */
.hamburger {
    display: none;
    /* hidden by default; shown via media query */
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
    /* above the mobile-nav close button */
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
    transform-origin: center;
}

/* X state when active */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ========================================
   SPLIT SECTIONS (template alternating)
   ======================================== */
.split-section {
    display: flex;
    min-height: 520px;
}

/* Light section — photos left, content right */
.light-section {
    background: var(--white);
}

/* Dark section — content left, photos right */
.dark-section {
    background: var(--dark);
}

.split-photos {
    flex: 1;
    min-height: 520px;
    overflow: hidden;
    position: relative;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px;
}

.dark-section .split-content {
    padding-left: 80px;
    padding-right: 48px;
}

/* Section eyebrow text */
.section-eyebrow {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-eyebrow.light {
    color: var(--lavender);
}

.split-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--deep-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.dark-section .split-content h2 {
    color: var(--white);
}

.split-content p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 400px;
}

.dark-section .split-content p {
    color: rgba(255, 255, 255, 0.65);
}

/* Photo Collage */
.photo-collage {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 100%;
    height: 100%;
    gap: 0;
}

.photo-collage.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.photo-large {
    grid-row: 1;
    grid-column: 1;
    overflow: hidden;
    position: relative;
}

.photo-small {
    grid-row: 1;
    grid-column: 2;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.photo-collage.reverse .photo-large {
    grid-column: 2;
}

.photo-collage.reverse .photo-small {
    grid-column: 1;
}

.photo-large img,
.photo-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.photo-large:hover img,
.photo-small:hover img {
    transform: scale(1.06);
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-us-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.why-us-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-us-text {
    max-width: 640px;
    margin-bottom: 60px;
}

.why-us-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--deep-purple);
    margin-bottom: 18px;
    margin-top: 12px;
}

.why-us-text p {
    color: var(--gray-500);
    font-size: 0.98rem;
    line-height: 1.85;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 900px;
}

.stat-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: all var(--transition);
    border-bottom: 3px solid transparent;
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--primary);
}

.stat-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, rgba(0, 113, 188, 0.1), rgba(212, 178, 228, 0.2));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--deep-purple);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--primary) 100%);
    padding: 90px 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 200px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links-col h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links-col h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--primary);
}

.footer-links-col ul li {
    margin-bottom: 10px;
}

.footer-links-col ul a {
    font-size: 0.88rem;
    transition: all var(--transition);
}

.footer-links-col ul a:hover {
    color: var(--lavender);
    padding-left: 6px;
}

.footer-contact ul li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 0.88rem;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   PAGE HEADER (shared by inner pages)
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--primary) 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(212, 178, 228, 0.08);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: rgba(0, 113, 188, 0.1);
    border-radius: 50%;
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb a {
    color: var(--lavender);
}

.page-header .breadcrumb a:hover {
    color: var(--white);
}

/* ========================================
   SECTION HEADER (inner pages)
   ======================================== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--deep-purple));
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1rem;
}

/* ========================================
   INNER PAGE HEADER — Split (sidebar left, title right)
   Same structural feel as index hero split, but only for the header.
   Sidebar is NOT fixed — it scrolls away with the header.
   ======================================== */

/* Body class for inner pages — used only for specificity scoping */
.inner-page {
    display: block;
}

/* The split header block on inner pages */
.inner-page-header {
    display: flex;
    min-height: 420px;
}

/* Sidebar inside the inner-page-header — inherits .hero-sidebar styles,
   but is position: static (not fixed, scrolls away) */
.inner-page-header .hero-sidebar {
    position: relative;
    /* NOT fixed */
    height: auto;
    min-height: 420px;
    flex-shrink: 0;
    border-right: 1px solid var(--gray-200);
}

/* Right side — gradient page title area (mirrors the hero image panel feel) */
.inner-page-title {
    flex: 1;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--primary) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
}

.inner-page-title::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 360px;
    height: 360px;
    background: rgba(212, 178, 228, 0.08);
    border-radius: 50%;
}

.inner-page-title::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -8%;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.inner-page-title h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.inner-page-title h1 .highlight {
    color: var(--lavender);
}

.inner-page-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    max-width: 420px;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.inner-page-title .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    position: relative;
    z-index: 1;
}

.inner-page-title .breadcrumb a {
    color: var(--lavender);
    transition: color var(--transition);
}

.inner-page-title .breadcrumb a:hover {
    color: var(--white);
}

/* Content sections after the header are full-width, no sidebar */
.inner-page-body {
    display: block;
}

/* Page header on inner pages — reset old padding (no fixed navbar anymore) */
.inner-page .page-header {
    padding-top: 80px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
/* ============================================================
   UNIFIED MOBILE STYLES — consistent across all pages
   ============================================================ */

/* --- 900px: Tablet --- */
@media (max-width: 900px) {

    /* Index hero + inner page header: slim sidebar */
    .hero-split {
        height: auto;
        min-height: 100vh;
    }

    .hero-sidebar {
        width: 80px;
        min-width: 80px;
        padding: 24px 12px;
    }

    .sidebar-logo img {
        height: 80px;
    }

    .sidebar-nav,
    .sidebar-social {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Index content sections */
    .split-section {
        flex-direction: column;
    }

    .dark-section {
        flex-direction: column-reverse;
    }

    .split-photos {
        min-height: 360px;
    }

    .split-content {
        padding: 60px 32px;
    }

    .dark-section .split-content {
        padding: 60px 32px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    /* Why-us stats */
    .why-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Inner page: slim sidebar inside header */
    .inner-page-header .hero-sidebar {
        width: 80px;
        min-width: 80px;
        padding: 24px 12px;
    }
}

/* --- 640px: Mobile --- */
@media (max-width: 640px) {

    /* ---- INDEX HERO ---- */
    /* On mobile the hero-split stays as a flex column:
       sidebar collapses to a thin top bar, hero fills below */
    .hero-split {
        flex-direction: column;
        min-height: unset;
        height: auto;
    }

    .hero-sidebar {
        width: 100%;
        min-width: unset;
        height: 68px;
        min-height: unset;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        border-bottom: 1px solid var(--gray-200);
        border-right: none;
        position: sticky;
        top: 0;
        z-index: 1000;
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .sidebar-top {
        width: auto;
        display: flex;
        align-items: center;
    }

    .sidebar-logo img {
        height: 100px;
    }

    .sidebar-bottom {
        flex-direction: row;
        align-items: center;
        width: auto;
        gap: 0;
    }

    .hero-main {
        min-height: 60vh;
        position: relative;
        overflow: hidden;
    }

    .hero-image-wrap {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .hero-image-wrap>img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }



    .hero-headline h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .hero-headline {
        bottom: 18%;
        left: 5%;
    }

    /* ---- INNER PAGE HEADER ---- */
    /* Same collapse pattern as the index hero sidebar */
    .inner-page-header {
        flex-direction: column;
        min-height: unset;
    }

    .inner-page-header .hero-sidebar {
        width: 100%;
        min-width: unset;
        height: 68px;
        min-height: unset;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        border-bottom: 1px solid var(--gray-200);
        border-right: none;
        position: sticky;
        top: 0;
        z-index: 1000;
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .inner-page-header .hero-sidebar .sidebar-top {
        width: auto;
        display: flex;
        align-items: center;
    }

    .inner-page-header .hero-sidebar .sidebar-logo img {
        height: 44px;
    }

    .inner-page-header .hero-sidebar .sidebar-nav,
    .inner-page-header .hero-sidebar .sidebar-social {
        display: none;
    }

    .inner-page-header .hero-sidebar .sidebar-bottom {
        flex-direction: row;
        align-items: center;
        width: auto;
        gap: 0;
    }

    .inner-page-title {
        padding: 52px 24px;
        min-height: 280px;
    }

    .inner-page-title h1 {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

    /* ---- SHARED SECTIONS ---- */
    .why-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    /* ---- INDEX SPLIT SECTIONS ---- */
    .split-content {
        padding: 48px 24px;
    }

    .photo-collage,
    .photo-collage.reverse {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }

    .photo-large,
    .photo-small {
        grid-column: 1;
    }

    .photo-large {
        grid-row: 1;
    }

    .photo-small {
        grid-row: 2;
    }

    .photo-collage.reverse .photo-large {
        grid-row: 2;
    }

    .photo-collage.reverse .photo-small {
        grid-row: 1;
    }

    /* ---- FOOTER ---- */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        height: 120px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    /* ---- INNER PAGE SECTIONS ---- */
    .our-story {
        padding: 60px 0;
    }

    .story-layout {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }

    .story-image img {
        height: 260px;
    }

    .story-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .director-section {
        padding: 60px 0;
    }

    .director-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 20px;
    }

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

    .company-details {
        padding: 60px 0;
    }

    .details-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .mission-vision {
        padding: 60px 0;
    }

    .mv-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-info-section {
        padding: 60px 0;
    }

    .contact-cards {
        flex-direction: column;
        gap: 16px;
    }

    .contact-main {
        padding: 60px 0;
    }

    .contact-layout {
        flex-direction: column;
    }

    .service-section {
        padding: 60px 0;
    }

    .service-intro {
        flex-direction: column !important;
        gap: 32px;
    }

    .service-cards-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- 380px: Small phones --- */
@media (max-width: 380px) {
    .details-grid {
        grid-template-columns: 1fr !important;
    }

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