/* 
   Keskinkaya İnşaat - Design System 
   Concept: Modern Luxury x Engineering Precision 
*/

:root {
    /* Color Palette - CONSISTENT NAMING */
    --color-navy: #1A2530;
    /* Deep Anthracite Navy - Primary */
    --color-sage: #7C8C74;
    /* Sage Green - Secondary */
    --color-bronze: #C5A059;
    /* Matte Bronze - Accent */
    --color-white: #FFFFFF;
    --color-offwhite: #F5F5F5;
    /* Light Background */
    --color-text: #333333;
    /* Body Text */

    /* Typography */
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --base-font-size: 18px;

    /* Effects */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 5px 20px rgba(0, 0, 0, 0.12);
    --radius-md: 8px;

    /* Transitions */
    --transition-slow: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.3s ease;
}

/* ========== LOADER ========== */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-navy) 0%, #2a3a4a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.loader-icon {
    font-size: 4rem;
    color: var(--color-bronze);
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-brand {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    letter-spacing: 8px;
    margin-bottom: 30px;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin: 0 auto;
    overflow: hidden;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: var(--color-bronze);
    border-radius: 3px;
    animation: loading 2s ease-out forwards;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

@keyframes loading {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

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

body {
    font-family: var(--font-body);
    font-size: var(--base-font-size);
    background-color: var(--color-offwhite);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    padding-bottom: 70px;
    /* Space for sticky mobile bar */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    font-weight: 700;
}

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

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

/* ========== UTILITIES ========== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.text-navy {
    color: var(--color-navy);
}

.bg-navy {
    background-color: var(--color-navy);
    color: var(--color-white);
}

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

.uppercase {
    text-transform: uppercase;
}

.text-spacing-sm {
    letter-spacing: 2px;
}

.text-sm {
    font-size: 0.9rem;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none;
}

.font-bold {
    font-weight: 700;
}

/* ========== NAVIGATION ========== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 900;
    transition: var(--transition-slow);
    background: linear-gradient(to bottom, rgba(26, 37, 48, 0.9), transparent);
}

nav.scrolled {
    background-color: rgba(26, 37, 48, 0.98);
    padding: 15px 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.logo h1 {
    color: var(--color-white);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
    cursor: pointer;
}

.logo-img:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(197, 165, 114, 0.6));
}

nav.scrolled .logo-img {
    height: 45px;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--color-white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-bronze);
    transition: var(--transition-fast);
}

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

.btn-cta-nav {
    border: 1px solid var(--color-bronze);
    padding: 10px 20px;
    color: var(--color-bronze) !important;
}

.btn-cta-nav:hover {
    background-color: var(--color-bronze);
    color: var(--color-white) !important;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-trigger i {
    font-size: 0.7rem;
    transition: var(--transition-fast);
}

.nav-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--color-white);
    min-width: 220px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-fast);
    padding: 15px 0;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--color-text) !important;
    font-size: 0.9rem;
    text-transform: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--color-offwhite);
    color: var(--color-bronze) !important;
    padding-left: 30px;
}

.dropdown-menu a::after {
    display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-fast);
}

/* ========== FOOTER GRID ========== */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

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

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

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

.footer-links h4,
.footer-contact h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-bronze);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--color-bronze);
    margin-right: 10px;
    width: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--color-bronze);
}

/* ========== HERO SECTION ========== */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomSlow 20s infinite alternate;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 37, 48, 0.75) 0%, rgba(26, 37, 48, 0.6) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #DDDDDD;
}

.btn-main {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--color-bronze);
    border: 2px solid var(--color-bronze);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.btn-main:hover {
    background-color: var(--color-navy);
    border-color: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ========== TRUST BAR ========== */
.trust-bar {
    background-color: var(--color-sage);
    padding: 30px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.trust-item h4 {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 5px;
}

.trust-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== SECTIONS GENERAL ========== */
.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-header h4 {
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-bronze);
}

/* ========== CORPORATE SECTION ========== */
.corporate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.corp-img {
    position: relative;
}

.corp-img img {
    border-radius: 4px;
    box-shadow: 20px 20px 0 var(--color-navy);
}

.corp-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--color-bronze);
}

/* ========== TIMELINE / TRANSFORMATION ========== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background-color: var(--color-bronze);
    opacity: 0.4;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    clear: both;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 50px;
    padding-right: 0;
    margin-left: 50%;
}

.timeline-item:nth-child(odd) {
    text-align: right;
}

.timeline-content {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    position: relative;
    z-index: 2;
    transition: var(--transition-fast);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.timeline-content h3 {
    margin-bottom: 10px;
}

.timeline-dot {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--color-bronze);
    border-radius: 50%;
    right: -60px;
    transform: translateY(-50%);
    z-index: 10;
    border: 4px solid var(--color-white);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -60px;
    right: auto;
}

/* ========== PROJECTS BROKEN GRID ========== */
.projects-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
}

.project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    border-radius: var(--radius-md);
}

.project-card:nth-child(1) {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
}

.project-card:nth-child(2) {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
}

.project-card:nth-child(3) {
    grid-column: 1 / 6;
    grid-row: 2 / 3;
}

.project-card:nth-child(4) {
    grid-column: 6 / 13;
    grid-row: 2 / 3;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: var(--transition-slow);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: white;
    transform: translateY(0);
    opacity: 1;
    transition: var(--transition-fast);
}

.project-info h3 {
    color: var(--color-white);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.project-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.project-card:hover img {
    transform: scale(1.1);
    opacity: 0.7;
}

.project-card:hover .project-info {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
}

.project-card:hover::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid var(--color-bronze);
    border-radius: var(--radius-md);
    pointer-events: none;
}

/* ========== TECH SPECS / BRANDS ========== */
.text-center-max {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #666;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tech-card {
    background: var(--color-white);
    padding: 40px;
    text-align: center;
    border-top: 5px solid var(--color-navy);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.tech-card:hover {
    border-top-color: var(--color-bronze);
    transform: translateY(-10px);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--color-sage);
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #ddd;
}

.brand-title {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-logos span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    opacity: 0.7;
    transition: var(--transition-fast);
}

.brand-logos span:hover {
    opacity: 1;
    color: var(--color-bronze);
}

/* ========== CALCULATOR SECTION ========== */
.calculator-section {
    background: linear-gradient(135deg, var(--color-navy) 0%, #2a3a4a 100%);
    padding: 80px 0;
    color: var(--color-white);
}

.calc-lead {
    font-size: 2.5rem;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 10px;
}

.calc-sub {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 40px;
}

.calc-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.calc-input {
    padding: 18px 20px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--color-white);
    color: var(--color-text);
}

.calc-input::placeholder {
    color: #999;
}

.calc-row {
    display: flex;
    gap: 15px;
}

.calc-input-full {
    width: 100%;
}

.calc-input-flex {
    flex: 1;
}

.btn-bronze {
    background: var(--color-bronze);
    border: none;
    color: var(--color-white);
    font-size: 1rem;
    padding: 18px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-bronze:hover {
    background: #d4af6a;
    transform: translateY(-2px);
}

/* ========== CONTACT ========== */
.contact-wrapper {
    display: flex;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.contact-info {
    flex: 1;
    background-color: var(--color-navy);
    color: white;
    padding: 60px;
}

.contact-info h3 {
    color: var(--color-white);
    margin-bottom: 15px;
}

.contact-intro {
    margin-bottom: 30px;
    opacity: 0.8;
}

.contact-detail {
    margin-top: 15px;
}

.contact-form-container {
    flex: 1.5;
    padding: 60px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    background: #f9f9f9;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-bronze);
    background: var(--color-white);
}

.btn-navy-outline {
    border: 2px solid var(--color-navy);
    color: var(--color-navy);
    background: transparent;
}

.btn-navy-outline:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
}

/* ========== FOOTER ========== */
footer {
    background-color: var(--color-navy);
    color: #888;
    padding: 50px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* ========== STICKY MOBILE BAR ========== */
.sticky-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    /* Hidden on desktop */
    background: var(--color-white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-whatsapp {
    background: #25D366;
    color: var(--color-white);
}

/* ========== SCROLL REVEAL ========== */
.scroll-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: var(--transition-slow);
}

.scroll-reveal.hidden-initial {
    opacity: 0;
    transform: translateY(40px);
}

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

/* ========== SUBPAGES ========== */
body.subpage {
    padding-top: 0;
}

.nav-solid {
    background-color: var(--color-navy) !important;
    background: var(--color-navy) !important;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--color-navy) 0%, #2a3a4a 100%);
    padding: 150px 0 80px;
    color: var(--color-white);
}

.page-header h1 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

/* Breadcrumb */
nav.breadcrumb {
    position: static;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    background: transparent !important;
    box-shadow: none;
    z-index: auto;
    width: auto;
    justify-content: flex-start;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

.breadcrumb a::after {
    display: none !important;
}

.breadcrumb a:hover {
    color: var(--color-bronze);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 10px;
}

/* About Page */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    text-align: center;
    padding: 25px 30px;
    background: var(--color-offwhite);
    border-radius: var(--radius-md);
}

.stat-box .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-bronze);
    font-family: var(--font-heading);
}

.stat-box .stat-label {
    font-size: 0.9rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

/* History Timeline */
.history-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.history-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.history-item::before {
    content: '';
    position: absolute;
    left: 110px;
    top: 0;
    bottom: -50px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-bronze), rgba(197, 160, 89, 0.2));
}

.history-item:last-child::before {
    display: none;
}

.history-year {
    width: 100px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-bronze);
    font-family: var(--font-heading);
    flex-shrink: 0;
    padding-top: 10px;
}

.history-content {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    flex: 1;
    position: relative;
}

.history-content::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 15px;
    width: 15px;
    height: 15px;
    background: var(--color-bronze);
    border-radius: 50%;
    border: 4px solid var(--color-offwhite);
}

.history-content h3 {
    margin-bottom: 10px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-navy) 0%, #2a3a4a 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--color-bronze);
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-bronze) 0%, #d4af6a 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-section .btn-main {
    background: var(--color-white);
    color: var(--color-navy);
    border-color: var(--color-white);
}

.cta-section .btn-main:hover {
    background: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
}

/* Contact Page */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

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

.contact-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

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

.contact-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-navy);
    border-radius: 50%;
    margin-bottom: 15px;
}

.contact-card-icon i {
    font-size: 1.2rem;
    color: var(--color-bronze);
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-card p,
.contact-card a {
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-card a:hover {
    color: var(--color-bronze);
}

/* Contact Form Large */
.contact-form-large {
    background: var(--color-white);
    padding: 50px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.contact-form-large h2 {
    margin-bottom: 10px;
}

.contact-form-large>p {
    color: #666;
    margin-bottom: 30px;
}

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

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

.contact-form .form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-navy);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    background: var(--color-offwhite);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-bronze);
    background: var(--color-white);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    margin-top: 3px;
}

.checkbox-label span {
    font-size: 0.9rem;
    color: #666;
}

/* Map Section */
.map-section {
    padding-top: 80px;
}

.map-container {
    margin-top: 40px;
}

.map-container iframe {
    display: block;
}

/* Quick Contact */
.quick-contact-section {
    background: var(--color-navy);
    padding: 60px 0;
}

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

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.quick-btn:hover {
    background: var(--color-bronze);
    transform: translateY(-3px);
}

.quick-btn.whatsapp:hover {
    background: #25D366;
}

.quick-btn i {
    font-size: 1.5rem;
}

/* ========== CORPORATE PAGE ========== */
.page-header-large {
    padding: 180px 0 100px;
    text-align: center;
}

.page-header-large h1 {
    font-size: 3.5rem;
}

/* Corporate Cards */
.corp-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.corp-card {
    display: block;
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.corp-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border-color: var(--color-bronze);
}

.corp-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-navy) 0%, #2a3a4a 100%);
    border-radius: 50%;
    margin: 0 auto 25px;
}

.corp-card-icon i {
    font-size: 2rem;
    color: var(--color-bronze);
}

.corp-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.corp-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.corp-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-bronze);
    font-weight: 600;
    transition: var(--transition-fast);
}

.corp-card:hover .corp-card-link {
    gap: 12px;
}

/* Stats Section */
.stats-section {
    background: var(--color-navy);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-bronze);
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.stat-item .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Vision Grid */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vision-card {
    background: var(--color-white);
    padding: 50px 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.vision-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bronze) 0%, #d4af6a 100%);
    border-radius: 50%;
    margin: 0 auto 25px;
}

.vision-icon i {
    font-size: 2rem;
    color: var(--color-white);
}

.vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.vision-card p {
    line-height: 1.8;
    color: #555;
}

/* ========== PROJECTS PAGE ========== */
.project-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: var(--color-offwhite);
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-navy);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--color-bronze);
}

.filter-btn.active {
    background: var(--color-navy);
    color: var(--color-white);
}

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

.project-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.project-status {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-status.completed {
    background: var(--color-sage);
    color: var(--color-white);
}

.project-status.ongoing {
    background: var(--color-bronze);
    color: var(--color-white);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.project-location {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.project-location i {
    color: var(--color-bronze);
    margin-right: 5px;
}

.project-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}

.project-specs i {
    color: var(--color-navy);
    margin-right: 5px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-bronze);
    font-weight: 600;
    transition: var(--transition-fast);
}

.project-link:hover {
    gap: 12px;
}

/* ========== GUIDE PAGE ========== */
.guide-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: #444;
}

/* Guide Cards */
.guide-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.guide-card {
    display: block;
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
}

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

.guide-card-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(197, 160, 89, 0.15);
    font-family: var(--font-heading);
    line-height: 1;
}

.guide-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-navy) 0%, #2a3a4a 100%);
    border-radius: 50%;
    margin-bottom: 20px;
}

.guide-card-icon i {
    font-size: 1.5rem;
    color: var(--color-bronze);
}

.guide-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.guide-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.guide-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-bronze);
    font-weight: 600;
    font-size: 0.95rem;
}

.guide-card:hover .guide-card-link {
    gap: 12px;
}

/* Process Overview */
.process-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-card);
}

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

.process-icon i {
    font-size: 1.2rem;
    color: var(--color-white);
}

.process-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.process-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Dark Section Header */
.section-header.light h2 {
    color: var(--color-white);
}

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

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--color-bronze);
    margin-bottom: 20px;
}

.benefit-item h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ========== FAQ PAGE ========== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-bronze);
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-category h3 i {
    color: var(--color-bronze);
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-bronze);
}

.faq-question i {
    transition: var(--transition-fast);
    color: var(--color-bronze);
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.open .faq-answer {
    max-height: 1000px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* ========== TEAM PAGE ========== */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.leader-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info {
    padding: 30px 30px 30px 0;
}

.leader-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.leader-title {
    display: block;
    color: var(--color-bronze);
    font-weight: 600;
    margin-bottom: 15px;
}

.leader-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.leader-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-navy);
    color: var(--color-bronze);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.leader-social a:hover {
    background: var(--color-bronze);
    color: var(--color-white);
}

/* Department Grid */
.department-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.department-card {
    background: var(--color-white);
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-fast);
}

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

.department-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-navy) 0%, #2a3a4a 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.department-icon i {
    font-size: 1.8rem;
    color: var(--color-bronze);
}

.department-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.department-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.team-count {
    display: inline-block;
    padding: 8px 15px;
    background: var(--color-offwhite);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-navy);
    font-weight: 600;
}

.team-count i {
    margin-right: 5px;
    color: var(--color-bronze);
}

/* ========== MOBILE MENU ========== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-white);
    margin: 3px 0;
    transition: var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--color-navy);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }

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

    .nav-links a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        padding: 10px 15px;
        display: none;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .nav-dropdown .dropdown-menu a {
        padding: 12px 0;
    }
}

/* ========== PROCESS DETAILED PAGE ========== */
.process-detailed {
    max-width: 900px;
    margin: 0 auto;
}

.process-step-large {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.process-step-large::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 100px;
    bottom: -50px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-bronze), transparent);
}

.process-step-large:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-navy);
    color: var(--color-bronze);
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.step-content {
    background: var(--color-white);
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.step-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bronze);
    border-radius: 50%;
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 1.3rem;
    color: var(--color-white);
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.step-content>p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-details {
    background: var(--color-offwhite);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.step-details h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--color-navy);
}

.step-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-details li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
}

.step-details li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-bronze);
    font-size: 0.8rem;
}

.step-duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--color-navy);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.step-duration i {
    color: var(--color-bronze);
}

/* Timeline Summary */
.timeline-summary {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.timeline-bar {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 25px;
}

.timeline-segment {
    padding: 20px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.timeline-segment:last-child {
    border-right: none;
}

.timeline-segment:nth-child(1) {
    background: rgba(197, 160, 89, 0.3);
}

.timeline-segment:nth-child(2) {
    background: rgba(197, 160, 89, 0.4);
}

.timeline-segment:nth-child(3) {
    background: rgba(197, 160, 89, 0.6);
}

.timeline-segment:nth-child(4) {
    background: rgba(197, 160, 89, 0.8);
}

.segment-1 {
    flex: 1;
}

.segment-2 {
    flex: 2;
}

.segment-3 {
    flex: 8;
}

.segment-4 {
    flex: 1;
}

.segment-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.segment-time {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-white);
}

.timeline-total {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.timeline-total strong {
    color: var(--color-bronze);
    font-size: 1.3rem;
}

/* ========== VALUES PAGE ========== */
.values-large-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-large-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-fast);
    border-bottom: 4px solid transparent;
}

.value-large-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border-bottom-color: var(--color-bronze);
}

.value-icon-large {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-navy) 0%, #2a3a4a 100%);
    border-radius: 50%;
    margin: 0 auto 25px;
}

.value-icon-large i {
    font-size: 2.2rem;
    color: var(--color-bronze);
}

.value-large-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-large-card>p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.value-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--color-offwhite);
}

.value-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-bronze);
    font-family: var(--font-heading);
}

.value-label {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Commitment Box */
.commitment-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.commitment-box h2 {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 20px;
}

.commitment-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    line-height: 1.8;
}

/* ========== PARTNERS PAGE ========== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.partner-card {
    background: var(--color-white);
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-fast);
    position: relative;
    border: 2px solid var(--color-bronze);
}

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



.partner-logo {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-offwhite);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-navy);
    font-family: var(--font-heading);
}

.partner-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.partner-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.partner-tag {
    display: inline-block;
    padding: 6px 15px;
    background: var(--color-bronze);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== KAT KARSILIGI PAGE ========== */
.definition-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.definition-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bronze) 0%, #d4af6a 100%);
    border-radius: 50%;
    margin: 0 auto 25px;
}

.definition-icon i {
    font-size: 2.5rem;
    color: var(--color-white);
}

.definition-box h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.definition-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

/* Model Cards */
.model-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.model-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.model-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-navy);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.model-icon i {
    font-size: 1.8rem;
    color: var(--color-bronze);
}

.model-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.model-share {
    padding: 20px;
    background: var(--color-offwhite);
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
}

.share-percent {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-bronze);
    font-family: var(--font-heading);
}

.share-label {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
}

.model-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.model-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    border-bottom: 1px solid var(--color-offwhite);
}

.model-list li:last-child {
    border-bottom: none;
}

.model-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-sage);
}

.model-divider {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bronze);
    border-radius: 50%;
    flex-shrink: 0;
}

.model-divider i {
    font-size: 1.5rem;
    color: var(--color-white);
}

/* Factors Grid */
.factors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.factor-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-fast);
}

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

.factor-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-offwhite);
    border-radius: 50%;
    margin: 0 auto 15px;
}

.factor-icon i {
    font-size: 1.5rem;
    color: var(--color-bronze);
}

.factor-card h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.factor-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Checklist Grid */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.checklist-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.check-icon {
    flex-shrink: 0;
}

.check-icon i {
    font-size: 1.8rem;
    color: var(--color-sage);
}

.check-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.check-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ========== MEDIA PAGE ========== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

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

.news-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
}

.news-card.featured .news-image img {
    min-height: 300px;
}

.news-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 8px 15px;
    background: var(--color-bronze);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
}

.news-content {
    padding: 30px;
}

.news-category {
    display: inline-block;
    padding: 5px 12px;
    background: var(--color-offwhite);
    color: var(--color-navy);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.news-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-card.featured h3 {
    font-size: 1.5rem;
}

.news-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-bronze);
    font-weight: 600;
    transition: var(--transition-fast);
}

.news-link:hover {
    gap: 12px;
}

/* Press List */
.press-list {
    max-width: 900px;
    margin: 0 auto;
}

.press-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    margin-bottom: 20px;
}

.press-date {
    flex-shrink: 0;
    width: 70px;
    text-align: center;
    padding: 15px;
    background: var(--color-navy);
    border-radius: var(--radius-sm);
}

.press-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-bronze);
    line-height: 1;
}

.press-date .month {
    display: block;
    font-size: 0.85rem;
    color: var(--color-white);
    text-transform: uppercase;
}

.press-content {
    flex: 1;
}

.press-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.press-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.press-link {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-offwhite);
    border-radius: 50%;
    color: var(--color-navy);
    transition: var(--transition-fast);
}

.press-link:hover {
    background: var(--color-bronze);
    color: var(--color-white);
}

/* Media Kit Box */
.media-kit-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 50px;
    background: var(--color-offwhite);
    border-radius: var(--radius-md);
    border-left: 5px solid var(--color-bronze);
}

.kit-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.kit-info p {
    color: #666;
}

/* Media Contact */
.media-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.media-contact-info h3 {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 15px;
}

.media-contact-info>p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.contact-email,
.contact-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-email i,
.contact-phone i {
    color: var(--color-bronze);
}

.social-follow h4 {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 20px;
}

.social-links-large {
    display: flex;
    gap: 15px;
}

.social-links-large a {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.3rem;
    transition: var(--transition-fast);
}

.social-links-large a:hover {
    background: var(--color-bronze);
    transform: translateY(-3px);
}

/* ========== PROJECTS LIST PAGE ========== */
.projects-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.project-list-item {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.project-list-item .project-image {
    position: relative;
    overflow: hidden;
}

.project-list-item .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
}

.project-year {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    background: var(--color-bronze);
    color: var(--color-white);
    font-weight: 700;
    border-radius: 50px;
}

.project-details {
    padding: 30px 30px 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-type {
    display: inline-block;
    padding: 5px 12px;
    background: var(--color-offwhite);
    color: var(--color-navy);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    margin-bottom: 15px;
    width: fit-content;
}

.project-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project-location {
    color: #666;
    margin-bottom: 15px;
}

.project-location i {
    color: var(--color-bronze);
    margin-right: 8px;
}

.project-desc {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-specs {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.project-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 0.95rem;
}

.project-specs i {
    color: var(--color-bronze);
}

/* ========== ONGOING PROJECTS PAGE ========== */
.ongoing-projects {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ongoing-project-card {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 50px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.ongoing-image {
    position: relative;
}

.ongoing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.progress-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    background: var(--color-navy);
    border-radius: var(--radius-sm);
    text-align: center;
}

.progress-percent {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-bronze);
    line-height: 1;
}

.progress-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.ongoing-content {
    padding: 40px 40px 40px 0;
}

.progress-bar {
    height: 8px;
    background: var(--color-offwhite);
    border-radius: 50px;
    overflow: hidden;
    margin: 20px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-bronze) 0%, #d4af6a 100%);
    border-radius: 50px;
    width: 0;
    animation: progressGrow 1.5s ease-out forwards;
}

.progress-fill[data-progress="65"] {
    width: 65%;
}

.progress-fill[data-progress="25"] {
    width: 25%;
}

.progress-fill[data-progress="80"] {
    width: 80%;
}

.progress-fill[data-progress="45"] {
    width: 45%;
}

.project-milestones {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--color-offwhite);
}

.milestone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 0.9rem;
}

.milestone i {
    font-size: 1rem;
}

.milestone.completed {
    color: var(--color-sage);
}

.milestone.active {
    color: var(--color-bronze);
}

.milestone.active i {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes progressGrow {
    from {
        width: 0;
    }
}

/* ========== MEVZUAT PAGE ========== */
.law-highlight {
    display: flex;
    gap: 40px;
    padding: 50px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border-left: 5px solid var(--color-bronze);
}

.law-icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-navy);
    border-radius: 50%;
}

.law-icon i {
    font-size: 2.5rem;
    color: var(--color-bronze);
}

.law-number {
    display: inline-block;
    padding: 5px 15px;
    background: var(--color-bronze);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 15px;
}

.law-content h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.law-content>p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-small {
    padding: 12px 25px;
    font-size: 0.9rem;
}

/* Law Points */
.law-points {
    max-width: 900px;
    margin: 0 auto;
}

.law-point {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    margin-bottom: 20px;
}

.point-number {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-navy);
    color: var(--color-bronze);
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50%;
}

.point-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.point-content p {
    color: #666;
    line-height: 1.6;
}

/* Regulation List */
.regulation-list {
    max-width: 900px;
    margin: 0 auto;
}

.regulation-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    margin-bottom: 20px;
}

.regulation-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-offwhite);
    border-radius: 50%;
}

.regulation-icon i {
    font-size: 1.5rem;
    color: var(--color-navy);
}

.regulation-content {
    flex: 1;
}

.regulation-content h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.regulation-content p {
    color: #666;
    font-size: 0.95rem;
}

.regulation-link {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-offwhite);
    border-radius: 50%;
    color: var(--color-navy);
    transition: var(--transition-fast);
}

.regulation-link:hover {
    background: var(--color-bronze);
    color: var(--color-white);
}

/* Disclaimer */
.disclaimer-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-box>i {
    font-size: 2rem;
    color: var(--color-bronze);
    flex-shrink: 0;
}

.disclaimer-content h4 {
    color: var(--color-white);
    margin-bottom: 10px;
}

.disclaimer-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ========== ARSA SAHİPLERİ PAGE ========== */
.arsa-intro {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.intro-text>p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.intro-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.intro-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.intro-benefit i {
    color: var(--color-sage);
}

.intro-form {
    background: var(--color-white);
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.intro-form h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    text-align: center;
}

.arsa-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.arsa-form input {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.arsa-form input:focus {
    outline: none;
    border-color: var(--color-bronze);
}

.btn-full {
    width: 100%;
}

.form-note {
    text-align: center;
    color: #888;
    font-size: 0.85rem;
    margin-top: 15px;
}

.form-note i {
    margin-right: 5px;
}

/* Why Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--color-white);
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-fast);
}

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

.why-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-navy);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 1.5rem;
    color: var(--color-bronze);
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.why-card p {
    color: #666;
    line-height: 1.6;
}

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

.testimonial-card {
    background: var(--color-white);
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 20px;
}

.testimonial-stars i {
    margin-right: 3px;
}

.testimonial-text {
    color: #555;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.author-name {
    font-weight: 700;
    color: var(--color-navy);
}

.author-project {
    font-size: 0.9rem;
    color: var(--color-bronze);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-bronze);
    color: var(--color-bronze);
}

.btn-outline:hover {
    background: var(--color-bronze);
    color: var(--color-white);
}

/* ========== ANIMATIONS ========== */
@keyframes zoomSlow {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    /* Hamburger menü butonu göster */
    .mobile-menu-btn {
        display: flex;
        z-index: 1002;
    }

    /* Mobil menü paneli */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-navy);
        flex-direction: column;
        padding: 80px 0 30px;
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 1001;
        display: flex;
    }

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

    .nav-links>a,
    .nav-links>.nav-dropdown {
        width: 100%;
        padding: 0;
    }

    .nav-links>a,
    .nav-dropdown>.dropdown-trigger {
        display: block;
        padding: 18px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
    }

    /* Mobil dropdown stilleri */
    .nav-dropdown {
        position: static !important;
    }

    .dropdown-trigger {
        justify-content: space-between;
        width: 100%;
    }

    .dropdown-menu {
        position: static !important;
        left: 0 !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        box-shadow: none !important;
        background: rgba(0, 0, 0, 0.3) !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        min-width: 100% !important;
        border-radius: 0 !important;
        pointer-events: auto;
        transition: max-height 0.3s ease, visibility 0s 0.3s;
    }

    .nav-dropdown.open .dropdown-menu {
        visibility: visible !important;
        max-height: 500px !important;
        transform: none !important;
        transition: max-height 0.3s ease, visibility 0s 0s;
    }

    .dropdown-menu a {
        padding: 15px 25px 15px 40px;
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--color-bronze) !important;
        padding-left: 45px;
    }

    /* Mobil menü overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        z-index: 1000;
        transition: opacity 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .trust-item h4 {
        font-size: 2rem;
    }

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

    .corp-img {
        display: none;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        margin-left: 0;
        text-align: left;
    }

    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 10px;
        right: auto;
    }

    .projects-container {
        display: block;
    }

    .project-card {
        margin-bottom: 20px;
        height: 250px;
    }

    .calc-row {
        flex-direction: column;
        gap: 15px;
    }

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

    .sticky-mobile-bar {
        display: flex;
    }

    body {
        padding-bottom: 70px;
    }

    /* Subpage responsive */
    .page-header h1,
    .page-header-large h1 {
        font-size: 2rem;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        flex-direction: column;
        gap: 15px;
    }

    .about-image {
        order: -1;
    }

    .values-grid,
    .corp-card-grid,
    .guide-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid,
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

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

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

    .process-overview {
        grid-template-columns: 1fr 1fr;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-large {
        padding: 30px;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .history-item {
        flex-direction: column;
        gap: 20px;
    }

    .history-item::before {
        display: none;
    }

    .history-content::before {
        display: none;
    }
}

/* Small mobile */
@media (max-width: 576px) {

    .values-grid,
    .corp-card-grid,
    .guide-cards-grid,
    .stats-grid,
    .benefits-grid,
    .projects-grid,
    .process-overview {
        grid-template-columns: 1fr;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .stat-item .stat-number {
        font-size: 2.2rem;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .process-icon {
        margin: 0 auto;
    }
}

/* ========== LEGAL PAGES ========== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--color-navy);
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-bronze);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--color-text);
}

.legal-content ul {
    margin: 15px 0 20px 20px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--color-text);
}

.legal-content strong {
    color: var(--color-navy);
}

.legal-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #888;
}

/* ========== PROJECTS PAGE ========== */
.project-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 30px;
    border: 1px solid #eee;
    background: var(--color-white);
    color: var(--color-text);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
}

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

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

/* ========== ONGOING PROJECTS ========== */
.ongoing-projects {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ongoing-project-card {
    display: flex;
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

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

.ongoing-image {
    position: relative;
    width: 40%;
    min-height: 300px;
    flex-shrink: 0;
}

.ongoing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.progress-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-navy);
    padding: 15px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.progress-percent {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-bronze);
    line-height: 1;
}

.progress-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-white);
    text-transform: uppercase;
    margin-top: 5px;
}

.ongoing-content {
    flex: 1;
    padding: 30px;
}

.ongoing-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-navy);
}

/* Override white text for light background cards */
.ongoing-content .project-specs,
.ongoing-content .project-specs span,
.project-details .project-specs,
.project-details .project-specs span {
    color: var(--color-text) !important;
}

.ongoing-content .project-location,
.project-details .project-location {
    color: #666;
    margin-bottom: 10px;
}

.ongoing-content .project-location i,
.project-details .project-location i {
    color: var(--color-bronze);
    margin-right: 5px;
}

.progress-bar {
    height: 8px;
    background: var(--color-offwhite);
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-bronze) 0%, var(--color-sage) 100%);
    border-radius: 10px;
    transition: width 1s ease;
}

.project-milestones {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.milestone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: var(--color-offwhite);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.milestone.completed {
    background: rgba(124, 140, 116, 0.15);
    color: var(--color-sage);
}

.milestone.completed i {
    color: var(--color-sage);
}

.milestone.active {
    background: rgba(197, 165, 114, 0.15);
    color: var(--color-bronze);
}

.milestone.active i {
    color: var(--color-bronze);
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ========== PROJECTS LIST (Tamamlanan) ========== */
.projects-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.project-list-item {
    display: flex;
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

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

.project-list-item .project-image {
    position: relative;
    width: 35%;
    min-height: 250px;
    flex-shrink: 0;
}

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

.project-year {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-bronze);
    color: var(--color-white);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.project-details {
    flex: 1;
    padding: 30px;
}

.project-type {
    display: inline-block;
    background: var(--color-offwhite);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 10px;
}

.project-details h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.project-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ========== PROJECTS FILTER ========== */
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.project-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-navy);
    /* Dark background */
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    color: var(--color-white);
    margin-bottom: 5px;
}

.project-location {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.project-specs {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    color: var(--color-white) !important;
    /* Force White */
    font-size: 0.9rem;
}

.project-specs span {
    color: var(--color-white) !important;
}

.project-specs i {
    color: var(--color-bronze);
    margin-right: 5px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    /* White link */
    font-weight: 600;
    margin-top: 10px;
}

.project-link i {
    color: var(--color-bronze);
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(5px);
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 992px) {

    /* Projects Grid */
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* News Grid */
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card.featured {
        grid-template-columns: 1fr;
    }

    /* Partners Grid */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Values Grid */
    .values-large-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonials Grid */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Media Contact */
    .media-contact {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Checklist Grid */
    .checklist-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    /* Projects Grid */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-image {
        height: 200px;
    }

    .project-info {
        padding: 20px;
    }

    /* News Grid */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-card.featured {
        grid-template-columns: 1fr;
    }

    .news-card.featured .news-image img {
        min-height: 200px;
    }

    .news-image img {
        min-height: 180px;
    }

    .news-content {
        padding: 20px;
    }

    .news-content h3 {
        font-size: 1.1rem;
    }

    /* Partners Grid */
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .partner-card {
        padding: 25px;
    }

    .partner-logo {
        margin-bottom: 15px;
    }

    .logo-text {
        font-size: 1rem;
    }

    /* Values Grid */
    .values-large-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-large-card {
        padding: 30px;
    }

    /* Testimonials Grid */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px;
    }

    /* Projects List Items */
    .project-list-item {
        flex-direction: column;
    }

    .project-list-item .project-image {
        width: 100%;
        height: 200px;
    }

    .project-list-item .project-details {
        padding: 20px;
    }

    /* Ongoing Projects */
    .ongoing-project-card {
        flex-direction: column;
    }

    .ongoing-image {
        width: 100%;
        height: 220px;
    }

    .ongoing-content {
        padding: 20px;
    }

    /* Project Milestones */
    .project-milestones {
        flex-wrap: wrap;
        gap: 10px;
    }

    .milestone {
        flex: 1 1 45%;
        font-size: 0.85rem;
    }

    /* Factor Cards */
    .factor-cards {
        grid-template-columns: 1fr;
    }

    /* Press Items */
    .press-item {
        flex-direction: column;
        text-align: center;
    }

    .press-link {
        width: 100%;
        border-radius: var(--radius-md);
        padding: 12px;
    }

    /* Media Kit Box */
    .media-kit-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Hero Section */
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-desc {
        font-size: 0.95rem;
    }

    /* Footer Grid */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

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

    /* Trust Bar */
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .trust-item h4 {
        font-size: 1.5rem;
    }

    .trust-item p {
        font-size: 0.8rem;
    }

    /* About Stats */
    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-box {
        flex: 1 1 45%;
        min-width: 120px;
    }

    /* Guide Intro */
    .guide-intro h2 {
        font-size: 1.6rem;
    }

    .guide-intro .lead-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    /* Extra small screens */
    .projects-grid {
        gap: 15px;
    }

    .project-image {
        height: 180px;
    }

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

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

    .about-stats {
        flex-direction: column;
    }

    .stat-box {
        flex: 1 1 100%;
    }

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

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .btn-main {
        width: 100%;
        text-align: center;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .milestone {
        flex: 1 1 100%;
    }
}