/* ==========================================================================
   BIZEE İNŞAAT - CUSTOM PREMIUM DARK THEME
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & DESIGN SYSTEM
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --primary: #F27A1A; /* Premium Construction Orange */
    --primary-hover: #D4620F;
    --dark: #11161B; /* Dark Slate Black */
    --dark-rgb: 17, 22, 27;
    --dark-hover: #0B0E11;
    --card-dark: #161E24; /* Dark Card Background */
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --gray-text: #8C9BA5; /* Muted Slate Gray */
    --dark-text: #E4E7EC; /* Light Text for dark theme compatibility */
    --border-color: #E4E7EC;
    --border-dark: rgba(255, 255, 255, 0.08);

    /* Fonts */
    --font-main: 'Plus Jakarta Sans', sans-serif;

    /* Shadow & Border Radius */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.4);
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Spacing & Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 90px;
}

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

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: #333333;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

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

/* Common Layout Containers */
.container {
    width: 100%;
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & BUTTONS
   -------------------------------------------------------------------------- */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

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

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

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

.title-underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 0 auto 40px auto;
    border-radius: var(--radius-full);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-sm); /* Blockier look as in design */
    transition: var(--transition);
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(132, 163, 51, 0.4);
}

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

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

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

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

/* --------------------------------------------------------------------------
   4. HEADER / NAVIGATION
   -------------------------------------------------------------------------- */
.main-header {
    height: var(--header-height);
    background-color: var(--dark);
    background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-dark);
}

.header-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
}

.brand-sub {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
    position: relative;
    text-transform: uppercase;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.phone-link i {
    font-size: 1rem;
    color: var(--primary);
}

.phone-link:hover {
    color: var(--primary);
}

.btn-contact {
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
}

.btn-contact:hover {
    background-color: var(--primary-hover);
    box-shadow: none;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    z-index: 1100;
}

.hamburger-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--dark);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

/* --------------------------------------------------------------------------
   5. HERO SECTION (SLANTED LAYOUT)
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    background-color: var(--dark);
    height: 620px;
    overflow: hidden;
}

.hero-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.hero-text-side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 80px;
    position: relative;
    z-index: 2;
    background-color: var(--dark);
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.035) 1.5px, transparent 1.5px),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 800 800'%3E%3Cpath d='M-100,200 C100,100 200,300 400,150 C600,0 700,200 900,100 M-100,350 C150,250 250,450 450,300 C650,150 750,350 900,250 M-100,500 C200,400 300,600 500,450 C700,300 800,500 900,400 M-100,650 C250,550 350,750 550,600 C750,450 850,650 900,550' fill='none' stroke='rgba(255,255,255,0.015)' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: 28px 28px, 100% 100%;
}

.hero-text-inner {
    max-width: 540px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-subtitle::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--white);
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Slanted Image panel */
.hero-img-side {
    background-size: cover;
    background-position: center;
    position: relative;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    margin-left: -90px;
    z-index: 1;
}

.hero-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(17, 22, 27, 0.4) 0%, rgba(17, 22, 27, 0.1) 100%);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------------------------------------------------------------
   6. STATS BAR SECTION (OVERLAPPING & THIN BORDERS)
   -------------------------------------------------------------------------- */
.stats-bar-section {
    position: relative;
    z-index: 10;
    margin-top: -65px;
}

.stats-bar-wrapper {
    background-color: var(--white);
    border-radius: var(--radius-sm);
    padding: 30px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: var(--border-color);
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 3px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #475467;
    letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   7. SERVICES SECTION (SIDE TITLE, NARROW VERTICAL DARK CARDS)
   -------------------------------------------------------------------------- */
.home-services-section {
    padding: 120px 0;
    background-color: var(--white);
}

.services-split-container {
    display: grid;
    grid-template-columns: 0.9fr 2.1fr;
    gap: 60px;
    align-items: center;
}

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

.intro-sub {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2.5px;
    display: block;
    margin-bottom: 15px;
}

.intro-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 25px;
}

.intro-desc {
    font-size: 1rem;
    color: #667085;
    line-height: 1.6;
    margin-bottom: 35px;
}

.all-services-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--primary);
    letter-spacing: 1px;
}

.all-services-btn-link:hover {
    color: var(--primary-hover);
    gap: 15px;
}

/* 6 Column narrow vertical dark card grid */
.services-right-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.service-col-card {
    background-color: var(--card-dark);
    border-radius: var(--radius-sm);
    padding: 35px 20px;
    border: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 310px;
    transition: var(--transition);
}

.service-col-card:hover {
    background-color: var(--primary);
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(132, 163, 51, 0.3);
}

.card-icon-box {
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
    margin-bottom: 25px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-col-card:hover .card-icon-box {
    color: var(--white);
    transform: scale(1.1);
}

.card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-arrow-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-top: auto;
}

.service-col-card:hover .card-arrow-link {
    background-color: var(--white);
    color: var(--primary);
}

/* --------------------------------------------------------------------------
   8. FEATURED PROJECTS SECTION (DARK BG, VERTICAL SIDE BLOCK)
   -------------------------------------------------------------------------- */
.home-projects-section {
    background-color: var(--dark);
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.03) 1.5px, transparent 1.5px),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 800 800'%3E%3Cpath d='M-100,150 C150,50 250,250 450,100 C650,-50 750,150 900,50 M-100,400 C200,300 300,500 500,350 C700,200 800,400 900,300' fill='none' stroke='rgba(255,255,255,0.012)' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: 28px 28px, 100% 100%;
    padding: 100px 0;
    color: var(--white);
    overflow: hidden;
}

.projects-split-container {
    display: grid;
    grid-template-columns: 0.95fr 2.05fr;
    gap: 60px;
}

.projects-left-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.projects-left-intro .intro-title {
    color: var(--white);
    margin-bottom: 35px;
}

.all-projects-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--primary);
    letter-spacing: 1px;
    align-self: flex-start;
}

.all-projects-btn-link:hover {
    color: var(--primary-hover);
    gap: 15px;
}

.projects-right-side {
    position: relative;
    padding-top: 50px; /* Space for slider controls */
    max-width: 100%;
    overflow: hidden;
}

/* Nav Buttons at top right */
.projects-slider-nav {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 12px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
}

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

/* Projects grid */
.projects-row-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.home-project-card {
    background-color: var(--card-dark);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-dark);
    transition: var(--transition);
}

.home-project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(132, 163, 51, 0.3);
    box-shadow: var(--shadow-md);
}

.card-img-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: block;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.home-project-card:hover .card-img-box img {
    transform: scale(1.06);
}

.home-project-card .card-details {
    padding: 24px;
}

.home-project-card .card-details h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.home-project-card .card-details span {
    font-size: 0.8rem;
    color: var(--gray-text);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 15px;
}

.home-project-card .card-details span i {
    color: var(--primary);
}

/* --------------------------------------------------------------------------
   9. WORK PROCESS SECTION (ÇALIŞMA SÜRECİMİZ)
   -------------------------------------------------------------------------- */
.work-process-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    border-top: 1px solid var(--border-color);
}

.process-container {
    display: grid;
    grid-template-columns: 0.85fr 2.15fr;
    gap: 60px;
    align-items: center;
}

.process-left {
    position: relative;
}

.process-heading {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.process-line {
    width: 50px;
    height: 4px;
    background-color: var(--primary);
    border-radius: var(--radius-full);
}

.process-right-pipeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.step-num {
    position: absolute;
    top: -8px;
    left: -8px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.step-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #475467;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(132, 163, 51, 0.15);
}

.step-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.step-info p {
    font-size: 0.78rem;
    color: #667085;
    line-height: 1.4;
    padding: 0 5px;
}

/* Connecting arrows in pipeline */
.step-arrow {
    position: absolute;
    top: 24px;
    right: -24px;
    color: var(--primary);
    font-size: 1rem;
    opacity: 0.45;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   10. FOOTER SECTION (CORPORATE MULTI-COLUMN)
   -------------------------------------------------------------------------- */
.main-footer {
    background-color: var(--dark);
    background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    color: var(--white);
    position: relative;
    padding: 80px 0 40px 0;
    overflow: hidden;
    border-top: 1px solid var(--border-dark);
}

.footer-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/construction_cranes.png');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

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

.footer-grid-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-info {
    padding-right: 20px;
}

.footer-logo {
    margin-bottom: 20px;
    align-self: flex-start;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(132, 163, 51, 0.35);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    border-radius: var(--radius-full);
}

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

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--primary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(2px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-contact-list li i {
    font-size: 1.1rem;
    color: var(--primary);
    margin-top: 4px;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-details span:first-child {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-details a, .contact-details span:last-child {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

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

.footer-bottom {
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------------------------
   11. REFERENCES & TESTIMONIALS (COMMON BG UPDATES)
   -------------------------------------------------------------------------- */
.testimonials-page-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

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

.testimonial-page-card {
    background-color: var(--white);
    border-radius: var(--radius-sm);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

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

.testi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.testi-rating {
    color: #F2A900;
    font-size: 0.95rem;
}

.quote-icon {
    font-size: 2rem;
    color: rgba(132, 163, 51, 0.15);
}

.testi-text {
    font-size: 0.95rem;
    font-style: italic;
    color: #475467;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 46px;
    height: 46px;
    background-color: var(--dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.user-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.user-info span {
    font-size: 0.8rem;
    color: #667085;
    font-weight: 500;
}

.partners-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.partner-logo-box {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: rgba(17, 22, 27, 0.4);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    padding: 10px;
}

.partner-logo-box:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   12. SUBPAGE COMMON & BANNER STYLES
   -------------------------------------------------------------------------- */
.page-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0 80px 0;
    color: var(--white);
    text-align: center;
}

.banner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.banner-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.banner-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.banner-breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
}

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

.banner-breadcrumbs i {
    font-size: 0.75rem;
}

.banner-breadcrumbs span {
    color: var(--white);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   13. LIGHTBOX MODAL & GALLERY/PROJECT DETAILS STYLES
   -------------------------------------------------------------------------- */
.project-detail-content-section {
    padding: 80px 0;
    background-color: var(--white);
}

.project-detail-grid-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    align-items: flex-start;
}

.project-main-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.project-article h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.project-lead-desc {
    font-size: 1.15rem;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    background-color: var(--light-bg);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.project-article p {
    font-size: 1.05rem;
    color: #475467;
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-detail-gallery h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

/* Showcase Gallery Styles */
.project-gallery-showcase {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.project-gallery-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-gallery-showcase:hover img {
    transform: scale(1.04);
}

.project-gallery-showcase .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 22, 27, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.project-gallery-showcase:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom-icon {
    width: 54px;
    height: 54px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 8px 20px rgba(242, 122, 26, 0.4);
    transform: translateY(15px);
    transition: var(--transition);
}

.project-gallery-showcase:hover .gallery-zoom-icon {
    transform: translateY(0);
}

.project-gallery-thumbnails {
    display: flex;
    gap: 15px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.project-thumbnail-item {
    flex: 0 0 110px;
    height: 80px;
    border-radius: var(--radius-xs);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.project-thumbnail-item:hover {
    opacity: 0.9;
}

.project-thumbnail-item.active {
    opacity: 1 !important;
    border-color: var(--primary) !important;
    transform: scale(0.96);
}

.project-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 110px;
}

.specs-card {
    background-color: var(--white);
    border-radius: var(--radius-sm);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.specs-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.specs-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    display: inline-block;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--border-color);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 16px 0;
    font-size: 0.95rem;
}

.specs-table td:first-child {
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.specs-table td:first-child i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.specs-table td:last-child {
    text-align: right;
    color: #475467;
    font-weight: 600;
}

.status-badge {
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.status-badge.completed {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.status-badge.ongoing {
    background-color: rgba(242, 122, 26, 0.1);
    color: var(--primary);
}

.sidebar-cta-card {
    background-color: var(--dark);
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 35px;
    box-shadow: var(--shadow-md);
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-cta-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
}

.sidebar-cta-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.w-full {
    width: 100%;
}

/* Lightbox overlay styling */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 22, 27, 0.97);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: var(--white);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2100;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2100;
}

.lightbox-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(132, 163, 51, 0.4);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-content-wrapper {
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.lightbox-content-wrapper img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    border: 3px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

.lightbox-modal.active img {
    transform: scale(1);
    opacity: 1;
}

.lightbox-content-wrapper img.fade-effect {
    opacity: 0;
    transform: scale(0.97);
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

/* --------------------------------------------------------------------------
   14. RESPONSIVE DESIGN (MEDIA QUERIES)
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .services-right-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .projects-row-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-bar-wrapper {
        padding: 25px;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .hero-split-container {
        grid-template-columns: 1fr;
    }
    
    .hero-text-side {
        padding: 100px 24px;
        justify-content: center;
        background-image: 
            radial-gradient(rgba(255, 255, 255, 0.035) 1.5px, transparent 1.5px),
            linear-gradient(rgba(17, 22, 27, 0.88), rgba(17, 22, 27, 0.94)),
            url('../images/hero_excavator.png');
        background-size: 28px 28px, cover, cover;
        background-position: top left, center, center;
        background-repeat: repeat, no-repeat, no-repeat;
    }
    
    .hero-img-side {
        display: none; /* Hide clipped side on tablet/mobile */
    }
    
    .services-split-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-left-intro {
        text-align: center;
        padding-right: 0;
    }
    
    .projects-split-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .projects-left-intro {
        text-align: center;
    }
    
    .all-projects-btn-link {
        align-self: center;
    }
    
    .projects-slider-nav {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        pointer-events: none;
        z-index: 20;
        margin-bottom: 0;
        padding: 0 8px;
    }
    
    .projects-slider-nav .slider-btn {
        pointer-events: auto;
        background-color: rgba(17, 22, 27, 0.85);
        border-color: rgba(255, 255, 255, 0.25);
        color: var(--white);
        width: 38px;
        height: 38px;
        font-size: 0.8rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }
    
    .process-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-left {
        text-align: center;
    }
    
    .process-line {
        margin: 0 auto;
    }
    
    .process-right-pipeline {
        grid-template-columns: repeat(3, 1fr);
        display: grid;
        gap: 30px;
    }
    
    .step-arrow {
        display: none;
    }
    
    .footer-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-detail-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 80px;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 45px;
        transition: var(--transition);
        box-shadow: 0 10px 15px rgba(0,0,0,0.2);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .nav-link:hover, .nav-link.active {
        color: var(--primary) !important;
    }
    
    .hamburger-btn {
        display: flex;
    }
    
    .hamburger-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .phone-link, .btn-contact {
        display: none;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .stats-bar-section {
        margin-top: -40px;
    }
    
    .stats-bar-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 20px;
    }
    
    .stat-card:not(:last-child)::after {
        display: none;
    }
    
    .stat-card {
        justify-content: flex-start;
        padding-bottom: 15px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .stat-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .services-right-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .service-col-card {
        padding: 24px 12px;
        min-height: 200px;
    }
    
    .service-col-card .card-title {
        font-size: 0.76rem;
        margin-bottom: 15px;
    }
    
    .service-col-card .card-icon-box {
        font-size: 1.6rem;
        margin-bottom: 15px;
        height: 35px;
    }
    
    .service-col-card .card-arrow-link {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
    
    .projects-row-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 5px 0 20px 0;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .projects-row-grid::-webkit-scrollbar {
        display: none;
    }
    
    .home-project-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }

    .projects-left-intro .intro-title {
        font-size: 2rem;
    }
    
    .process-right-pipeline {
        grid-template-columns: 1fr;
    }
    
    .footer-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .project-gallery-showcase {
        height: 260px !important;
    }
}

/* ==========================================================================
   23. CORPORATE & TEAM PAGE STYLES
   ========================================================================= */
.corporate-section {
    padding: 100px 0;
    background-color: var(--white);
}

.corporate-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.corporate-text {
    padding-right: 20px;
}

.corporate-text p {
    font-size: 1.05rem;
    color: #475467;
    line-height: 1.75;
    margin-bottom: 24px;
}

.about-cursive {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.corporate-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.corp-card {
    display: flex;
    gap: 20px;
    background-color: var(--light-bg);
    border-radius: var(--radius-sm);
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.corp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary);
}

.corp-card-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 4px;
}

.corp-card-body h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.corp-card-body p {
    font-size: 0.95rem;
    color: #475467;
    line-height: 1.6;
}

/* Team section */
.team-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    border-top: 1px solid var(--border-color);
}

.team-intro {
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.team-intro .section-desc {
    color: #667085;
    font-size: 1.05rem;
    margin-top: 10px;
}

.team-slider-container {
    position: relative;
    padding: 0 60px; /* Space on left and right for buttons */
}

.team-slider-container .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border-color: rgba(17, 22, 27, 0.15);
    color: var(--dark);
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
}

.team-slider-container .slider-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.team-prev {
    left: 10px;
}

.team-next {
    right: 10px;
}

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

.team-card {
    background-color: var(--white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.member-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin: 30px auto 10px auto;
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg);
    transition: var(--transition);
}

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

.team-card:hover .member-avatar {
    border-color: var(--primary);
    transform: scale(1.05);
}

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

.member-avatar.empty-avatar {
    background: linear-gradient(135deg, #161E24, #1C2630);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.05);
}

.member-info h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}

.member-info span {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive updates for corporate & team */
@media (max-width: 992px) {
    .corporate-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .team-slider-container {
        padding: 0 42px;
    }
    
    .team-slider-container .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
    
    .team-prev {
        left: 2px;
    }
    
    .team-next {
        right: 2px;
    }
    
    .corporate-text {
        padding-right: 0;
        text-align: center;
    }
    
    .corporate-text .title-underline {
        margin: 0 auto 30px auto !important;
    }
    
    .team-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: scroll !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 5px 0 20px 0;
        -ms-overflow-style: none;
        scrollbar-width: none;
        width: 100%;
    }
    
    .team-grid::-webkit-scrollbar {
        display: none;
    }
    
    .team-card {
        flex: 0 0 50% !important;
        width: 50% !important;
        min-width: 50% !important;
        flex-shrink: 0 !important;
        scroll-snap-align: start;
    }
    
    .team-grid .member-avatar,
    .team-grid .member-avatar.empty-avatar {
        width: 70px;
        height: 70px;
        margin: 15px auto 5px auto;
        border-width: 2px;
    }
    
    .team-grid .member-avatar.empty-avatar {
        font-size: 1.8rem;
    }
    
    .team-grid .member-info {
        padding: 12px 8px;
    }
    
    .team-grid .member-info h4 {
        font-size: 0.82rem;
        margin-bottom: 4px;
    }
    
    .team-grid .member-info span {
        font-size: 0.65rem;
    }
}

@media (max-width: 600px) {
    .corp-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }
}

/* ==========================================================================
   24. DETAILED SERVICES PAGE STYLES
   ========================================================================= */
.services-detail-section {
    padding: 100px 0;
    background-color: var(--white);
}

.services-intro {
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.services-intro .section-desc {
    color: #667085;
    font-size: 1.05rem;
    margin-top: 10px;
}

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

.service-detail-card {
    background-color: var(--light-bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    padding: 40px;
    display: flex;
    gap: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.service-detail-icon {
    font-size: 2rem;
    color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(242, 122, 26, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.service-detail-card:hover .service-detail-icon {
    background-color: var(--primary);
    color: var(--white);
}

.service-detail-content {
    flex-grow: 1;
}

.service-detail-content h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-detail-content p {
    font-size: 0.98rem;
    color: #475467;
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-bullets li {
    font-size: 0.92rem;
    color: #344054;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.service-bullets li i {
    color: var(--primary);
    font-size: 0.85rem;
}

/* Services Call to Action Banner */
.services-cta {
    margin-top: 80px;
    background-color: var(--dark);
    border-radius: var(--radius-sm);
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 600px;
}

.cta-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 1.05rem;
    color: var(--gray-text);
    line-height: 1.5;
}

.services-cta .btn {
    flex-shrink: 0;
    padding: 16px 32px;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .services-detail-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }
    
    .services-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .services-detail-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .service-detail-card {
        flex-direction: column !important;
        padding: 20px 12px !important;
        gap: 12px !important;
    }
    
    .service-detail-icon {
        width: 42px !important;
        height: 42px !important;
        font-size: 1.2rem !important;
    }
    
    .service-detail-content h3 {
        font-size: 1rem !important;
        margin-bottom: 8px !important;
    }
    
    .service-detail-content p {
        font-size: 0.8rem !important;
        line-height: 1.45 !important;
        margin-bottom: 10px !important;
    }
    
    .service-bullets {
        font-size: 0.75rem !important;
        gap: 6px !important;
        padding-left: 0 !important;
    }
    
    .service-bullets li {
        gap: 6px !important;
    }
    
    .service-bullets li i {
        font-size: 0.7rem !important;
    }
}

/* ==========================================================================
   25. PROJECTS & PORTFOLIO PAGE STYLES
   ========================================================================= */
.portfolio-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.portfolio-title-box {
    max-width: 600px;
}

.portfolio-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.portfolio-filters .filter-btn {
    padding: 10px 22px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.portfolio-filters .filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

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

.project-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.project-card {
    background-color: var(--white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.project-img-box {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    display: block;
}

.project-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.project-info-card {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    flex-grow: 1;
}

.project-texts {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.project-title {
    margin: 0;
}

.project-title a {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
    transition: var(--transition);
    text-decoration: none;
}

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

.project-location {
    font-size: 0.85rem;
    color: #667085;
    font-weight: 500;
}

.project-circle-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 0.95rem;
    transition: var(--transition);
    flex-shrink: 0;
    text-decoration: none;
}

.project-card:hover .project-circle-btn {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Responsive updates for portfolio */
@media (max-width: 992px) {
    .portfolio-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .portfolio-title-box .title-underline {
        margin: 0 auto 30px auto !important;
    }
    
    .portfolio-filters {
        justify-content: center;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .project-img-box {
        height: 200px;
    }
}

@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .project-img-box {
        height: 120px;
    }
    
    .project-info-card {
        padding: 12px 14px;
        gap: 10px;
    }
    
    .project-title a {
        font-size: 0.85rem;
    }
    
    .project-location {
        font-size: 0.68rem;
    }
    
    .project-circle-btn {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   26. CONTACT PAGE STYLES
   ========================================================================= */
.contact-page-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.contact-page-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: start;
}

.contact-form-box {
    background-color: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    padding: 45px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-form-box:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.contact-form-box h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.contact-form-box p {
    font-size: 0.98rem;
    color: #667085;
    margin-bottom: 35px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.contact-form .form-group label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
}

.contact-form .form-group input, 
.contact-form .form-group textarea {
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--dark);
    background-color: var(--white);
    transition: var(--transition);
}

.contact-form .form-group input::placeholder, 
.contact-form .form-group textarea::placeholder {
    color: #98A2B3;
}

.contact-form .form-group input:focus, 
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(242, 122, 26, 0.08);
}

.btn-submit {
    border: none;
    cursor: pointer;
    font-weight: 700;
}

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

.contact-sidebar .info-card {
    background-color: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    padding: 45px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-sidebar .info-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.contact-sidebar .info-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    display: inline-block;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-list-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.35rem;
    color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(242, 122, 26, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-text span {
    font-size: 0.85rem;
    color: #667085;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-text .bold-text {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

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

.map-wrapper {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    line-height: 0;
}

/* Responsive updates for contact page */
@media (max-width: 992px) {
    .contact-page-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-box,
    .contact-sidebar .info-card {
        padding: 30px 20px;
    }
}

@media (max-width: 600px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ==========================================================================
   27. REVERTED LIGHT/DARK ALTERNATING LAYOUT STYLES
   ========================================================================= */

/* Header Override to make it White globally (Matching Mockup) */
.main-header {
    background-color: var(--white) !important;
    border-bottom: 1px solid var(--border-color) !important;
}

.brand-name {
    color: var(--dark) !important;
}

/* Desktop-only Navigation Link Colors */
@media (min-width: 769px) {
    .nav-link {
        color: var(--dark) !important;
    }
    
    .nav-link:hover, .nav-link.active {
        color: var(--primary) !important;
    }
    
    .phone-link {
        color: var(--dark) !important;
    }
}

/* Stats Bar Dark Override (Matching Mockup) */
.stats-bar-wrapper {
    background-color: var(--dark) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
}

.stat-number {
    color: var(--white) !important;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7) !important;
}

.stat-card:not(:last-child)::after {
    background-color: rgba(255, 255, 255, 0.15) !important;
}

/* Biz Kimiz? (About Us) Homepage Section */
.about-intro-section {
    padding: 120px 0;
    background-color: var(--white);
}

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

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

.about-text .about-cursive {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 5px;
    text-transform: none;
    letter-spacing: 0;
}

.about-text h2 {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1rem;
    color: #475467;
    line-height: 1.75;
    margin-bottom: 25px;
}

.about-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 25px;
    margin-bottom: 35px;
    list-style: none;
    padding: 0;
}

.about-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

.about-bullets li i {
    color: var(--primary);
    font-size: 1.1rem;
}

.about-image-wrapper {
    position: relative;
    height: 450px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.main-about-img-box {
    width: 90%;
    height: 340px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.overlapping-images-row {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.overlapping-img-box {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.overlapping-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlapping-img-box:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Homepage Services Section Override (Light Gray BG, White Cards) */
.home-services-section {
    background-color: var(--light-bg) !important;
}

.home-services-section .service-col-card {
    background-color: var(--white) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--dark) !important;
    box-shadow: var(--shadow-sm);
}

.home-services-section .service-col-card .card-title {
    color: var(--dark) !important;
}

.home-services-section .service-col-card .card-icon-box {
    color: var(--primary) !important;
}

.home-services-section .service-col-card .card-arrow-link {
    background-color: var(--dark) !important;
    color: var(--white) !important;
}

.home-services-section .service-col-card:hover {
    border-color: var(--primary) !important;
    box-shadow: var(--shadow-md) !important;
}

/* Neden Bizee? Section Styles */
.why-bizee-section {
    padding: 100px 0;
    background-color: var(--white);
}

.why-container {
    display: grid;
    grid-template-columns: 0.85fr 2.15fr;
    gap: 60px;
    align-items: center;
}

.why-left h2 {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.15;
}

.why-right-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.why-card .why-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(242, 122, 26, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    transition: var(--transition);
}

.why-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2px;
}

.why-card p {
    font-size: 0.82rem;
    color: #667085;
    line-height: 1.5;
}

.why-card:hover .why-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

/* Responsive updates for alternating sections */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper {
        height: auto !important;
        display: block !important;
        position: relative !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .main-about-img-box {
        width: 100% !important;
        height: 280px !important;
        border-radius: var(--radius-md) !important;
    }
    
    .overlapping-images-row {
        display: none !important;
    }
    
    .why-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .why-right-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 600px) {
    .about-bullets {
        grid-template-columns: 1fr;
    }
    
    .overlapping-img-box {
        width: 80px;
        height: 80px;
    }
    
    .why-right-grid {
        grid-template-columns: 1fr;
    }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 850px;
    background-color: rgba(17, 22, 27, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    animation: slideUpCookie 0.5s ease-out;
}

@keyframes slideUpCookie {
    from { transform: translate(-50%, 30px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.cookie-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.5;
}

.cookie-icon {
    font-size: 1.4rem;
    color: var(--primary);
    flex-shrink: 0;
}

.cookie-text a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition);
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-buttons {
        width: 100%;
    }
}

.btn-cookie-accept {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(242, 122, 26, 0.25);
}

.btn-cookie-decline {
    background-color: transparent;
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-decline:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.03);
}
