/* ═══════════════════════════════════════════════════════════════
   KAYA İNŞAAT — Premium Construction Theme
   Charcoal + Warm Stone + Amber Accents — Creative & Bold
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=DM+Sans:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
    --primary: #d97706;
    --primary-light: #f59e0b;
    --primary-dark: #b45309;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --neon: #f59e0b;

    --white: #ffffff;
    --bg: #1c1917;
    --bg-soft: #231f1b;
    --bg-muted: #292524;
    --bg-card: #2a2520;
    --bg-warm: #1a1714;
    --secondary: #292524;

    --heading: #fafaf9;
    --text: #d6d3d1;
    --text-soft: #a8a29e;
    --gray: #78716c;
    --gray-light: #57534e;
    --border: #3d3530;
    --border-light: #332e29;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.25);
    --shadow: 0 8px 30px rgba(0,0,0,0.3);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 40px rgba(217,119,6,0.15);

    --radius: 6px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Archivo Black', 'Bebas Neue', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

/* ═══ RESET & BASE ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Subtle noise texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.section { max-width: 1300px; margin: 0 auto; padding: 100px 32px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(217,119,6,0.25);
    background: linear-gradient(135deg, rgba(217,119,6,0.06), rgba(245,158,11,0.03));
    margin-bottom: 20px;
}
.section-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--heading);
    letter-spacing: -0.01em;
    line-height: 1.1;
    text-transform: uppercase;
}

/* ═══ BUTTONS ═══ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    font-weight: 700;
    font-size: 0.82rem;
    font-family: var(--font);
    cursor: pointer;
    border: none;
    transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }

.btn-primary {
    background: var(--primary);
    color: #fff;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15));
    opacity: 0;
    transition: opacity 0.4s;
}
.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(217,119,6,0.3);
}
.btn-primary:hover::after { opacity: 1; }

.btn-secondary {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(255,255,255,0.2);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(217,119,6,0.05);
}

/* ═══ TOP BAR ═══ */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 40px;
    background: var(--bg-warm);
    font-size: 0.76rem;
    color: var(--text-soft);
    z-index: 100;
    position: relative;
    border-bottom: 1px solid var(--border-light);
}
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 22px; }
.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-soft);
    text-decoration: none;
    transition: color 0.3s;
    font-family: var(--font-mono);
    font-size: 0.72rem;
}
.top-bar-item:hover { color: var(--accent); }
.top-bar-item svg { width: 13px; height: 13px; fill: var(--primary); }
.top-bar-socials { display: flex; gap: 8px; }
.top-bar-socials a { display: flex; color: var(--gray); transition: color 0.3s; }
.top-bar-socials a:hover { color: var(--accent); }
.top-bar-socials svg { width: 15px; height: 15px; fill: currentColor; }

/* ═══ HEADER / NAV ═══ */
#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 80px;
    background: rgba(28,25,23,0.92);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 90;
}
.logo a { display: flex; align-items: center; }
.logo svg { height: 42px; width: auto; }

.nav-menu { display: flex; list-style: none; gap: 2px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 18px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.25s;
    position: relative;
}
.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--heading); }
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-menu .arrow { width: 14px; height: 14px; fill: var(--gray); transition: transform 0.2s; }
.nav-menu > li:hover .arrow { transform: rotate(180deg); fill: var(--primary); }

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    padding: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
}
.nav-item:hover > .dropdown,
li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown a {
    display: block;
    padding: 11px 16px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-soft);
    transition: all 0.2s;
    border-left: 2px solid transparent;
}
.dropdown a:hover {
    color: var(--heading);
    background: rgba(217,119,6,0.05);
    border-left-color: var(--primary);
}

.nav-cta {
    padding: 11px 28px;
    background: var(--primary);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.nav-cta:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(217,119,6,0.3);
}

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-switcher { position: relative; }
.lang-switcher-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-soft);
    cursor: pointer;
    transition: all 0.2s;
}
.lang-switcher-toggle:hover { color: var(--heading); }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}
.menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--heading);
    transition: all 0.3s;
}

/* ═══ HERO ═══ */
.hero {
    position: relative;
    height: 92vh;
    min-height: 600px;
    max-height: 950px;
    overflow: hidden;
}
.hero-slider {
    position: absolute;
    inset: 0;
    background: var(--bg);
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--bg);
    filter: brightness(0.45) saturate(1.1);
    transform: scale(1.05);
    transition: transform 8s ease-out;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(165deg, rgba(28,25,23,0.7) 0%, transparent 50%),
        linear-gradient(to top, rgba(28,25,23,0.95) 0%, rgba(28,25,23,0.3) 35%, transparent 65%);
    z-index: 2;
}
/* Diagonal decorative line */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(160deg, transparent 48%, rgba(217,119,6,0.03) 49%, rgba(217,119,6,0.06) 50%, transparent 51%);
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 60px 130px;
    z-index: 10;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(217,119,6,0.1);
    backdrop-filter: blur(10px);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(217,119,6,0.25);
    margin-bottom: 24px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.hero-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--accent);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    color: #fff;
    line-height: 1;
    margin-bottom: 24px;
    max-width: 700px;
    text-transform: uppercase;
}
.hero-title span {
    color: var(--primary);
    display: inline-block;
    position: relative;
}
.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    opacity: 0.4;
}
.hero-desc {
    font-size: clamp(0.95rem, 1.4vw, 1.08rem);
    color: rgba(255,255,255,0.55);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
    position: absolute;
    bottom: 0;
    right: 60px;
    display: flex;
    z-index: 10;
}
.hero-stat {
    padding: 28px 38px;
    background: rgba(28,25,23,0.85);
    backdrop-filter: blur(16px);
    text-align: center;
    border-left: 1px solid var(--border);
    position: relative;
}
.hero-stat:first-child { border-left: none; }
.hero-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--primary);
    line-height: 1;
}
.hero-stat-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--text-soft);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 60px;
    display: flex;
    gap: 12px;
    z-index: 10;
    align-items: center;
}
.slider-dot {
    width: 36px;
    height: 3px;
    background: rgba(255,255,255,0.15);
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
}
.slider-dot.active {
    background: var(--primary);
    width: 56px;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}
.slider-arrow {
    width: 52px;
    height: 52px;
    background: rgba(28,25,23,0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s;
    pointer-events: auto;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.slider-arrow:hover { background: var(--primary); border-color: var(--primary); }
.slider-arrow svg { width: 22px; height: 22px; fill: currentColor; }

/* Hero slide content */
.hero-slide-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 60px 130px; z-index: 5;
    pointer-events: none; opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-slide.active .hero-slide-content { opacity: 1; transform: translateY(0); pointer-events: auto; }
.hero-slide-inner { max-width: 620px; }
.hero-slide-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem); color: #fff;
    margin-bottom: 12px; line-height: 1; text-transform: uppercase;
}
.hero-slide-desc {
    font-size: clamp(0.9rem, 1.4vw, 1rem); color: rgba(255,255,255,0.55);
    max-width: 500px; line-height: 1.7;
}
.hero-slide-content .btn { pointer-events: auto; margin-top: 22px; }

/* ═══ SERVICES ═══ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 20px;
}
.service-card {
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
    position: relative;
    overflow: hidden;
}
/* Angled corner cut */
.service-card {
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: height 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.service-card:hover {
    background: var(--bg-muted);
    border-color: rgba(217,119,6,0.2);
    box-shadow: var(--shadow-glow);
    transform: translateY(-8px);
}
.service-card:hover::before { height: 100%; }

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: rgba(217,119,6,0.07);
    border: 1px solid rgba(217,119,6,0.15);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.service-icon svg { width: 24px; height: 24px; fill: var(--primary); }
.service-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.service-desc {
    font-size: 0.88rem;
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 18px;
}
.service-link {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.service-link:hover { color: var(--accent-light); gap: 10px; }

/* ═══ INFO SECTION ═══ */
.info-section {
    background: var(--bg-soft);
    position: relative;
}
.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}
.info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.info-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    color: var(--heading);
    margin-bottom: 24px;
    text-transform: uppercase;
    line-height: 1.1;
}
.info-text { color: var(--text-soft); line-height: 1.9; font-size: 0.95rem; }
.info-visual {
    position: relative;
}
.info-visual::before {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    bottom: 16px;
    left: 16px;
    border: 2px solid rgba(217,119,6,0.15);
    z-index: 0;
}
.info-visual img {
    width: 100%;
    position: relative;
    z-index: 1;
    filter: brightness(0.9) contrast(1.05);
}

/* ═══ STATS / TEMPERATURE SECTION ═══ */
.temp-section {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.temp-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(217,119,6,0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(245,158,11,0.03) 0%, transparent 60%);
    pointer-events: none;
}
.temp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--border);
}
.temp-card {
    text-align: center;
    padding: 44px 24px;
    background: var(--bg-card);
    transition: all 0.4s;
    position: relative;
}
.temp-card:hover {
    background: var(--bg-muted);
}
.temp-card:hover .temp-range { color: var(--accent-light); }
.temp-icon { margin-bottom: 12px; }
.temp-icon img { width: 40px; height: 40px; margin: 0 auto; opacity: 0.7; }
.temp-title {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 400;
    color: var(--gray);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.temp-range {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--primary);
    line-height: 1;
    transition: color 0.3s;
}

/* ═══ LISTING / CARDS ═══ */
.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.listing-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    overflow: hidden;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
    position: relative;
}
.listing-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.listing-card:hover {
    border-color: rgba(217,119,6,0.2);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.listing-card:hover::after { transform: scaleX(1); }
.listing-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-muted);
}
.listing-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s;
    filter: brightness(0.8) saturate(0.9);
}
.listing-card:hover .listing-card-image img {
    transform: scale(1.08);
    filter: brightness(0.95) saturate(1);
}
.listing-card-body {
    padding: 24px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.listing-card-body h3 {
    color: var(--heading);
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.35;
}
.listing-card-body p {
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.65;
}
.card-date {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--gray);
    letter-spacing: 0.05em;
}

/* ═══ PAGE HERO (iç sayfalar) ═══ */
.page-hero {
    position: relative;
    padding: 120px 60px 64px;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--bg-warm);
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, var(--primary), transparent 60%);
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) saturate(1.1);
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(28,25,23,0.85), rgba(28,25,23,0.5));
    z-index: 1;
}
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.page-hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    max-width: 600px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
}
.breadcrumb a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--accent); }
.breadcrumb svg { color: rgba(255,255,255,0.15); flex-shrink: 0; }

/* ═══ PAGE CONTENT ═══ */
.page-content-section { padding: 70px 24px; }
.page-content-wrapper { max-width: 900px; margin: 0 auto; }
.page-body { font-size: 1rem; color: var(--text); line-height: 1.95; }
.page-body h2, .page-body h3 {
    color: var(--heading);
    margin: 32px 0 14px;
    font-family: var(--font-display);
    text-transform: uppercase;
}
.page-body p { margin-bottom: 18px; }
.page-body img { margin: 24px 0; }
.page-body a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.page-body a:hover { color: var(--accent-light); }

.page-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.page-gallery-item { aspect-ratio: 1; overflow: hidden; }
.page-gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s; filter: brightness(0.85);
}
.page-gallery-item:hover img { transform: scale(1.06); filter: brightness(1); }

/* ═══ CTA ═══ */
.cta {
    text-align: center;
    padding: 110px 40px;
    position: relative;
    overflow: hidden;
    background: var(--bg-warm);
}
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 40% 50%, rgba(217,119,6,0.07), transparent 55%),
        radial-gradient(ellipse at 70% 30%, rgba(245,158,11,0.04), transparent 55%);
}
.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(217,119,6,0.3), transparent);
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--heading);
    position: relative;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.cta-desc {
    font-size: 1rem;
    color: var(--text-soft);
    margin-bottom: 40px;
    position: relative;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    position: relative;
    flex-wrap: wrap;
}

/* ═══ FOOTER ═══ */
footer {
    background: var(--bg-warm);
    color: var(--text-soft);
    padding: 80px 40px 0;
    border-top: 1px solid var(--border);
    position: relative;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 3px;
    background: var(--primary);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 48px;
}
.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.75;
    margin-top: 18px;
    color: var(--gray);
}
.footer-socials { display: flex; gap: 8px; margin-top: 22px; }
.footer-socials a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid var(--border);
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.footer-socials a:hover { background: var(--primary); border-color: var(--primary); }
.footer-socials svg { width: 16px; height: 16px; fill: var(--gray); }
.footer-socials a:hover svg { fill: #fff; }

.footer-title {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    font-size: 0.88rem;
    color: var(--gray);
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0;
}
.footer-links a:hover { color: var(--heading); gap: 6px; }
.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s;
}
.footer-links a:hover::before { width: 12px; }

.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; }
.footer-contact-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-icon svg { width: 16px; height: 16px; fill: var(--primary); }
.footer-contact-text { font-size: 0.88rem; color: var(--gray); line-height: 1.5; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-top: 1px solid var(--border);
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.78rem;
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--gray); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ═══ SUB MODULES GRID ═══ */
.sub-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.sub-module-card {
    background: var(--bg-card);
    padding: 32px 26px;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.sub-module-card:hover {
    border-color: rgba(217,119,6,0.2);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}
.sub-module-card h3 { color: var(--heading); font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; text-transform: uppercase; }
.sub-module-card p { color: var(--text-soft); font-size: 0.88rem; line-height: 1.65; }

/* ═══ MOBILE DRAWER NAV ═══ */
.mob-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    z-index: 199; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.mob-overlay.open { display: block; }

.mob-drawer {
    position: fixed; top: 0; left: 0; bottom: 0; width: 310px; max-width: 85vw;
    background: var(--bg-soft); z-index: 200; transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
    overflow-y: auto; display: flex; flex-direction: column;
    box-shadow: 6px 0 40px rgba(0,0,0,0.5);
    border-right: 1px solid var(--border);
}
.mob-drawer.open { transform: translateX(0); }

.mob-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px; border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.mob-logo svg { height: 36px; width: auto; }
.mob-close {
    width: 38px; height: 38px; border: 1px solid var(--border);
    background: var(--bg-muted); display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--gray); transition: all 0.2s;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.mob-close:hover { background: rgba(217,119,6,0.1); color: var(--primary); border-color: var(--primary); }
.mob-close svg { width: 18px; height: 18px; }

.mob-menu { list-style: none; flex: 1; padding: 14px 0; overflow-y: auto; }
.mob-menu li { border-bottom: 1px solid var(--border-light); }
.mob-link {
    display: flex; align-items: center; gap: 12px; padding: 15px 22px;
    font-size: 0.88rem; font-weight: 600; color: var(--text-soft); text-decoration: none;
    transition: all 0.2s; background: none; border: none; width: 100%; text-align: left;
    cursor: pointer; font-family: inherit; text-transform: uppercase; letter-spacing: 0.04em;
}
.mob-link svg:first-child { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.mob-link:hover, .mob-link:active { background: rgba(217,119,6,0.05); color: var(--heading); }
.mob-has-children { justify-content: space-between; }
.mob-has-children span { flex: 1; }
.mob-arrow { width: 18px; height: 18px; color: var(--gray); transition: transform 0.2s; flex-shrink: 0; }
.mob-has-children.open .mob-arrow { transform: rotate(180deg); color: var(--primary); }

.mob-sub {
    list-style: none; max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    background: rgba(0,0,0,0.15);
}
.mob-sub.open { max-height: 500px; }
.mob-sub-link {
    display: block; padding: 12px 22px 12px 48px; font-size: 0.85rem; font-weight: 500;
    color: var(--gray); text-decoration: none; transition: all 0.2s;
    border-left: 2px solid transparent; margin-left: 22px;
}
.mob-sub-link:hover { color: var(--primary); border-left-color: var(--primary); }

.mob-contact {
    padding: 14px 22px; border-top: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 10px; flex-shrink: 0;
}
.mob-contact-item {
    display: flex; align-items: center; gap: 10px; font-size: 0.8rem; font-weight: 500;
    color: var(--gray); text-decoration: none; transition: color 0.2s;
}
.mob-contact-item:hover { color: var(--primary); }
.mob-contact-item svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

.mob-cta-wrap { padding: 18px 22px; flex-shrink: 0; }
.mob-cta {
    display: block; text-align: center; padding: 14px; background: var(--primary);
    color: #fff; font-size: 0.85rem; font-weight: 800; text-decoration: none;
    text-transform: uppercase; letter-spacing: 0.08em;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: all 0.3s;
}
.mob-cta:hover { background: var(--primary-light); }

/* ═══ MOBILE BOTTOM NAV ═══ */
.mob-bottom {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--bg-soft); border-top: 1px solid var(--border); z-index: 80;
    align-items: stretch; justify-content: space-around;
    padding: 6px 4px; padding-bottom: max(env(safe-area-inset-bottom, 6px), 6px);
}
.mob-bottom-item {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2px; flex: 1; padding: 6px 2px; text-decoration: none;
    color: var(--gray); font-size: 0.6rem; font-weight: 600;
    transition: color 0.2s;
}
.mob-bottom-item svg { width: 22px; height: 22px; }
.mob-bottom-item.active { color: var(--primary); }
.mob-bottom-item:active { background: rgba(217,119,6,0.05); }

.mob-bottom-call {
    display: flex; align-items: center; justify-content: center;
    width: 54px; height: 54px; border-radius: 50%; margin-top: -22px;
    background: var(--primary);
    color: #fff; box-shadow: 0 6px 24px rgba(217,119,6,0.35); flex-shrink: 0;
    border: 3px solid var(--bg-soft);
}
.mob-bottom-call svg { width: 24px; height: 24px; }

/* ═══ SCROLL TOP ═══ */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
    box-shadow: 0 6px 24px rgba(217,119,6,0.3);
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--primary-light); transform: translateY(-3px); }
.scroll-top svg { width: 22px; height: 22px; fill: currentColor; }

/* ═══ ANIMATIONS ═══ */
.animate-fade-in { animation: fadeIn 0.35s ease; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .hero { height: 75vh; }
    .hero-content { padding: 0 32px 90px; }
    .hero-stats { display: none; }
    .info-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .info-visual::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .temp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    #header { padding: 0 18px; height: 66px; }
    .nav-menu { display: none; }
    .menu-toggle { display: flex; }
    .header-actions .nav-cta { display: none; }
    .header-actions .lang-switcher { display: none; }
    .mob-bottom { display: flex; }

    .hero { height: 70vh; min-height: 450px; }
    .hero-content { padding: 0 22px 70px; }
    .hero-title { font-size: 2.5rem; }
    .hero::after { display: none; }

    .section { padding: 60px 18px; }
    .page-hero { padding: 90px 22px 44px; min-height: 220px; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    footer { padding: 50px 22px 0; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .listing-grid { grid-template-columns: 1fr; gap: 18px; }
    .temp-grid { grid-template-columns: repeat(2, 1fr); }

    main { padding-bottom: 72px; }
    .scroll-top { bottom: 80px; }
    #a11y-root { bottom: 80px; }

    .hero-slide-content { padding: 24px 22px 70px; }
}

@media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
    .temp-grid { grid-template-columns: 1fr 1fr; }
    .temp-range { font-size: 2.2rem; }
}

/* ═══ SCROLLBAR ═══ */
::-webkit-scrollbar { width: 6px; background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

.mobile-scrollbar-none::-webkit-scrollbar { display: none; }
.mobile-scrollbar-none { -ms-overflow-style: none; scrollbar-width: none; }
.scrollbar-thin::-webkit-scrollbar { width: 4px; }
.scrollbar-thin::-webkit-scrollbar-thumb { background: var(--border); }
