:root {
    --navy: #161616;
    --steel: #262626;
    --steel-light: #383838;
    --accent: #ed7a1c;
    --accent-hover: #e85d04;
    --gold: #f4a261;
    --bg: #f5f6f7;
    --bg-dark: #111111;
    --text: #1c1c1c;
    --text-muted: #5e5e5e;
    --white: #ffffff;
    --border: #e3e5e9;
    --shadow: 0 4px 24px rgba(17, 17, 17, 0.08);
    --shadow-lg: 0 12px 48px rgba(17, 17, 17, 0.16);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Barlow', system-ui, sans-serif;
    --font-display: 'Barlow Condensed', 'Barlow', sans-serif;
}

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

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

body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.7;
    background: var(--bg);
    overflow-x: hidden;
}

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

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

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* Top bar */
.top-bar {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar a { color: var(--gold); }
.top-bar i { margin-right: 6px; color: var(--accent); }

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition);
}

.header.scrolled { box-shadow: var(--shadow-lg); }

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--navy);
}

.logo img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.nav-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
    background: rgba(232, 93, 4, 0.08);
}

.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 8px !important;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Since 1982 Badge */
.since-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--accent), var(--accent-hover));
    border: 4px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 32px rgba(232, 93, 4, 0.45), inset 0 2px 0 rgba(255,255,255,0.25);
    margin-bottom: 1.75rem;
    animation: badgePulse 3s ease-in-out infinite;
}

.since-badge .since-text {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.95;
    line-height: 1;
}

.since-badge .since-year {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
}

.since-badge.floating {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 10;
    width: 96px;
    height: 96px;
    margin: 0;
}

.since-badge.floating .since-year { font-size: 1.65rem; }

@media (min-width: 769px) {
    .slider-content .since-badge:not(.floating) { display: none; }
}

@media (max-width: 768px) {
    .since-badge.floating { display: none; }
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(232, 93, 4, 0.45), inset 0 2px 0 rgba(255,255,255,0.25); }
    50% { box-shadow: 0 12px 40px rgba(232, 93, 4, 0.6), inset 0 2px 0 rgba(255,255,255,0.25); }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 88vh;
    min-height: 560px;
    max-height: 900px;
    overflow: hidden;
    color: var(--white);
}

.slider-track {
    position: absolute;
    inset: 0;
}

.slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.slider-slide.active { opacity: 1; z-index: 1; }

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(17, 17, 17,0.92) 0%, rgba(17, 17, 17,0.7) 45%, rgba(17, 17, 17,0.35) 100%);
}

.slider-content {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
}

.slider-content .container {
    max-width: 680px;
    padding-top: 40px;
}

.slider-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1rem;
}

.slider-content h1 em { font-style: normal; color: var(--gold); }

.slider-caption {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.slider-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.75;
    max-width: 520px;
}

.slider-controls {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    max-width: 1240px;
    margin: 0 auto;
    gap: 1rem;
}

.slider-arrows { display: flex; gap: 10px; }

.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    backdrop-filter: blur(8px);
}

.slider-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.slider-dots {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--accent);
    z-index: 7;
    transition: width 0.1s linear;
}

/* Model showcase tabs */
.model-showcase { background: var(--white); }

.model-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.model-tab {
    padding: 10px 18px;
    border: 2px solid var(--border);
    background: var(--bg);
    border-radius: 50px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text);
}

.model-tab:hover,
.model-tab.active {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--white);
}

.model-panel {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.model-panel-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/10;
    position: relative;
}

.model-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.model-panel-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.model-panel-thumbs img {
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.65;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.model-panel-thumbs img.active,
.model-panel-thumbs img:hover {
    opacity: 1;
    border-color: var(--accent);
}

.model-panel-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.model-panel-info p { color: var(--text-muted); margin-bottom: 1.5rem; }

.model-panel-info .tag,
.product-info .tag {
    display: inline-block;
    background: rgba(232, 93, 4, 0.12);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Hero (legacy fallback) */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 50%, var(--steel-light) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(232,93,4,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(244,162,97,0.1) 0%, transparent 50%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 100px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero-badge i { color: var(--gold); }

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero-lead {
    font-size: 1.15rem;
    opacity: 0.92;
    max-width: 560px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 93, 4, 0.35);
}

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

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

.hero-visual {
    position: relative;
}

.hero-visual img {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255,255,255,0.15);
}

.hero-collage {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    min-height: 380px;
}

.hero-collage .collage-main {
    width: 72%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.hero-collage .collage-sub {
    position: absolute;
    width: 48%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 255, 255, 0.15);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.hero-collage .collage-sub-1 { top: 0; right: 0; z-index: 3; }
.hero-collage .collage-sub-2 { bottom: 0; right: 8%; z-index: 1; }
.hero-collage .collage-sub-3 { bottom: 12%; left: 0; width: 42%; z-index: 3; }

.home-strip {
    padding: 0;
    background: var(--navy);
    overflow: hidden;
}

.home-strip-scroll {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    animation: stripScroll 40s linear infinite;
    width: max-content;
}

.home-strip-scroll:hover { animation-play-state: paused; }

.home-strip-item {
    flex-shrink: 0;
    width: 220px;
    height: 150px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.home-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes stripScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

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

.card-image-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.card-image-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-image:hover .card-image-thumb img { transform: scale(1.06); }

.card-image-thumb .image-caption {
    padding: 0.75rem 1rem;
}

.card-image-thumb .image-caption-title {
    font-size: 0.95rem;
}

.card-image-body {
    padding: 1.5rem;
}

.card-image-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.card-image-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.gallery-grid-home {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 160px;
    gap: 12px;
}

.gallery-grid-home .gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-grid-home .gallery-item.wide {
    grid-column: span 2;
}

.home-showcase-band {
    background: var(--white);
    padding: 60px 0;
}

.home-showcase-band.alt { background: var(--bg); }

.showcase-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 2rem;
}

.showcase-mini-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform var(--transition);
    cursor: pointer;
}

.showcase-mini-grid img:hover { transform: scale(1.03); }

.seo-with-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.seo-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    position: sticky;
    top: 100px;
}

.seo-images img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform var(--transition);
}

.seo-images img:first-child {
    grid-column: span 2;
    aspect-ratio: 16/10;
}

.seo-images img:hover { transform: scale(1.02); }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
}

.hero-stat span { font-size: 0.85rem; opacity: 0.8; }

/* Page hero */
.page-hero {
    background: linear-gradient(135deg, var(--navy), var(--steel));
    color: var(--white);
    padding: 60px 0 50px;
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.page-hero p {
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

/* Sections */
section { padding: 80px 0; }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .label {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232, 93, 4, 0.2);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy), var(--steel));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.card-icon i { color: var(--gold); font-size: 1.4rem; }

.card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.card p { color: var(--text-muted); font-size: 0.95rem; }

.card ul {
    list-style: none;
    margin-top: 1rem;
}

.card ul li {
    padding: 4px 0 4px 20px;
    position: relative;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Product showcase */
.product-showcase {
    background: var(--white);
}

.product-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border);
}

.product-row:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.product-row.reverse { direction: rtl; }
.product-row.reverse > * { direction: ltr; }

.product-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    position: relative;
}

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

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

/* Resim üstü etiketler — her zaman okunaklı */
.image-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 1.15rem;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.75) 70%, transparent 100%);
    color: var(--white);
    pointer-events: none;
}

.image-caption-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.image-caption-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.product-info h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1.5rem;
}

.keyword-tags span {
    background: var(--bg);
    color: var(--steel);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid var(--border);
}

/* Gallery preview */
.gallery-preview {
    background: var(--bg-dark);
    color: var(--white);
}

.gallery-preview .section-header h2 { color: var(--white); }
.gallery-preview .section-header p { color: rgba(255,255,255,0.7); }

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

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: none;
    padding: 0;
    background: var(--steel);
}

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

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

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.92) 0%, rgba(17, 17, 17, 0.45) 45%, transparent 75%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 1;
    transition: background var(--transition);
}

.gallery-item:hover .overlay {
    background: linear-gradient(to top, rgba(17, 17, 17, 0.97) 0%, rgba(17, 17, 17, 0.55) 50%, transparent 80%);
}

.gallery-item .overlay span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.35;
}

/* Gallery filters */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--border);
    background: var(--white);
    border-radius: 50px;
    font-family: var(--font);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text);
}

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

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox img {
    max-height: 90vh;
    max-width: 90vw;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background var(--transition);
}

.lightbox-close:hover { background: rgba(255,255,255,0.1); }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    transition: background var(--transition);
}

.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* SEO content block */
.seo-content {
    background: var(--white);
}

.seo-content .content-block {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2, .seo-content h3 {
    font-family: var(--font-display);
    color: var(--navy);
    margin: 2rem 0 1rem;
}

.seo-content h2 { font-size: 1.75rem; }
.seo-content h3 { font-size: 1.35rem; }

.seo-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-align: justify;
}

.seo-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-muted);
}

.seo-content li { margin-bottom: 0.5rem; }

/* Timeline */
.timeline { position: relative; padding-left: 2rem; }

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent), var(--steel));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--accent);
    transform: translateX(-5.5px);
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    border: 1px solid var(--border);
}

.contact-card i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy), var(--steel));
    color: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-card h4 { color: var(--navy); margin-bottom: 0.25rem; }
.contact-card p, .contact-card a { color: var(--text-muted); font-size: 0.95rem; }

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: var(--font);
    font-size: 1rem;
    transition: border-color var(--transition);
}

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

.form-group textarea { resize: vertical; min-height: 140px; }

.map-section { margin-top: 3.5rem; }

.map-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.map-section-header h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.map-section-header p {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}

.map-dual {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.map-tarif {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    background: var(--white);
}

.map-tarif img {
    width: 100%;
    display: block;
    cursor: zoom-in;
}

.map-tarif-caption {
    padding: 1rem 1.25rem;
    background: var(--bg);
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.map-tarif-caption strong { color: var(--navy); }

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 360px;
}

.map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

.map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

@media (max-width: 900px) {
    .map-dual { grid-template-columns: 1fr; }
}

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-band h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-band p { opacity: 0.95; margin-bottom: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.cta-band .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-band .btn-outline:hover {
    background: var(--white);
    color: var(--accent);
}

/* Footer */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer h4 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.03em;
}

.footer p { font-size: 0.9rem; line-height: 1.8; }

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer ul a:hover { color: var(--gold); }

.footer-keywords {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
    margin-top: 1rem;
}

.social-links { display: flex; gap: 12px; margin-top: 1.25rem; }

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

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* Features strip */
.features-strip {
    background: var(--white);
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.features-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.feature-strip-item {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

.feature-strip-item:last-child { border-right: none; }

.feature-strip-item i {
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.feature-strip-item strong {
    display: block;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-strip-item span { font-size: 0.8rem; color: var(--text-muted); }

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .features-strip .container { grid-template-columns: repeat(2, 1fr); }
    .feature-strip-item:nth-child(2) { border-right: none; }
    .feature-strip-item { border-bottom: 1px solid var(--border); }
    .product-row { grid-template-columns: 1fr; }
    .product-row.reverse { direction: ltr; }
    .gallery-grid-home { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid-home .gallery-item.featured { grid-column: span 2; grid-row: span 1; }
    .showcase-mini-grid { grid-template-columns: repeat(2, 1fr); }
    .seo-with-images { grid-template-columns: 1fr; }
    .seo-images { position: static; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--white);
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        transition: left var(--transition);
        gap: 0;
    }

    .nav-menu.active { left: 0; }
    .nav-menu a { padding: 14px 16px; }

    .hero-grid { grid-template-columns: 1fr; text-align: center; padding: 80px 0 60px; }
    .hero-lead { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { grid-template-columns: 1fr; gap: 1.5rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .features-strip .container { grid-template-columns: 1fr; }
    .feature-strip-item { border-right: none; }
    .gallery-grid-home { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
    .gallery-grid-home .gallery-item.featured,
    .gallery-grid-home .gallery-item.wide { grid-column: span 2; grid-row: span 1; }
    .hero-collage { min-height: 300px; }
    .showcase-mini-grid { grid-template-columns: 1fr 1fr; }
    .model-panel { grid-template-columns: 1fr; }
    .since-badge.floating { top: 16px; right: 16px; width: 80px; height: 80px; }
    .since-badge.floating .since-year { font-size: 1.35rem; }
    .hero-slider { height: 75vh; min-height: 480px; }
    .slider-controls { flex-wrap: wrap; justify-content: center; }
}

/* ── Language switcher (top-bar) ── */
.top-info { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

.lang-switch { display: inline-flex; align-items: center; gap: 4px; }

.lang-switch a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 3px 9px;
    border-radius: 6px;
    line-height: 1.5;
    transition: all var(--transition);
}

.lang-switch a:hover { color: var(--white); background: rgba(255, 255, 255, 0.1); }
.lang-switch a.active { color: var(--white); background: var(--accent); }

@media (max-width: 768px) {
    .lang-switch { margin-top: 2px; }
}

/* ── RTL (Arabic) ── */
[dir="rtl"] { text-align: right; }

[lang="ar"] body,
[lang="ar"] {
    font-family: 'Cairo', 'Segoe UI', Tahoma, 'Geeza Pro', sans-serif;
}

[lang="ar"] .logo-text strong,
[lang="ar"] .slider-content h1,
[lang="ar"] .section-header h2,
[lang="ar"] h2, [lang="ar"] h3 {
    font-family: 'Cairo', var(--font-display), sans-serif;
}

[dir="rtl"] .top-bar i,
[dir="rtl"] .contact-card > i,
[dir="rtl"] .footer p i { margin-right: 0; margin-left: 6px; }

[dir="rtl"] .card h3 i { margin-right: 0 !important; margin-left: 8px; }

[dir="rtl"] .slider-content .container { margin-right: 0; }

[dir="rtl"] .slider-slide::after {
    background: linear-gradient(255deg, rgba(17, 17, 17, 0.92) 0%, rgba(17, 17, 17, 0.7) 45%, rgba(17, 17, 17, 0.35) 100%);
}

[dir="rtl"] .slider-desc { margin-left: auto; margin-right: 0; }

[dir="rtl"] .since-badge.floating { right: auto; left: 24px; }
@media (max-width: 768px) {
    [dir="rtl"] .since-badge.floating { left: 16px; right: auto; }
    [dir="rtl"] .nav-menu { left: auto; right: -100%; }
    [dir="rtl"] .nav-menu.active { right: 0; left: auto; }
}

[dir="rtl"] .slider-progress { left: auto; right: 0; }
[dir="rtl"] .timeline { border-left: none; }
