/* ============================================================
   PROSER ENDÜSTRİYEL - Ana Stil Dosyası
   ============================================================ */

:root {
    --primary: #df0a0a;
    --primary-dark: #b50808;
    --primary-light: #ff3333;
    --secondary: #0F0D1D;
    --text: #334770;
    --text-light: #6b7a99;
    --bg: #fcfbff;
    --bg-gray: #f5f6fa;
    --white: #ffffff;
    --border: #e8eaf0;
    --shadow: 0 4px 24px rgba(15,13,29,0.10);
    --shadow-hover: 0 8px 40px rgba(15,13,29,0.18);
    --radius: 12px;
    --radius-sm: 6px;
    --transition: all 0.3s cubic-bezier(.4,0,.2,1);
    --font-title: 'Urbanist', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 62.5%; }
body {
    font-family: var(--font-body);
    font-size: 1.6rem;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5 {
    font-family: var(--font-title);
    color: var(--secondary);
    line-height: 1.2;
    font-weight: 700;
}
h1 { font-size: clamp(3rem,5vw,5.5rem); }
h2 { font-size: clamp(2.4rem,3.5vw,4rem); }
h3 { font-size: clamp(2rem,2.5vw,2.8rem); }
h4 { font-size: 2rem; }
p { margin-bottom: 1.6rem; }
p:last-child { margin-bottom: 0; }

/* ---- Layout ---- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section { padding: 8rem 0; }
.section-sm { padding: 5rem 0; }

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}
.section-header .label {
    display: inline-block;
    background: rgba(223,10,10,0.08);
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    margin-bottom: 1.6rem;
}
.section-header h2 { margin-bottom: 1.6rem; }
.section-header p {
    font-size: 1.8rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 3rem; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.4rem 3.2rem;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(223,10,10,0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(223,10,10,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}
.btn-dark {
    background: var(--secondary);
    color: var(--white);
}
.btn-dark:hover {
    background: #1a1836;
    transform: translateY(-2px);
}
.btn-sm { padding: 1rem 2.2rem; font-size: 1.4rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: var(--transition);
}
.header-top {
    background: var(--secondary);
    padding: 0.8rem 0;
}
.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-top-info {
    display: flex;
    gap: 2.4rem;
    align-items: center;
}
.header-top-info a {
    color: rgba(255,255,255,0.8);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
}
.header-top-info a:hover { color: var(--primary); }
.header-top-social {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}
.header-top-social a {
    color: rgba(255,255,255,0.7);
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}
.header-top-social a:hover {
    color: var(--white);
    background: var(--primary);
}
.header-main {
    background: var(--white);
    padding: 1.4rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}
.site-logo {
    flex-shrink: 0;
}
.site-logo img {
    height: 48px;
    width: auto;
}
.site-nav {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
.site-nav a {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary);
    padding: 0.7rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active {
    color: var(--primary);
    background: rgba(223,10,10,0.06);
}
.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.4rem;
}
.header-phone i { color: var(--primary); font-size: 1.6rem; }
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.8rem;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Scroll effect */
.site-header.scrolled .header-top { display: none; }
.site-header.scrolled .header-main { box-shadow: 0 4px 30px rgba(0,0,0,0.12); }

/* Body padding for fixed header */
body { padding-top: 100px; }

/* ============================================================
   INTRO / PRELOADER
   ============================================================ */
.intro-overlay {
    position: fixed;
    inset: 0;
    background: var(--secondary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}
.intro-overlay.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.intro-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.intro-logo {
    width: 200px;
    height: auto;
    opacity: 0;
    animation: introFadeUp 0.7s ease 0.15s forwards;
}
.intro-tagline {
    color: rgba(255,255,255,0.45);
    font-size: 1.2rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0;
    animation: introFadeUp 0.5s ease 0.5s forwards;
}
.intro-bar {
    width: 160px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}
.intro-bar-fill {
    height: 100%;
    background: var(--primary);
    width: 0;
    animation: introBarAnim 1.3s cubic-bezier(0.4,0,0.2,1) 0.3s forwards;
}
@keyframes introFadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes introBarAnim {
    from { width: 0; }
    to   { width: 100%; }
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
    position: relative;
    height: calc(100vh - 100px);
    min-height: 580px;
    overflow: hidden;
    background: var(--secondary);
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    z-index: 0;
    pointer-events: none;
}
.slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}
.slide-bg {
    position: absolute;
    inset: -6%;
    background-size: cover;
    background-position: center;
    transition: transform 7s ease;
    transform: scale(1.08);
    will-change: transform;
}
.slide.active .slide-bg {
    transform: scale(1);
}
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        108deg,
        rgba(15,13,29,0.92) 0%,
        rgba(15,13,29,0.62) 50%,
        rgba(15,13,29,0.25) 100%
    );
}
.slide-content-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

/* Slide text content */
.slide-content {
    max-width: 660px;
    padding-left: 2rem;
}
.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(223,10,10,0.15);
    border: 1px solid rgba(223,10,10,0.35);
    color: #ff7070;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    margin-bottom: 2.4rem;
    opacity: 0;
}
.slide-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.5); opacity: 0.6; }
}
.slide.active .slide-badge {
    animation: slideUp 0.6s ease 0.3s forwards;
}
.slide-content h1 {
    color: var(--white);
    font-size: clamp(3.2rem, 4.5vw, 5.4rem);
    line-height: 1.12;
    margin-bottom: 2rem;
    opacity: 0;
}
.slide-content h1 span { color: var(--primary); }
.slide.active .slide-content h1 {
    animation: slideUp 0.7s ease 0.5s forwards;
}
.slide-sub {
    font-size: 1.75rem;
    color: rgba(255,255,255,0.70);
    margin-bottom: 3.6rem;
    max-width: 500px;
    line-height: 1.7;
    opacity: 0;
}
.slide.active .slide-sub {
    animation: slideUp 0.6s ease 0.7s forwards;
}
.slide-actions {
    display: flex;
    gap: 1.6rem;
    flex-wrap: wrap;
    opacity: 0;
}
.slide.active .slide-actions {
    animation: slideUp 0.6s ease 0.9s forwards;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Stats panel — floating right */
.slider-stats-panel {
    position: absolute;
    right: 5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 2.4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 130px;
}
.slider-stat-item {
    text-align: center;
    padding: 1.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.slider-stat-item:last-child { border-bottom: none; }
.slider-stat-item .num {
    display: block;
    font-family: var(--font-title);
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.slider-stat-item .lbl {
    display: block;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.55);
    margin-top: 0.5rem;
    white-space: nowrap;
}

/* Slider controls bar */
.slider-controls {
    position: absolute;
    bottom: 3.6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1.4rem;
}
.slider-prev,
.slider-next {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--white);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.slider-prev:hover,
.slider-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.08);
}
.slider-dots {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}
.slider-dot {
    height: 4px;
    width: 2.8rem;
    background: rgba(255,255,255,0.3);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}
.slider-dot.active {
    background: var(--primary);
    width: 5rem;
}
.slider-counter {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    color: rgba(255,255,255,0.55);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-left: 0.4rem;
}
.slider-counter-current {
    color: var(--white);
    font-size: 2.2rem;
    font-family: var(--font-title);
    font-weight: 800;
    line-height: 1;
}

/* Bottom progress bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 11;
}
.slider-progress-fill {
    height: 100%;
    background: var(--primary);
    width: 0;
    transition: none;
}

/* Scroll hint */
.slider-scroll-hint {
    position: absolute;
    bottom: 10rem;
    left: 2rem;
    z-index: 10;
    color: rgba(255,255,255,0.4);
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    writing-mode: vertical-rl;
    gap: 1rem;
    animation: scrollBounce 2.2s ease infinite;
    text-decoration: none;
}
.slider-scroll-hint span {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
@keyframes scrollBounce {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(8px); }
}

/* ============================================================
   FEATURES / ÖZELLIKLER
   ============================================================ */
.features-strip {
    background: var(--primary);
    padding: 3rem 0;
}
.features-strip .container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2rem;
}
.feat-item {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    color: var(--white);
}
.feat-item i {
    font-size: 3.2rem;
    opacity: 0.9;
    flex-shrink: 0;
}
.feat-item h4 { font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.feat-item p { font-size: 1.3rem; opacity: 0.85; margin: 0; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--white); }
.about-image-wrap { position: relative; }
.about-image-wrap img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
    max-height: 500px;
    box-shadow: var(--shadow);
}
.about-img-badge {
    position: absolute;
    top: 3rem;
    right: -3rem;
    background: var(--secondary);
    color: var(--white);
    padding: 2.4rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}
.about-img-badge .num { font-size: 4rem; font-weight: 800; color: var(--primary); display: block; }
.about-img-badge .lbl { font-size: 1.3rem; opacity: 0.8; }
.about-cert {
    position: absolute;
    bottom: 3rem;
    left: -3rem;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.6rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    box-shadow: var(--shadow);
    max-width: 220px;
}
.about-cert i { font-size: 3rem; color: var(--primary); flex-shrink: 0; }
.about-cert .title { font-weight: 700; font-size: 1.4rem; color: var(--secondary); }
.about-cert .sub { font-size: 1.2rem; color: var(--text-light); }
.about-content {}
.about-content h2 { margin-bottom: 2rem; }
.about-content .lead {
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 2.4rem;
    line-height: 1.6;
}
.about-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin: 2.4rem 0;
}
.about-check {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
}
.about-check i { color: var(--primary); font-size: 1.8rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--bg-gray); }
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.service-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-icon {
    position: absolute;
    bottom: -2rem;
    left: 2.4rem;
    width: 5.6rem;
    height: 5.6rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 6px 20px rgba(223,10,10,0.4);
    z-index: 1;
}
.service-card-body {
    padding: 3.6rem 2.4rem 2.4rem;
}
.service-card-body h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--secondary);
}
.service-card-body p {
    font-size: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.4rem;
    transition: var(--transition);
}
.service-link:hover { gap: 1rem; }

/* ============================================================
   WHY US / NEDEN BİZ
   ============================================================ */
.why-section {
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}
.why-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(223,10,10,0.08);
}
.why-section .section-header .label { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.why-section .section-header h2 { color: var(--white); }
.why-section .section-header p { color: rgba(255,255,255,0.6); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.4rem; }
.why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 3.2rem 2.4rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.why-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(223,10,10,0.4);
    transform: translateY(-4px);
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: height 0.3s ease;
}
.why-card:hover::before { height: 100%; }
.why-card-icon {
    width: 6rem;
    height: 6rem;
    background: rgba(223,10,10,0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    color: var(--primary);
    margin-bottom: 2rem;
    transition: var(--transition);
}
.why-card:hover .why-card-icon {
    background: var(--primary);
    color: var(--white);
}
.why-card h3 { color: var(--white); font-size: 1.9rem; margin-bottom: 1.2rem; }
.why-card p { color: rgba(255,255,255,0.65); font-size: 1.5rem; margin: 0; }

/* ============================================================
   BRANDS / MARKALAR
   ============================================================ */
.brands-section { background: var(--white); padding: 5rem 0; }
.brands-title {
    text-align: center;
    margin-bottom: 4rem;
}
.brands-title .label {
    display: inline-block;
    background: rgba(223,10,10,0.08);
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    margin-bottom: 1.6rem;
}
.brands-title h2 { font-size: 3rem; }
.brands-slider {
    overflow: hidden;
    position: relative;
}
.brands-slider::before,
.brands-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}
.brands-slider::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.brands-slider::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
.brands-track {
    display: flex;
    gap: 3rem;
    animation: brandScroll 20s linear infinite;
    width: max-content;
}
.brands-track:hover { animation-play-state: paused; }
@keyframes brandScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.brand-item {
    flex-shrink: 0;
    width: 140px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
    background: var(--bg-gray);
    border-radius: var(--radius);
    padding: 1rem;
}
.brand-item:hover { filter: grayscale(0); opacity: 1; background: var(--white); box-shadow: var(--shadow); }
.brand-item img { max-width: 110px; max-height: 55px; object-fit: contain; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
    background: var(--primary);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/banner.jpg') center/cover no-repeat;
    opacity: 0.15;
}
.cta-section .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}
.cta-content h2 { color: var(--white); font-size: 3.6rem; margin-bottom: 1.2rem; }
.cta-content p { color: rgba(255,255,255,0.85); font-size: 1.8rem; margin: 0; }
.cta-actions { display: flex; gap: 1.6rem; flex-shrink: 0; }
.btn-white {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
}
.btn-white:hover { background: var(--secondary); color: var(--white); }

/* ============================================================
   CONTACT / İLETİŞİM
   ============================================================ */
.contact-section { background: var(--bg-gray); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-info-card {
    background: var(--secondary);
    border-radius: var(--radius);
    padding: 4rem 3.2rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: rgba(223,10,10,0.12);
}
.contact-info-card h3 { color: var(--white); font-size: 2.8rem; margin-bottom: 0.8rem; }
.contact-info-card .sub { color: rgba(255,255,255,0.65); font-size: 1.5rem; margin-bottom: 3.6rem; }
.contact-items { display: flex; flex-direction: column; gap: 2.4rem; margin-bottom: 3.6rem; }
.contact-item {
    display: flex;
    gap: 1.6rem;
    align-items: flex-start;
}
.contact-item-icon {
    width: 4.8rem;
    height: 4.8rem;
    background: rgba(223,10,10,0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}
.contact-item-text .label { font-size: 1.3rem; color: rgba(255,255,255,0.55); margin-bottom: 0.3rem; }
.contact-item-text .val { font-size: 1.6rem; font-weight: 600; color: var(--white); }
.contact-item-text a { color: var(--white); transition: var(--transition); }
.contact-item-text a:hover { color: var(--primary); }
.contact-social { display: flex; gap: 1.2rem; }
.contact-social a {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
}
.contact-social a:hover { background: var(--primary); color: var(--white); }

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 4rem;
    box-shadow: var(--shadow);
}
.contact-form-wrap h3 { margin-bottom: 0.8rem; }
.contact-form-wrap .sub { color: var(--text-light); font-size: 1.5rem; margin-bottom: 3.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.form-group { margin-bottom: 2rem; }
.form-group label {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.8rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.6rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1.5rem;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(223,10,10,0.08);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit { text-align: right; }
#formMsg {
    padding: 1.2rem 1.6rem;
    border-radius: var(--radius-sm);
    font-size: 1.4rem;
    font-weight: 600;
    display: none;
    margin-bottom: 1.6rem;
}
#formMsg.success { background: #e8f5e9; color: #2e7d32; display: block; }
#formMsg.error { background: #ffebee; color: #c62828; display: block; }

/* ============================================================
   MAP
   ============================================================ */
.map-section iframe {
    width: 100%;
    height: 400px;
    display: block;
    filter: grayscale(20%);
}

/* ============================================================
   PAGE HERO (iç sayfalar)
   ============================================================ */
.page-hero {
    background: var(--secondary);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/banner.jpg') center/cover no-repeat;
    opacity: 0.12;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); font-size: 4.4rem; margin-bottom: 1rem; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255,255,255,0.6);
    font-size: 1.4rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--primary); font-weight: 600; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page-content { background: var(--white); }
.about-page-content p { font-size: 1.7rem; line-height: 1.8; color: var(--text); }
.about-page-content h2 { margin: 3rem 0 1.6rem; color: var(--secondary); }
.about-page-content h3 { margin: 2.4rem 0 1.2rem; color: var(--secondary); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.4rem; margin: 4rem 0; }
.value-card {
    background: var(--bg-gray);
    border-radius: var(--radius);
    padding: 3rem 2.4rem;
    border-top: 4px solid var(--primary);
    transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card i { font-size: 3rem; color: var(--primary); margin-bottom: 1.6rem; display: block; }
.value-card h4 { font-size: 1.8rem; margin-bottom: 1rem; }
.value-card p { font-size: 1.5rem; color: var(--text-light); margin: 0; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page { background: var(--bg-gray); }
.service-full-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 380px 1fr;
    margin-bottom: 3rem;
    transition: var(--transition);
}
.service-full-card:hover { box-shadow: var(--shadow-hover); }
.service-full-card.reverse { direction: rtl; }
.service-full-card.reverse > * { direction: ltr; }
.service-full-img { height: 100%; min-height: 280px; object-fit: cover; width: 100%; }
.service-full-body {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service-full-body .icon {
    width: 6.4rem;
    height: 6.4rem;
    background: rgba(223,10,10,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
}
.service-full-body h3 { font-size: 2.4rem; margin-bottom: 1.6rem; }
.service-full-body p { font-size: 1.6rem; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   MISSION VISION
   ============================================================ */
.mv-section { background: var(--white); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.mv-card {
    background: var(--bg-gray);
    border-radius: var(--radius);
    padding: 4.8rem 4rem;
    position: relative;
    overflow: hidden;
}
.mv-card.mission { border-top: 5px solid var(--primary); }
.mv-card.vision { border-top: 5px solid var(--secondary); }
.mv-card .icon-wrap {
    width: 8rem;
    height: 8rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.6rem;
    margin-bottom: 2.4rem;
}
.mv-card.mission .icon-wrap { background: rgba(223,10,10,0.1); color: var(--primary); }
.mv-card.vision .icon-wrap { background: rgba(15,13,29,0.08); color: var(--secondary); }
.mv-card h2 { font-size: 3.2rem; margin-bottom: 2rem; }
.mv-card p { font-size: 1.7rem; line-height: 1.8; color: var(--text); }
.mv-values { margin-top: 4rem; }
.mv-values h3 { text-align: center; margin-bottom: 3rem; }
.values-list {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2rem;
}
.val-item {
    text-align: center;
    padding: 2.4rem 1.6rem;
    background: var(--bg-gray);
    border-radius: var(--radius);
    transition: var(--transition);
}
.val-item:hover { background: var(--primary); }
.val-item:hover i, .val-item:hover h4 { color: var(--white); }
.val-item i { font-size: 2.8rem; color: var(--primary); display: block; margin-bottom: 1.2rem; transition: var(--transition); }
.val-item h4 { font-size: 1.6rem; transition: var(--transition); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.75);
}
.footer-main {
    padding: 7rem 0 5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 4rem;
}
.footer-logo img { height: 45px; margin-bottom: 2rem; filter: brightness(0) invert(1); }
.footer-desc { font-size: 1.5rem; line-height: 1.7; margin-bottom: 2.4rem; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-col h4 {
    color: var(--white);
    font-size: 1.7rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255,255,255,0.08);
}
.footer-links { display: flex; flex-direction: column; gap: 1rem; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 1.5rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.footer-links a::before { content: '›'; font-size: 1.8rem; color: var(--primary); }
.footer-links a:hover { color: var(--white); padding-left: 0.4rem; }
.footer-contact-items { display: flex; flex-direction: column; gap: 1.6rem; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    font-size: 1.4rem;
    color: rgba(255,255,255,0.65);
}
.footer-contact-item i { color: var(--primary); font-size: 1.6rem; flex-shrink: 0; margin-top: 0.2rem; }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--primary); }
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 2rem 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-copyright { font-size: 1.4rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; gap: 2rem; }
.footer-bottom-links a {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--primary); }

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    z-index: 999;
    width: 5.6rem;
    height: 5.6rem;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
    transition: var(--transition);
    animation: wpPulse 3s ease infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); background: #128C7E; }
@keyframes wpPulse {
    0%,100% { box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 6px 50px rgba(37,211,102,0.8); }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}
[data-animate][data-delay="100"] { transition-delay: 0.1s; }
[data-animate][data-delay="200"] { transition-delay: 0.2s; }
[data-animate][data-delay="300"] { transition-delay: 0.3s; }
[data-animate][data-delay="400"] { transition-delay: 0.4s; }
[data-animate][data-delay="500"] { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1280px) {
    /* Header telefon numarasını gizle, nav biraz daha sık */
    .header-phone { display: none; }
    .site-nav a { padding: 0.7rem 0.8rem; font-size: 1.35rem; }
}

@media (max-width: 1100px) {
    .grid-4 { grid-template-columns: repeat(2,1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .hero .container { gap: 4rem; }
}

@media (max-width: 900px) {
    body { padding-top: 72px; }
    .hero .container { grid-template-columns: 1fr; }
    .hero-image-wrap { display: none; }
    .hero { min-height: 70vh; }
    .hero h1 { font-size: 3.8rem; }
    .hero-stats { grid-template-columns: repeat(3,1fr); }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: repeat(2,1fr); }
    .why-grid { grid-template-columns: repeat(2,1fr); }
    .values-grid { grid-template-columns: repeat(2,1fr); }
    .mv-grid { grid-template-columns: 1fr; }
    .values-list { grid-template-columns: repeat(2,1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .service-full-card { grid-template-columns: 1fr; }
    .service-full-card.reverse { direction: ltr; }
    .service-full-img { height: 250px; }
    .features-strip .container { grid-template-columns: repeat(2,1fr); }
    .cta-section .container { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
    .site-nav, .header-cta .btn { display: none; }
    .menu-toggle { display: flex; }
    .header-cta .header-phone { display: flex; }
    .header-top-info .addr { display: none; }
    .about-img-badge, .about-cert { display: none; }
    .header-main .container { padding: 0 1.6rem; }
    /* Slider responsive */
    .slider-stats-panel { display: none; }
    .slide-content { max-width: 100%; padding: 0 2rem; }
    .hero-slider { height: calc(100svh - 72px); min-height: 520px; }
    .slide-content h1 { font-size: 3.8rem; }
    .slider-controls { bottom: 2.8rem; gap: 1rem; }
    .slider-prev, .slider-next { width: 4rem; height: 4rem; font-size: 1.4rem; }
    .slider-scroll-hint { display: none; }
}

@media (max-width: 600px) {
    html { font-size: 58%; }
    .section { padding: 5rem 0; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; gap: 3rem; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
    .values-list { grid-template-columns: repeat(2,1fr); }
    .contact-form-wrap { padding: 2.4rem; }
    .cta-actions { flex-direction: column; align-items: center; }
    .slide-actions { flex-direction: column; }
    .slide-actions .btn { text-align: center; justify-content: center; }
    .header-top { display: none; }
    body { padding-top: 64px; }
    .slide-content h1 { font-size: 3rem; }
    .slider-controls { gap: 0.8rem; }
    .slider-counter { display: none; }
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-nav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--secondary);
    z-index: 999;
    flex-direction: column;
    padding: 2.4rem;
    gap: 0.8rem;
    overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 1.8rem;
    font-weight: 600;
    padding: 1.4rem 1.6rem;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active {
    color: var(--white);
    background: rgba(223,10,10,0.15);
}
.mobile-nav .mobile-contact {
    margin-top: auto;
    padding-top: 2.4rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.mobile-nav .mobile-contact a {
    border: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
}
.mobile-nav .mobile-contact a i { color: var(--primary); }

/* ============================================================
   FORM STATES & VALIDATION
   ============================================================ */
.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220,53,69,0.1);
}
.form-group input.is-valid,
.form-group select.is-valid,
.form-group textarea.is-valid {
    border-color: var(--primary);
}
.field-error {
    font-size: 1.2rem;
    color: #dc3545;
    margin-top: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* ============================================================
   PAGE TRANSITIONS
   ============================================================ */
.page-fade {
    animation: pageFadeIn 0.4s ease;
}
@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 9rem;
    right: 3rem;
    z-index: 998;
    width: 4.4rem;
    height: 4.4rem;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}
.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* ============================================================
   NOTIFICATION TOAST
   ============================================================ */
.toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
}
.toast {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.4rem 1.8rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    min-width: 280px;
    max-width: 380px;
    pointer-events: auto;
    animation: toastIn 0.35s ease forwards;
    border-left: 4px solid var(--primary);
}
.toast.toast-success { border-left-color: #27ae60; }
.toast.toast-error { border-left-color: #dc3545; }
.toast i { font-size: 2rem; }
.toast.toast-success i { color: #27ae60; }
.toast.toast-error i { color: #dc3545; }
.toast-msg { flex: 1; font-size: 1.4rem; font-weight: 600; color: var(--secondary); }
.toast-close { color: var(--text-light); cursor: pointer; font-size: 1.4rem; }
@keyframes toastIn {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--secondary);
    color: rgba(255,255,255,0.85);
    padding: 1.6rem 2rem;
    z-index: 1500;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { flex: 1; font-size: 1.4rem; margin: 0; }
.cookie-banner a { color: var(--primary); }
.cookie-banner .cookie-btns { display: flex; gap: 1rem; flex-shrink: 0; }

/* ============================================================
   SKELETON LOADING
   ============================================================ */
@keyframes shimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 400px 100%;
    animation: shimmer 1.4s infinite;
    border-radius: 4px;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-page-section { background: var(--bg); }

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
    justify-content: center;
}
.gallery-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    background: var(--bg-gray);
    border: 2px solid var(--border);
    transition: var(--transition);
}
.gallery-filter:hover,
.gallery-filter.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.gallery-grid {
    columns: 4 280px;
    column-gap: 1.6rem;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.6rem;
    border-radius: var(--radius);
    overflow: hidden;
}
.gallery-item-inner {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.gallery-item-inner:hover img {
    transform: scale(1.05);
}
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,13,29,0.75) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.6rem;
}
.gallery-item-inner:hover .gallery-item-overlay {
    opacity: 1;
}
.gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0.7);
    width: 5rem;
    height: 5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
    cursor: pointer;
}
.gallery-item-inner:hover .gallery-zoom {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
}
.gallery-zoom:hover {
    background: var(--primary);
    border-color: var(--primary);
}
.gallery-item-title {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.gallery-empty {
    text-align: center;
    padding: 8rem 2rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}
.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,8,20,0.94);
    backdrop-filter: blur(8px);
}
.lightbox-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    width: 100%;
    height: 100%;
    padding: 2rem;
}
.lightbox-img-wrap {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#lightboxImg {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transition: opacity 0.15s ease;
    object-fit: contain;
}
.lightbox-caption {
    color: rgba(255,255,255,0.7);
    font-size: 1.4rem;
    margin-top: 1.2rem;
    text-align: center;
    max-width: 600px;
}
.lightbox-counter {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 1.3rem;
    background: rgba(0,0,0,0.3);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
}
.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}
.lightbox-close:hover { background: var(--primary); }
.lightbox-prev,
.lightbox-next {
    width: 4.8rem;
    height: 4.8rem;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    flex-shrink: 0;
}
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--primary); }

@media (max-width: 600px) {
    .gallery-grid { columns: 2; column-gap: 1rem; }
    .gallery-item { margin-bottom: 1rem; }
    .lightbox-prev, .lightbox-next { width: 3.6rem; height: 3.6rem; font-size: 1.6rem; }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
    .site-header, .whatsapp-btn, .back-to-top, .hero-scroll,
    .features-strip, .cta-section, .map-section, .site-footer { display: none !important; }
    body { padding-top: 0; color: #000; }
    a { color: #000; }
    .page-hero { background: #f5f5f5 !important; }
    .page-hero h1 { color: #000 !important; }
}
