/* ========================================
   MIRAY İNŞAAT - MODERN PROFESSIONAL CSS
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary-blue: #003D82;
    --primary-blue-dark: #002A5C;
    --primary-blue-light: #0052AD;
    --primary-teal: #0d9488;
    --primary-teal-dark: #0a6860;

    /* Neutrals */
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #707070;
    --white: #FFFFFF;
    --bg-light: #ececec;
    --bg-dark: #0A1929;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Condensed', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-medium);
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
}

.container-full {
    max-width: 100%;
    padding: 0 4rem;
}

.container-kurumsal {
    max-width: 1600px;
}

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

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--primary-teal);
    margin-bottom: 1.5rem;
}

.section-line.center {
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: 'Roboto Condensed', sans-serif;
}

.btn-primary {
    background: var(--primary-teal);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-teal-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-block {
    width: 100%;
}

/* ======================
   NAVIGATION
   ====================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 25, 41, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: none;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: var(--bg-dark) !important;
    backdrop-filter: none !important;
    box-shadow: var(--shadow-md) !important;
}

/* Projects page - always opaque header */
.page-projects .navbar {
    background: var(--bg-dark);
    backdrop-filter: none;
    box-shadow: var(--shadow-md);
}

.navbar-container {
    max-width: 100%;
    padding: 0.75rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2rem;
    gap: 2rem;
}

.nav-brand {
    order: 1;
}

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

.navbar .logo:hover {
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition-fast);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    order: 2;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.5rem 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    order: 3;
    margin-left: 2rem;
}

.lang-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    transition: var(--transition-fast);
    letter-spacing: 0.5px;
}

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

.lang-separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    background: var(--white);
    min-width: 280px;
    box-shadow: var(--shadow-lg);
    border-radius: 4px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-normal);
    list-style: none;
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.85rem 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

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

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
}

/* ======================
   HERO SECTION - Full Screen Video
   ====================== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 4rem;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 20%,
        transparent 40%,
        transparent 50%,
        rgba(0, 0, 0, 0.4) 75%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 1200px;
    padding: 0 2rem;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons .btn-primary {
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3);
}

.hero-buttons .btn-primary:hover {
    box-shadow: 0 6px 30px rgba(13, 148, 136, 0.5);
    transform: translateY(-3px);
}

.hero-buttons .btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* ======================
   ABOUT SECTION
   ====================== */
.about {
    padding: 6rem 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.value-item i {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

/* ======================
   SECTORS SECTION
   ====================== */
.sectors {
    padding: 6rem 0;
    background: var(--white);
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.kurumsal-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.sector-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-left: 4px solid var(--primary-blue);
    transition: var(--transition-normal);
}

.kurumsal-card {
    padding: 2.5rem 1.8rem;
    text-align: center;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #E0E0E0;
    border-left: none;
}

.kurumsal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.kurumsal-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.kurumsal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.kurumsal-card .sector-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    transition: var(--transition-normal);
}

.kurumsal-card .sector-icon i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.kurumsal-card:hover .sector-icon {
    background: var(--primary-blue);
}

.kurumsal-card:hover .sector-icon i {
    color: var(--white);
}

.sector-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition-normal);
}

.sector-card:hover .sector-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
}

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

.sector-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.sector-card > p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.sector-list {
    list-style: none;
    margin: 2rem 0;
}

.sector-list li {
    padding: 0.75rem 0;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sector-list i {
    color: var(--primary-blue);
    font-size: 1rem;
}

.sector-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition-normal);
}

.sector-link:hover {
    color: var(--primary-teal);
    gap: 1rem;
}

.sector-link i {
    transition: var(--transition-normal);
}

/* ======================
   PROJECTS INDEX GRID SECTION - VolkerWessels Style
   ====================== */
.projects-index-grid {
    padding: 0;
    background: var(--bg-light);
    margin-bottom: 0;
}

.index-grid-wrapper {
    width: 100%;
}

.index-grid-items {
    width: 100%;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 300px;
    gap: 0;
}

@media (min-width: 600px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: clamp(15rem, calc(4.9038rem + 11.5385vw), 18.75rem);
    }
}

@media (min-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1920px) {
    .projects-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Grid Title Item */
.index-grid-title-item {
    background: var(--white);
    padding: 2rem 3rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    grid-column: span 1;
    grid-row: span 1;
    height: 300px;
}

@media (min-width: 600px) {
    .index-grid-title-item {
        padding: 2.5rem 4rem;
        grid-column: span 1;
        grid-row: span 1;
        height: clamp(15rem, calc(4.9038rem + 11.5385vw), 18.75rem);
    }
}

@media (min-width: 1200px) {
    .index-grid-title-item {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (min-width: 1920px) {
    .index-grid-title-item {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.index-grid-title-content {
    width: 100%;
    text-align: left;
}

.index-grid-title-item h2 {
    font-size: 2rem;
    margin: 0 0 1rem 0;
    font-weight: 800;
    color: var(--text-dark);
    text-align: left;
    letter-spacing: 0.5px;
}

@media (min-width: 968px) {
    .index-grid-title-item h2 {
        font-size: 2.5rem;
    }
}

.index-grid-title-item .section-line {
    width: 50px;
    height: 3px;
    background: var(--primary-teal);
    margin: 0 0 1rem 0;
}

.index-grid-title-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin: 0;
    max-width: 90%;
}

/* Project Teaser */
.project-teaser {
    position: relative;
    overflow: hidden;
    grid-column: span 1;
    grid-row: span 1;
    height: 300px;
}

@media (min-width: 600px) {
    .project-teaser {
        grid-row: span 2;
        height: clamp(30rem, calc(9.8077rem + 23.0769vw), 37.5rem);
    }
}

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

/* Project Teaser Smaller */
.project-teaser-smaller {
    grid-column: span 1;
    grid-row: span 1;
    height: 300px;
}

@media (min-width: 600px) {
    .project-teaser-smaller {
        height: clamp(15rem, calc(4.9038rem + 11.5385vw), 18.75rem);
    }
}

/* Project Teaser Big */
.project-teaser-big {
    grid-column: span 1;
    grid-row: span 1;
    height: 300px;
}

@media (min-width: 600px) {
    .project-teaser-big {
        grid-row: span 2;
        height: clamp(30rem, calc(9.8077rem + 23.0769vw), 37.5rem);
    }
}

@media (min-width: 1200px) {
    .project-teaser-big {
        grid-column: span 2;
    }
}

@media (min-width: 1920px) {
    .project-teaser-big {
        grid-column: 3 / span 2;
        grid-row: 3 / span 2;
    }
}

/* Visual */
.project-teaser-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
}

.project-teaser-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.project-teaser-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 300ms ease-in-out;
}

.project-teaser-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
}

.project-teaser-smaller .project-teaser-image::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 65%);
}

/* Content */
.project-teaser-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}

@media (min-width: 600px) {
    .project-teaser-content {
        padding: 1.5rem;
    }
}

/* Labels */
.project-teaser-toplabels {
    display: flex;
    gap: 0.5rem;
}

.project-label {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.625rem;
}

.project-label-bg {
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 0.875rem;
}

.project-label-ongoing {
    background: var(--primary-teal);
}

/* Title */
.project-teaser-title {
    margin-top: auto;
    margin-bottom: 0;
    font-size: 1.325rem;
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 1400px) {
    .project-teaser-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 1920px) {
    .project-teaser-title {
        font-size: 1.75rem;
    }
}

.project-teaser-smaller .project-teaser-title {
    font-size: 1.25rem;
}

@media (min-width: 1920px) {
    .project-teaser-smaller .project-teaser-title {
        font-size: 1.5rem;
    }
}

.project-teaser-title a {
    color: var(--white);
    text-decoration: none;
    transition: all 200ms linear;
}

.project-teaser-title a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
}

.project-teaser-title a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Bottom Labels */
.project-teaser-bottomlabels {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.project-teaser-bottomlabels .project-label:last-child {
    text-align: right;
}

/* Grid Links Item */
.index-grid-links-item {
    background: var(--white);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: span 1;
    grid-row: span 1;
    height: 300px;
}

@media (min-width: 600px) {
    .index-grid-links-item {
        height: clamp(15rem, calc(4.9038rem + 11.5385vw), 18.75rem);
    }
}

@media (min-width: 1200px) {
    .index-grid-links-item {
        grid-column: span 1;
    }
}

@media (min-width: 1920px) {
    .index-grid-links-item {
        grid-column: 4 / span 1;
        grid-row: 5 / span 1;
    }
}

.index-grid-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.projects-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-teal);
    border-radius: 4px;
    transition: var(--transition-normal);
}

.projects-more-link:hover {
    background: var(--primary-teal);
    color: var(--white);
    gap: 1rem;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.projects-more-link i {
    transition: var(--transition-normal);
}

/* ======================
   PROJECTS LIST PAGE
   ====================== */
/* Projects Filter Section */
.projects-filter-section {
    padding: 0 0 2rem;
    background: var(--white);
}

.projects-filter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .projects-filter-wrapper {
        flex-direction: row;
        justify-content: flex-start;
        gap: 2rem;
    }
}

.projects-filter-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-group-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-medium);
    margin-right: 0.5rem;
}

.project-filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-medium);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-filter-btn:hover:not(.disabled) {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    background: rgba(0, 86, 179, 0.05);
}

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

.project-filter-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Project Teaser Filter Animation */
.project-teaser {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.project-teaser.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

.projects-page-header {
    padding: 8rem 0 4rem;
    background: var(--white);
}

@media (min-width: 968px) {
    .projects-page-header {
        padding: 10rem 0 6rem;
    }
}

.projects-page-intro h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.projects-page-intro-text {
    max-width: 800px;
}

.projects-page-intro-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.projects-list-section {
    padding: 0;
    margin-bottom: 6rem;
}

.projects-list-wrapper {
    width: 100%;
}

.projects-list-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
}

@media (min-width: 600px) {
    .projects-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .projects-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1920px) {
    .projects-list-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.projects-list-grid .project-teaser {
    height: 400px;
    grid-row: span 1;
}

@media (min-width: 600px) {
    .projects-list-grid .project-teaser {
        height: 480px;
    }
}

/* ======================
   FEATURES SECTION
   ====================== */
.features {
    padding: 6rem 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-item {
    background: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #E0E0E0;
    transition: var(--transition-normal);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    transition: var(--transition-normal);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.feature-item:hover .feature-icon {
    background: var(--primary-blue);
}

.feature-item:hover .feature-icon i {
    color: var(--white);
}

.feature-item h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-medium);
}

/* ======================
   CTA SECTION
   ====================== */
.cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--bg-dark) 100%);
    padding: 5rem 0;
    color: var(--white);
}

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

.cta h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* ======================
   FOOTER
   ====================== */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-heading {
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-normal);
}

.footer-heading:hover {
    color: var(--primary-teal);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a:hover {
    color: var(--primary-teal);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

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

    .projects-masonry {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 300px;
    }

    .project-featured {
        grid-column: span 2;
        grid-row: span 2;
    }

    .project-wide {
        grid-column: span 2;
        grid-row: span 1;
    }

    .project-tall {
        grid-column: span 1;
        grid-row: span 2;
    }

    .projects-footer {
        padding: 2rem 0 5rem;
    }
}

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
        order: 3;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-md);
        justify-content: flex-start;
    }

    .nav-menu.active {
        max-height: 600px;
        padding: 1rem 0;
    }

    .nav-menu li {
        padding: 0;
    }

    .nav-menu > li > a {
        display: block;
        padding: 1rem 2rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .language-selector {
        order: 2;
        margin-left: auto;
        margin-right: 1rem;
    }

    .navbar-container {
        padding: 0.75rem 2rem;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.3);
        max-height: 0;
        overflow: hidden;
    }

    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.8);
    }

    .dropdown-menu a:hover {
        background: rgba(0, 0, 0, 0.3);
        color: var(--primary-teal);
    }

    .has-dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 0.5rem 0;
    }

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

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

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

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

    .projects-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 280px;
    }

    .project-featured,
    .project-wide,
    .project-tall,
    .project-small {
        grid-column: span 1;
        grid-row: span 1;
    }

    .projects-footer {
        padding: 2rem 0 4rem;
    }

    .hero {
        padding-bottom: 3rem;
    }

    .container-full {
        padding: 0 2rem;
    }
}

@media (max-width: 576px) {
    .navbar .logo {
        height: 40px;
    }

    .navbar-container {
        padding: 0.5rem 1rem;
    }

    .hero {
        padding-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

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

    .projects {
        padding: 4rem 0 0;
    }

    .projects-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .project-featured,
    .project-wide,
    .project-tall,
    .project-small {
        grid-column: span 1;
        grid-row: span 1;
    }

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

    .projects-footer {
        padding: 2rem 0 4rem;
    }

    .project-overlay {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .project-info h4 {
        font-size: 18px;
    }

    .project-featured .project-info h4 {
        font-size: 20px;
    }

    .project-info p {
        font-size: 12px;
    }

    .project-badge {
        top: 20px;
        left: 20px;
        padding: 6px 12px;
        font-size: 10px;
    }

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

    .container-full {
        padding: 0 1rem;
    }
}
/* ======================
   PAGE HEADER (All internal pages)
   ====================== */
.page-header {
    position: relative;
    padding: 12rem 0 6rem;
    margin-top: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    text-align: center;
    color: var(--white);
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: url('../images/1.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

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

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* ======================
   ABOUT PAGE
   ====================== */
.about-page {
    padding: 6rem 0;
    background: var(--bg-light);
}

.about-page .about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.about-page .about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.about-page .about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.vision-statement {
    background: var(--white);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-teal);
}

.vision-statement .statement-content p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.vision-statement .statement-content p strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* ======================
   MISSION & VISION PAGE
   ====================== */
.mv-section {
    display: flex;
    min-height: 500px;
    position: relative;
}

.mv-image-wrapper {
    position: relative;
    width: 50%;
    overflow: hidden;
}

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

.mv-gradient {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
}

.mv-gradient-right {
    right: 0;
    background: linear-gradient(to right, transparent 0%, var(--white) 100%);
}

.mv-gradient-left {
    left: 0;
    background: linear-gradient(to left, transparent 0%, var(--white) 100%);
}

.mv-content {
    width: 50%;
    display: flex;
    align-items: center;
    background: var(--white);
}

.mv-content-inner {
    padding: 4rem;
    max-width: 560px;
}

.mv-mission .mv-content-inner {
    margin-left: 0;
}

.mv-vision .mv-content-inner {
    margin-left: auto;
}

.mv-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.mv-content .section-line {
    margin: 1.5rem 0;
}

.mv-lead {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mv-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 0;
}

.mv-mission {
    background: var(--white);
}

.mv-vision {
    background: var(--bg-light);
}

.mv-vision .mv-content {
    background: var(--bg-light);
}

.mv-vision .mv-gradient-left {
    background: linear-gradient(to left, transparent 0%, var(--bg-light) 100%);
}

/* ======================
   VALUES PAGE
   ====================== */
.values-page {
    padding: 6rem 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.value-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    text-align: center;
    cursor: pointer;
}

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

.value-card .value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition-normal);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
    transform: scale(1.1);
}

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.value-description {
    margin-top: 1rem;
}

.value-description p {
    color: var(--text-medium);
    line-height: 1.8;
}

.certifications-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-light);
}

.certifications-note small {
    color: var(--text-light);
    font-style: italic;
}

/* Values Coverflow Carousel */
.values-coverflow-section {
    padding: 6rem 0;
    background: var(--bg-light);
    overflow: hidden;
}

.coverflow-wrapper {
    position: relative;
    height: 520px;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverflow-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.coverflow-card {
    position: absolute;
    width: 340px;
    height: 420px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.coverflow-card .card-inner {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    padding: 3rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease;
}

.coverflow-card.active .card-inner {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.coverflow-card .value-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

.coverflow-card.active .value-icon {
    transform: scale(1.05);
}

.coverflow-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.coverflow-card p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1rem;
}

.coverflow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    z-index: 100;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.coverflow-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.coverflow-prev {
    left: 3%;
}

.coverflow-next {
    right: 3%;
}

@media (max-width: 1200px) {
    .coverflow-prev {
        left: 2%;
    }

    .coverflow-next {
        right: 2%;
    }
}

@media (max-width: 768px) {
    .coverflow-wrapper {
        height: 480px;
    }

    .coverflow-card {
        width: 300px;
        height: 380px;
    }

    .coverflow-card .card-inner {
        padding: 2.5rem 2rem;
    }

    .coverflow-card .value-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .coverflow-card h3 {
        font-size: 1.25rem;
    }

    .coverflow-btn {
        width: 48px;
        height: 48px;
    }

}

@media (max-width: 576px) {
    .coverflow-wrapper {
        height: 450px;
    }

    .coverflow-card {
        width: 260px;
        height: 360px;
    }

    .coverflow-card .card-inner {
        padding: 2rem 1.5rem;
    }

    .coverflow-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* ======================
   SUSTAINABILITY PAGE
   ====================== */
.sustainability-intro {
    padding: 4rem 0;
    background: var(--white);
}

.sustainability-intro .intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.sustainability-intro p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.sustainability-pillars {
    padding: 6rem 0;
    background: var(--bg-light);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.pillar-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border-top: 4px solid var(--primary-blue);
}

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

.pillar-card .pillar-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.1) 0%, rgba(0, 82, 173, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
}

.pillar-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.pillar-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* ======================
   EARTHQUAKE ENGINEERING PAGE
   ====================== */
.earthquake-page {
    padding: 6rem 0;
}

.eq-philosophy,
.eq-technologies {
    margin-bottom: 4rem;
}

.eq-philosophy p,
.eq-technologies .tech-content p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.tech-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.tech-feature:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.tech-feature i {
    color: var(--primary-teal);
    font-size: 1.5rem;
}

.tech-feature span {
    color: var(--text-dark);
    font-weight: 500;
}

/* ======================
   SOCIAL RESPONSIBILITY PAGE
   ====================== */
.social-responsibility-page {
    padding: 6rem 0;
}

.sr-block {
    background: var(--white);
    padding: 4rem;
    margin-bottom: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-blue);
}

.sr-block:nth-child(even) {
    border-left-color: var(--primary-teal);
}

.sr-block .sr-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.sr-block:nth-child(even) .sr-icon {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
}

.sr-block h2 {
    margin-bottom: 1rem;
}

.sr-block p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ======================
   CAREER PAGE
   ====================== */
.career-page {
    padding: 6rem 0;
}

.career-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.career-intro .lead {
    max-width: 800px;
    margin: 0 auto;
}

.career-block {
    background: var(--white);
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.career-block p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.career-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    padding: 4rem;
    border-radius: 8px;
    text-align: center;
    color: var(--white);
}

.career-cta h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.career-cta p {
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ======================
   CONTACT PAGE
   ====================== */
.contact-page {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.contact-form-container h2 {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--bg-light);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.contact-info {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

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

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.info-content p {
    color: var(--text-medium);
}

.contact-map {
    margin-top: 4rem;
}

.contact-map h2 {
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ======================
   ABOUT SECTION (GENERAL)
   ====================== */
.about-section {
    padding: 6rem 0;
    background: var(--white);
}

.about-section .about-text {
    max-width: 900px;
}

.about-section .about-text h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-section .about-text p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-section .about-text p.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* ======================
   PROJECTS PAGE
   ====================== */
.projects-page {
    padding: 6rem 0;
    background: var(--bg-light);
}

.projects-page .filter-btn {
    color: var(--text-medium);
    border-color: rgba(0, 0, 0, 0.2);
    background: transparent;
}

.projects-page .filter-btn:hover,
.projects-page .filter-btn.active {
    background: var(--primary-teal);
    color: var(--white);
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-sm);
}

.projects-section {
    margin-bottom: 6rem;
}

.projects-section:last-child {
    margin-bottom: 0;
}

/* ======================
   RESPONSIVE - NEW PAGES
   ====================== */
@media (max-width: 968px) {
    .page-header {
        padding: 6rem 0 3rem;
    }

    .about-section,
    .about-page,
    .projects-page,
    .features {
        padding: 4rem 0;
    }

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

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

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

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

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

    .mv-section {
        flex-direction: column;
        min-height: auto;
    }

    .mv-vision {
        flex-direction: column-reverse;
    }

    .mv-image-wrapper {
        width: 100%;
        height: 350px;
    }

    .mv-content {
        width: 100%;
    }

    .mv-content-inner {
        padding: 3rem 2rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .mv-gradient {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        left: 0;
    }

    .mv-gradient-right,
    .mv-gradient-left {
        background: linear-gradient(to bottom, transparent 0%, var(--white) 100%);
    }

    .mv-vision .mv-gradient-left {
        background: linear-gradient(to bottom, transparent 0%, var(--bg-light) 100%);
    }

    .sr-block,
    .career-block {
        padding: 2.5rem;
    }

    .vision-statement {
        padding: 2.5rem;
    }

    .career-cta {
        padding: 3rem 2rem;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .about-section,
    .about-page,
    .projects-page,
    .features {
        padding: 3rem 0;
    }

    .mv-content-inner {
        padding: 2.5rem 1.5rem;
    }

    .mv-content h2 {
        font-size: 1.75rem;
    }

    .mv-lead {
        font-size: 1rem;
    }

    .mv-image-wrapper {
        height: 280px;
    }

    .value-card .value-icon,
    .sr-block .sr-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .pillar-card .pillar-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .mv-block,
    .sr-block,
    .career-block,
    .vision-statement {
        padding: 2rem;
    }

    .contact-form-container,
    .contact-info {
        padding: 2rem;
    }
}

/* ======================
   PROJECT CARD IMPROVEMENTS
   ====================== */
.project-overlay {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.project-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.project-overlay .btn {
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay .btn {
    opacity: 1;
    transform: translateY(0);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

/* ======================
   PROJECT DETAIL PAGE
   ====================== */
.project-detail-page {
    padding: 4rem 0 6rem;
    background: var(--bg-light);
}

.breadcrumb {
    margin-bottom: 3rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-blue);
    transition: var(--transition-fast);
}

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

.project-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.project-gallery {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.main-image {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

.thumbnail {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-teal);
}

.project-details-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    height: fit-content;
}

.project-details-info h2 {
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    border-bottom: 1px solid var(--bg-light);
    padding-bottom: 1rem;
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-label i {
    color: var(--primary-teal);
}

.info-value {
    color: var(--text-medium);
    padding-left: 1.75rem;
}

.project-description {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.project-description h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.project-description h3 {
    color: var(--text-dark);
    margin: 2rem 0 1rem;
}

.project-description p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list i {
    color: var(--primary-teal);
    font-size: 1.1rem;
}

.back-to-projects {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition-fast);
    margin-top: 1.5rem;
}

.back-to-projects:hover {
    background: var(--primary-teal);
    color: var(--white);
}

/* Project Detail Hero */
.project-detail-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
}

.project-detail-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.project-detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 61, 130, 0.3) 0%, rgba(0, 61, 130, 0.7) 100%);
}

.project-detail-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 0;
    color: var(--white);
}

.project-detail-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.project-detail-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.project-detail-labels .project-label {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-detail-labels .project-label-ongoing {
    background: rgba(255, 193, 7, 0.9);
    color: #000;
}

.project-detail-labels .project-label-completed {
    background: rgba(40, 167, 69, 0.9);
    color: #fff;
}

/* Project Detail Content V2 - New Layout */
.project-detail-content-v2 {
    padding: 3rem 0 4rem;
    background: var(--bg-light);
}

.project-quick-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2.5rem;
}

.quick-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.quick-info-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.quick-info-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.quick-info-value.status-ongoing {
    color: var(--accent-orange);
    font-weight: 600;
}

.quick-info-value.status-completed {
    color: var(--primary-blue);
    font-weight: 600;
}

.project-description-v2 {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.project-description-v2 h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.project-description-v2 p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.project-links-v2 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.project-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-link-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
}

.project-link-btn i {
    font-size: 1rem;
}

.project-gallery-v2 {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2.5rem;
}

.project-gallery-v2 h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.gallery-grid-v2 .gallery-item {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-grid-v2 .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-grid-v2 .gallery-item:hover img {
    transform: scale(1.05);
}

.project-back-link {
    text-align: center;
}

.back-to-projects-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-to-projects-v2:hover {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    background: rgba(0, 86, 179, 0.05);
}

/* V2 Responsive */
@media (max-width: 992px) {
    .project-quick-info {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 576px) {
    .project-detail-content-v2 {
        padding: 2rem 0 3rem;
    }

    .project-quick-info {
        grid-template-columns: 1fr;
        padding: 1.25rem;
    }

    .quick-info-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--border-light);
    }

    .quick-info-item:last-child {
        border-bottom: none;
    }

    .project-description-v2,
    .project-gallery-v2 {
        padding: 1.5rem;
    }

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

    .project-links-v2 {
        flex-direction: column;
    }

    .project-link-btn {
        justify-content: center;
    }
}

/* Project Detail Content - Old Layout */
.project-detail-content {
    padding: 4rem 0 6rem;
    background: var(--bg-light);
}

.project-detail-content .project-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.project-detail-main {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.project-detail-description h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.project-detail-description p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Project Info Lists (Bilgiler / Teknik Bilgiler) */
.project-info-lists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.project-info-block {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
}

.project-info-block h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-blue);
}

.project-specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-specs-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #ddd;
}

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

.spec-label {
    font-weight: 600;
    color: var(--text-dark);
}

.spec-value {
    color: var(--text-medium);
    text-align: right;
}

/* Project Gallery */
.project-detail-gallery {
    margin-top: 3rem;
}

.project-detail-gallery h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

/* First gallery item is featured/larger */
.project-gallery-grid .gallery-item:first-child {
    grid-column: span 2;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:first-child img {
    height: 400px;
}

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

/* Project Sidebar */
.project-detail-sidebar {
    height: fit-content;
    position: sticky;
    top: 100px;
}

.project-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.project-info-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.project-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-info-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

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

.project-info-list .info-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    padding-left: 0;
    margin-bottom: 0;
}

.project-info-list .info-value {
    font-weight: 600;
    color: var(--text-dark);
    padding-left: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .project-detail-content .project-detail-grid {
        grid-template-columns: 1fr;
    }

    .project-detail-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 1.5rem;
        align-items: start;
    }

    .back-to-projects {
        margin-top: 0;
        height: fit-content;
    }
}

@media (max-width: 900px) {
    .project-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .project-gallery-grid .gallery-item:first-child {
        grid-column: span 1;
    }

    .gallery-item img {
        height: 220px;
    }

    .gallery-item:first-child img {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .project-detail-hero {
        height: 40vh;
        min-height: 300px;
    }

    .project-detail-hero-content h1 {
        font-size: 1.75rem;
    }

    .project-detail-main {
        padding: 1.5rem;
    }

    .project-gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img,
    .gallery-item:first-child img {
        height: 200px;
    }

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

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

    .thumbnail-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .project-gallery,
    .project-details-info,
    .project-description {
        padding: 1.5rem;
    }

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

/* ======================
   LIGHTBOX GALLERY
   ====================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
}

/* Make gallery items clickable */
.gallery-item {
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

/* ======================
   CERTIFICATIONS & AWARDS PAGE
   ====================== */
.certifications {
    padding: 5rem 0;
    background: var(--white);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.cert-card {
    background: var(--white);
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.cert-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cert-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cert-icon {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

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

.cert-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cert-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.cert-category {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.cert-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.cert-meta {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #E0E0E0;
}

.cert-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.cert-meta i {
    color: var(--primary-blue);
}

/* Certificate Grid with Images */
.cert-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cert-card-img {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.cert-card-img .cert-image {
    height: auto;
    padding: 1.5rem;
    background: var(--bg-light);
}

.cert-card-img .cert-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.cert-info {
    padding: 1.5rem;
    text-align: center;
}

.cert-info h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cert-info p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
}

@media (max-width: 968px) {
    .cert-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }

    .cert-grid-3 .cert-card-img:last-child {
        grid-column: 1 / -1;
        max-width: 280px;
        margin: 0 auto;
    }
}

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

    .cert-grid-3 .cert-card-img:last-child {
        max-width: 100%;
    }
}

/* Quality Standards */
.quality-standards {
    padding: 5rem 0;
    background: var(--bg-light);
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.standard-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.standard-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.standard-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.standard-icon i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.standard-item:hover .standard-icon {
    background: var(--primary-blue);
}

.standard-item:hover .standard-icon i {
    color: var(--white);
}

.standard-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.standard-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Achievements Section */
.achievements {
    padding: 5rem 0;
    background: var(--white);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition-normal);
}

.achievement-card:hover {
    background: var(--primary-blue);
    transform: translateY(-5px);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    transition: var(--transition-normal);
}

.achievement-card:hover .achievement-number {
    color: var(--white);
}

.achievement-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    transition: var(--transition-normal);
}

.achievement-card:hover h4 {
    color: var(--white);
}

.achievement-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.achievement-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

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

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

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

/* ======================
   WHO WE ARE SECTION
   ====================== */
.who-we-are {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.who-we-are::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
}

.who-we-are-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.who-text {
    padding-right: 2rem;
}

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

.who-subtitle {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.4;
}

.who-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.who-description strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.who-description em {
    color: var(--text-dark);
    font-style: normal;
    font-weight: 600;
}

.who-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition-normal);
}

.value-item:hover {
    background: var(--primary-blue);
    transform: translateX(10px);
}

.value-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: var(--transition-normal);
}

.value-item:hover i {
    color: var(--white);
}

.value-item span {
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-normal);
}

.value-item:hover span {
    color: var(--white);
}

.who-cta {
    margin-top: 2rem;
}

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

.stat-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    position: relative;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

/* Responsive Who We Are */
@media (max-width: 968px) {
    .who-we-are-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .who-text {
        padding-right: 0;
    }

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

@media (max-width: 576px) {
    .who-title {
        font-size: 2rem;
    }

    .who-subtitle {
        font-size: 1.25rem;
    }

    .who-values {
        grid-template-columns: 1fr;
    }

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

/* ======================
   SLOGAN TRANSITION
   ====================== */
.slogan-transition {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.slogan-text {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.slogan-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    margin: 0 auto;
}

/* ======================
   KURUMSAL BENTO GRID
   ====================== */
.kurumsal-bento {
    padding: 6rem 0;
    background: var(--white);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1.25rem;
    margin-top: 3rem;
}

.bento-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.bento-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.3);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover .bento-image img {
    transform: scale(1.4);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 0%,
            transparent 40%,
            rgba(0, 0, 0, 0.3) 70%,
            rgba(0, 0, 0, 0.6) 100%
        ),
        linear-gradient(
            180deg,
            transparent 0%,
            transparent 40%,
            rgba(0, 61, 130, 0.3) 70%,
            rgba(0, 61, 130, 0.65) 100%
        );
    z-index: 2;
    transition: background 0.4s ease;
}

.bento-card:hover .bento-overlay {
    background:
        linear-gradient(
            180deg,
            transparent 0%,
            transparent 30%,
            rgba(0, 0, 0, 0.25) 60%,
            rgba(0, 0, 0, 0.5) 100%
        ),
        linear-gradient(
            180deg,
            transparent 0%,
            transparent 30%,
            rgba(13, 148, 136, 0.35) 60%,
            rgba(13, 148, 136, 0.75) 100%
        );
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    z-index: 3;
    color: var(--white);
}

.bento-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.bento-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.bento-card:hover .bento-link {
    opacity: 1;
    transform: translateY(0);
}

.bento-link i {
    transition: transform 0.3s ease;
}

.bento-card:hover .bento-link i {
    transform: translateX(4px);
}

/* Bento Card Sizes */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-large .bento-content h3 {
    font-size: 1.75rem;
}

.bento-large .bento-content p {
    font-size: 1rem;
    -webkit-line-clamp: 3;
}

.bento-medium {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-small .bento-content p {
    display: none;
}

.bento-small .bento-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.bento-tall {
    grid-column: span 1;
    grid-row: span 2;
}

/* Bento Grid Responsive */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bento-large {
        grid-column: span 2;
    }
}

@media (max-width: 968px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-tall {
        grid-row: span 2;
    }
}

@media (max-width: 576px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .bento-large,
    .bento-medium,
    .bento-small,
    .bento-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-large {
        grid-row: span 2;
    }
}

/* ======================
   SUSTAINABILITY SHOWCASE
   ====================== */
.sustainability-showcase {
    padding: 6rem 0;
    background: var(--white);
}

.showcase-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.showcase-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 280px;
}

.showcase-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.showcase-card-reverse {
    grid-template-columns: 1.2fr 1fr;
}

.showcase-card-reverse .showcase-visual {
    order: 2;
}

.showcase-card-reverse .showcase-content {
    order: 1;
}

.showcase-visual {
    position: relative;
    overflow: hidden;
}

.showcase-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.3);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-card:hover .showcase-visual img {
    transform: scale(1.33);
}

.showcase-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

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

.showcase-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.showcase-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.showcase-card:hover .showcase-link {
    color: var(--primary-teal);
    gap: 0.75rem;
}

.showcase-link i {
    transition: transform 0.3s ease;
}

.showcase-card:hover .showcase-link i {
    transform: translateX(4px);
}

/* Showcase Responsive */
@media (max-width: 968px) {
    .showcase-card,
    .showcase-card-reverse {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .showcase-card-reverse .showcase-visual,
    .showcase-card-reverse .showcase-content {
        order: unset;
    }

    .showcase-visual {
        height: 220px;
    }

    .showcase-content {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .showcase-visual {
        height: 180px;
    }

    .showcase-content {
        padding: 1.5rem;
    }

    .showcase-content h3 {
        font-size: 1.25rem;
    }

    .showcase-icon {
        width: 50px;
        height: 50px;
    }

    .showcase-icon i {
        font-size: 1.25rem;
    }
}

/* ======================
   WHO WE ARE - VISUAL VALUES
   ====================== */
.who-values-visual {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin: 2.5rem 0;
}

.value-visual-item {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.value-visual-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-visual-image {
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.value-visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.3);
    transition: transform 0.5s ease;
}

.value-visual-item:hover .value-visual-image img {
    transform: scale(1.4);
}

.value-visual-item span {
    display: block;
    padding: 0.875rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    text-align: center;
    background: var(--white);
    position: relative;
}

.value-visual-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    transition: width 0.4s ease;
}

.value-visual-item:hover::after {
    width: 100%;
}

/* Visual Values Responsive */
@media (max-width: 968px) {
    .who-values-visual {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .who-values-visual {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .value-visual-image {
        height: 80px;
    }

    .value-visual-item span {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}

/* ======================
   PARTNERS PAGE
   ====================== */
.partners-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.partners-intro {
    margin-bottom: 3rem;
}

.partners-intro h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

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

.partner-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}

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

.partner-logo {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 2rem;
}

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

.partner-info {
    padding: 1.5rem;
}

.partner-info h3 {
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.partner-info p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

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

@media (max-width: 576px) {
    .partners-section {
        padding: 3rem 0;
    }

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

    .partner-logo {
        height: 120px;
        padding: 1.5rem;
    }

    .partner-info {
        padding: 1rem;
    }

    .partner-info h3 {
        font-size: 0.9rem;
    }

    .partner-info p {
        font-size: 0.85rem;
    }
}

/* ======================
   ABOUT PAGE - CLEAN LAYOUT
   ====================== */

/* About Main Section */
.about-main {
    padding: 5rem 0 40px;
    background: var(--white);
}

.about-lead-text {
    max-width: 800px;
    margin-bottom: 4rem;
}

.about-lead-text h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.about-lead-text .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-medium);
}

/* Two Column Layout */
.about-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.about-column h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-teal);
    display: inline-block;
}

.about-column p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-column p:last-child {
    margin-bottom: 0;
}

/* Highlight Box */
.about-highlight-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    padding: 2.5rem 3rem;
    border-radius: 4px;
    margin-bottom: 3rem;
}

.about-highlight-box p {
    color: var(--white);
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
}

/* Text Block */
.about-text-block {
    max-width: 900px;
}

.about-text-block p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-text-block p:last-child {
    margin-bottom: 0;
}

/* Vision Quote Section */
.about-vision-quote {
    padding: 5rem 0;
    background: var(--bg-light);
}

.about-vision-quote blockquote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.about-vision-quote blockquote::before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    font-family: Georgia, serif;
    color: var(--primary-blue);
    opacity: 0.15;
    line-height: 1;
}

.about-vision-quote blockquote p {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-vision-quote blockquote footer {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-teal);
    font-style: italic;
    margin-top: 2rem;
}

/* Projects Showcase Section */
.about-projects-showcase {
    padding: 3rem 0 5rem;
    background: var(--white);
}

.showcase-header {
    margin-bottom: 2.5rem;
}

.showcase-header h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.showcase-header .section-line {
    margin-bottom: 0;
}

.showcase-link {
    color: var(--primary-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.showcase-link i {
    transition: transform 0.3s ease;
}

.showcase-link:hover i {
    transform: translateX(4px);
}

/* Projects Carousel */
.projects-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 -0.75rem;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.carousel-slide {
    flex: 0 0 33.333%;
    padding: 0 0.75rem;
}

.carousel-slide a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 4/3;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-slide a:hover img {
    transform: scale(1.05);
}

.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.3) 70%,
        transparent 100%
    );
    color: var(--white);
}

.slide-category {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--primary-teal);
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    margin-bottom: 0.5rem;
}

.slide-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.slide-meta {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

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

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.carousel-btn i {
    font-size: 1rem;
}

/* Showcase CTA */
.showcase-cta {
    text-align: left;
    margin-top: 2.5rem;
}

/* About Page Responsive */
@media (max-width: 968px) {
    .about-two-column {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-highlight-box {
        padding: 2rem;
    }

    .carousel-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .about-main {
        padding: 3rem 0;
    }

    .about-lead-text {
        margin-bottom: 2.5rem;
    }

    .about-highlight-box {
        padding: 1.5rem;
    }

    .about-highlight-box p {
        font-size: 1rem;
    }

    .about-vision-quote {
        padding: 3rem 0;
    }

    .about-vision-quote blockquote p {
        font-size: 1.1rem;
    }

    .about-projects-showcase {
        padding: 3rem 0;
    }

    .showcase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .carousel-slide {
        flex: 0 0 100%;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-prev {
        left: 0.5rem;
    }

    .carousel-next {
        right: 0.5rem;
    }
}
