/*
Theme Name: BA Interior Design
Theme URI: https://ba-interior-design.de
Author: BA Interior Design
Author URI: https://ba-interior-design.de
Description: Professionelles WordPress-Theme fuer BA Interior Design - Innenarchitektur Frankfurt Hessen Deutschland. Elementor-kompatibel, mehrsprachig DE/EN/FR/TR, SEO-optimiert.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ba-interior-design
Tags: architecture, interior-design, portfolio, minimalist, elementor, multilingual, responsive
*/

/* === CSS Variables === */
:root {
  --bg: #0e0e0e;
  --white: #ffffff;
  --gold: #c9a96e;
  --gold2: #b8935a;
  --gray: #aaaaaa;
  --font: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --nav-h: 70px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font); font-weight: 300; color: var(--white); background: var(--bg); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img, video { 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; }

/* === Header === */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center; padding: 0 48px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.4s;
}
.site-header.scrolled { background: rgba(10,10,10,0.97); }

/* Logo */
.logo-link-wrap {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.site-logo-img {
  height: 46px; width: auto; max-width: 160px;
  object-fit: contain; display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.4s;
  flex-shrink: 0;
}
.logo-text-block {
  display: flex; flex-direction: column; gap: 4px;
  border-left: 1px solid rgba(255,255,255,0.25);
  padding-left: 12px;
  transition: border-color 0.4s;
}
.logo-brand-name {
  font-family: var(--font);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.92); line-height: 1;
  white-space: nowrap;
  transition: color 0.4s;
}
.logo-brand-sub {
  font-family: var(--font);
  font-size: 7.5px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); line-height: 1;
  white-space: nowrap;
  transition: color 0.4s;
}

/* Main Nav */
.header-right-group {
  display: flex; align-items: center; gap: 0;
  margin-left: auto;
}
.main-nav ul { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-item { position: relative; }
.nav-btn {
  font-family: var(--font); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.82); background: none; border: none;
  cursor: pointer; padding: 10px 18px; display: block;
  transition: color 0.2s; white-space: nowrap;
}
.nav-btn:hover { color: var(--white); }

/* Dropdown */
.nav-drop {
  position: absolute; top: calc(100% + 18px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(252,252,252,0.98);
  min-width: 195px; opacity: 0; visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  box-shadow: 0 16px 48px rgba(0,0,0,0.22);
  z-index: 100;
}
.nav-item:hover .nav-drop {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-drop a {
  display: block; padding: 13px 24px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #444; text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color 0.15s, padding-left 0.18s;
}
.nav-drop a:last-child { border-bottom: none; }
.nav-drop a:hover { color: #111; padding-left: 32px; }
.nav-arrow { font-size: 7px; opacity: 0.5; margin-left: 3px; display: inline-block; transition: transform 0.2s; }
.nav-item.has-drop:hover .nav-arrow { transform: rotate(180deg); opacity: 1; }
.nav-drop::before {
  content: ''; position: absolute; top: -18px; left: 0; right: 0; height: 18px;
}

/* Lang switcher */
.lang-wrap { position: relative; margin-left: 20px; }
.lang-btn {
  font-family: var(--font); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); background: none;
  border: 1px solid rgba(255,255,255,0.22);
  padding: 5px 10px; cursor: pointer;
  display: flex; align-items: center; gap: 4px;
  transition: all 0.2s;
}
.lang-btn:hover { border-color: rgba(255,255,255,0.55); color: var(--white); }
.lang-drop {
  position: absolute; top: calc(100% + 7px); right: 0;
  background: rgba(252,252,252,0.98);
  min-width: 148px; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: all 0.22s; z-index: 999;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.lang-wrap.open .lang-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-drop a, .lang-drop .lang-item {
  display: block; padding: 11px 18px;
  font-size: 9.5px; letter-spacing: 0.15em; text-transform: uppercase;
  color: #444; text-decoration: none; cursor: pointer;
  border-bottom: 1px solid rgba(0,0,0,0.06); transition: all 0.15s;
}
.lang-drop a:hover, .lang-drop a.active, .lang-drop .lang-item:hover, .lang-drop .lang-item.active { color: var(--gold); padding-left: 26px; }

/* Search */
.search-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.7); padding: 6px;
  display: flex; transition: color 0.2s; margin-left: 8px;
}
.search-btn:hover { color: var(--white); }
.search-btn svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.6; }

/* Hamburger */
.menu-toggle { display: none; flex-direction: column; gap: 5.5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: 8px; }
.menu-toggle span { display: block; width: 23px; height: 1px; background: rgba(255,255,255,0.8); transition: all 0.35s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; background: #0e0e0e; z-index: 850;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  opacity: 0; visibility: hidden; transition: all 0.5s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav ul { text-align: center; list-style: none; }
.mobile-nav ul li a {
  font-family: var(--serif); font-size: clamp(2rem,6vw,3rem);
  font-weight: 300; color: rgba(255,255,255,0.88);
  text-decoration: none; display: block; padding: 0.4rem 0;
  transition: color 0.2s;
}
.mobile-nav ul li a:hover { color: var(--gold); }
.mobile-lang { display: flex; gap: 1.5rem; margin-top: 2rem; }
.mobile-lang a { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: #555; cursor: pointer; transition: color 0.2s; }
.mobile-lang a.active, .mobile-lang a:hover { color: var(--gold); }
/* Mobile submenus */
.mob-has-sub { position: relative; }
.mob-has-sub > a { display: inline-block; }
.mob-sub-toggle {
  background: none; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.5);
  font-size: 1.2rem; width: 36px; height: 36px; cursor: pointer; margin-left: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  vertical-align: middle; transition: all 0.2s; border-radius: 50%;
}
.mob-sub-toggle:hover { border-color: var(--gold); color: var(--gold); }
.mob-sub-toggle.open { transform: rotate(45deg); color: var(--gold); border-color: var(--gold); }
.mob-sub {
  list-style: none; max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  padding-left: 0;
}
.mob-sub.open { max-height: 400px; }
.mob-sub li a {
  font-family: var(--font) !important; font-size: 0.85rem !important; font-weight: 400 !important;
  color: rgba(255,255,255,0.5) !important; padding: 0.25rem 0 !important;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.mob-sub li a:hover { color: var(--gold) !important; }

/* === Page Hero === */
.page-hero { position: relative; height: 58vh; min-height: 360px; overflow: hidden; }
.page-hero img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.2) 60%); }
.page-hero-content { position: absolute; bottom: 54px; left: 54px; }
.hero-label { font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.5); display: block; margin-bottom: 9px; }
.hero-h1 { font-family: var(--serif); font-size: clamp(2rem,4.5vw,3.8rem); font-weight: 300; letter-spacing: -0.01em; color: var(--white); line-height: 1.12; }

/* === Page Body === */
.page-content-wrap { background: var(--bg); }
.page-body { max-width: 1200px; margin: 0 auto; padding: 60px 54px 100px; }
.back-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); background: none; border: none; cursor: pointer;
  font-family: var(--font); margin-bottom: 46px; transition: color 0.2s;
  text-decoration: none;
}
.back-btn:hover { color: rgba(255,255,255,0.75); }
.section-lbl { font-size: 9px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 18px; display: block; }
.section-h2 { font-family: var(--serif); font-size: clamp(1.7rem,3vw,2.7rem); font-weight: 300; color: var(--white); margin-bottom: 24px; line-height: 1.15; letter-spacing: -0.01em; }
.gold-line { width: 42px; height: 1px; background: var(--gold); margin-bottom: 26px; }
.body-text { font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.9; font-weight: 300; margin-bottom: 14px; }
.pg-section { margin-bottom: 72px; }

/* === Portfolio Grid === */
.proj-filter-row { display: flex; flex-wrap: wrap; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 4px; }
.pf-btn {
  font-family: var(--font); font-size: 9.5px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); background: none; border: none;
  padding: 11px 18px 11px 0; cursor: pointer;
  border-bottom: 1px solid transparent; margin-bottom: -1px; transition: color 0.2s;
}
.pf-btn.active, .pf-btn:hover { color: var(--white); border-bottom-color: rgba(255,255,255,0.45); }
.proj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; margin-top: 4px; }
.proj-card { position: relative; aspect-ratio: 4/3; overflow: hidden; cursor: pointer; background: #1c1c1c; }
.proj-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.75s ease; }
.proj-card:hover img { transform: scale(1.05); }
.proj-card-overlay { position: absolute; inset: 0; background: transparent; display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; transition: background 0.38s; }
.proj-card:hover .proj-card-overlay { background: rgba(0,0,0,0.65); }
.proj-card-info { opacity: 0; transform: translateY(10px); transition: all 0.32s; }
.proj-card:hover .proj-card-info { opacity: 1; transform: translateY(0); }
.proj-cat { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); display: block; margin-bottom: 4px; }
.proj-name { font-size: 14px; color: var(--white); font-weight: 400; }

/* === Services === */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.svc-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); padding: 34px; position: relative; overflow: hidden; transition: background 0.32s; }
.svc-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.55s; }
.svc-card:hover::before { width: 100%; }
.svc-card:hover { background: rgba(255,255,255,0.055); }
.svc-num { font-family: var(--serif); font-size: 3.2rem; color: rgba(255,255,255,0.05); display: block; line-height: 1; margin-bottom: 14px; }
.svc-bar { width: 32px; height: 1px; background: var(--gold); margin-bottom: 12px; }
.svc-title { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.82); margin-bottom: 10px; display: block; }
.svc-desc { font-size: 12px; color: rgba(255,255,255,0.42); line-height: 1.82; }

/* === Contact Form === */
.contact-layout { display: grid; grid-template-columns: 1fr 1.35fr; gap: 72px; }
.contact-detail-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.cd-icon { width: 36px; height: 36px; border: 1px solid rgba(201,169,110,0.35); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 13px; flex-shrink: 0; }
.cd-body strong { display: block; font-size: 8.5px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 4px; }
.cd-body a, .cd-body span { font-size: 12.5px; color: rgba(255,255,255,0.68); text-decoration: none; transition: color 0.2s; }
.cd-body a:hover { color: var(--gold); }
.form-wrap { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.07); padding: 36px; }
.form-tabs { display: flex; border-bottom: 1px solid rgba(255,255,255,0.09); margin-bottom: 28px; }
.f-tab { font-family: var(--font); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.38); background: none; border: none; padding: 9px 16px 9px 0; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all 0.2s; }
.f-tab.active { color: var(--white); border-bottom-color: var(--gold); }
.f-panel { display: none; }
.f-panel.active { display: block; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.f-group { margin-bottom: 12px; }
.f-group label { display: block; font-size: 8.5px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: 6px; }
.f-group input, .f-group textarea, .f-group select {
  width: 100%; padding: 11px 13px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); font-family: var(--font); font-size: 12px;
  outline: none; -webkit-appearance: none; border-radius: 0; transition: border-color 0.2s;
}
.f-group input:focus, .f-group textarea:focus, .f-group select:focus { border-color: rgba(201,169,110,0.55); }
.f-group select { background-color: #1a1a1a !important; color: #fff !important; }
.f-group select option { background-color: #1a1a1a !important; color: #fff !important; }
.f-group select optgroup { background-color: #1a1a1a !important; color: #fff !important; }
.f-group textarea { min-height: 96px; resize: vertical; }
.f-privacy { display: flex; align-items: flex-start; gap: 7px; margin-bottom: 13px; font-size: 11px; color: rgba(255,255,255,0.36); line-height: 1.5; }
.f-privacy a { color: var(--gold); }
.btn-submit { width: 100%; padding: 13px; background: var(--gold); color: var(--white); border: none; font-family: var(--font); font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.btn-submit:hover { background: var(--gold2); }

/* === Calendar === */
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; }
.cal-month { font-size: 12.5px; color: rgba(255,255,255,0.78); }
.cal-nav-btn { background: none; border: 1px solid rgba(255,255,255,0.13); color: rgba(255,255,255,0.55); width: 29px; height: 29px; cursor: pointer; font-size: 12px; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.cal-nav-btn:hover { border-color: var(--gold); color: var(--gold); }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 1px; }
.cal-weekday { text-align: center; font-size: 8.5px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.28); padding: 5px 0; }
.cal-day { text-align: center; font-size: 11.5px; cursor: pointer; border-radius: 50%; color: rgba(255,255,255,0.7); min-width: 30px; min-height: 30px; display: flex; align-items: center; justify-content: center; margin: 1px auto; background: none; border: none; font-family: var(--font); transition: all 0.16s; }
.cal-day:hover:not(.disabled):not(.empty) { background: var(--gold); color: var(--white); }
.cal-day.selected { background: var(--white); color: #111; }
.cal-day.today { border: 1px solid var(--gold); color: var(--gold); }
.cal-day.disabled { color: rgba(255,255,255,0.16); cursor: not-allowed; }
.time-slots-wrap { margin-top: 15px; display: none; }
.time-slots-label { font-size: 8.5px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 9px; display: block; }
.time-slots-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; }
.time-slot { padding: 7px 3px; text-align: center; font-size: 10.5px; border: 1px solid rgba(255,255,255,0.1); cursor: pointer; color: rgba(255,255,255,0.6); background: none; font-family: var(--font); transition: all 0.16s; }
.time-slot:hover:not(.booked) { border-color: var(--gold); color: var(--gold); }
.time-slot.selected { background: var(--gold); border-color: var(--gold); color: var(--white); }
.time-slot.booked { background: rgba(255,255,255,0.03); color: rgba(255,255,255,0.18); cursor: not-allowed; text-decoration: line-through; }
.appt-summary { margin-top: 12px; padding: 11px 14px; background: rgba(201,169,110,0.07); border-left: 2px solid var(--gold); font-size: 12px; color: rgba(255,255,255,0.68); display: none; }
.appt-summary.show { display: block; }
.form-success { display: none; margin-top: 13px; padding: 14px; background: rgba(201,169,110,0.09); border: 1px solid rgba(201,169,110,0.28); font-size: 12px; color: rgba(255,255,255,0.72); line-height: 1.6; }
.form-success.show { display: block; }

/* === Stats === */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-bottom: 72px; }
.stat-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); padding: 32px 24px; text-align: center; }
.stat-number { font-family: var(--serif); font-size: 3rem; color: var(--gold); display: block; line-height: 1; }
.stat-label { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-top: 7px; display: block; }

/* === Footer === */
.site-footer { background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 0 30px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 54px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .logo-brand-name { color: rgba(255,255,255,0.85); }
.footer-brand .logo-brand-sub { color: rgba(255,255,255,0.35); }
.footer-tagline { font-family: var(--serif); font-style: italic; color: rgba(255,255,255,0.35); font-size: 0.9rem; margin-top: 12px; line-height: 1.5; }
.footer-col-title { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 16px; display: block; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 12.5px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 10px; color: rgba(255,255,255,0.28); letter-spacing: 0.05em; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 10px; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }
.social-links { display: flex; gap: 8px; margin-top: 16px; }
.social-link { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.42); font-size: 11px; text-decoration: none; transition: all 0.2s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* === News Panel === */
.news-panel { position: fixed; top: 0; right: 0; width: 370px; height: 100%; z-index: 800; background: rgba(11,11,11,0.97); transform: translateX(100%); transition: transform 0.55s; overflow-y: auto; padding: 90px 34px 40px; }
.news-panel.open { transform: translateX(0); }
.news-panel-close { position: absolute; top: 25px; right: 26px; background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.45); font-size: 19px; transition: color 0.2s; }
.news-panel-close:hover { color: var(--white); }
.news-panel-title { font-size: 9px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 28px; display: block; }
.news-item { border-bottom: 1px solid rgba(255,255,255,0.07); padding: 18px 0; cursor: pointer; transition: padding-left 0.2s; }
.news-item:hover { padding-left: 5px; }
.news-date { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.3); display: block; margin-bottom: 6px; }
.news-title { font-size: 12.5px; color: rgba(255,255,255,0.75); line-height: 1.55; }
.news-item:hover .news-title { color: var(--white); }

/* === Cookie === */
.cookie-notice { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(14,14,14,0.97); color: rgba(255,255,255,0.7); padding: 16px 48px; z-index: 9998; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; transform: translateY(100%); transition: transform 0.4s; }
.cookie-notice.show { transform: translateY(0); }
.cookie-notice p { font-size: 11px; line-height: 1.6; flex: 1; }
.cookie-notice a { color: var(--gold); }
.cookie-btns { display: flex; gap: 10px; }
.cookie-btn { padding: 7px 18px; font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; font-family: var(--font); border-radius: 0; }
.cookie-accept { background: var(--gold); color: var(--white); border: 1px solid var(--gold); }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2); }

/* === Responsive === */
@media (max-width: 1100px) {
  .proj-grid { grid-template-columns: repeat(2,1fr); }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
/* === Marquee / Kayan Yazi === */
.marquee-bar {
  background: var(--gold); overflow: hidden; white-space: nowrap;
  padding: 10px 0; position: relative;
}
.marquee-track {
  display: inline-block; animation: marquee 28s linear infinite;
}
.marquee-text {
  font-family: var(--font); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #111; font-weight: 500; display: inline-block; padding-right: 60px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === WhatsApp Widget === */
.whatsapp-widget {
  position: fixed; bottom: 32px; right: 96px; z-index: 9998;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-widget:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
.whatsapp-widget svg { width: 28px; height: 28px; color: #fff; }

/* === AI Chat Widget === */
.ai-chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 9999; font-family: var(--font); }
.ai-chat-toggle {
  width: 56px; height: 56px; border-radius: 50%; background: var(--gold); border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(201,169,110,0.35); transition: transform 0.2s, box-shadow 0.2s;
}
.ai-chat-toggle:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(201,169,110,0.5); }
.ai-chat-toggle svg { width: 24px; height: 24px; color: #fff; }
.ai-chat-box {
  position: absolute; bottom: 70px; right: 0; width: 380px; max-height: 540px;
  background: #1a1a1a; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px;
  display: none; flex-direction: column; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.ai-chat-box.open { display: flex; }
.ai-chat-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; background: #111; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ai-chat-header-left { display: flex; align-items: center; gap: 12px; }
.ai-chat-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: #fff; letter-spacing: 0.05em;
}
.ai-chat-header strong { font-size: 13px; color: #fff; display: block; }
.ai-chat-status { font-size: 10px; color: #4ade80; }
.ai-chat-close { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 22px; cursor: pointer; padding: 0 4px; }
.ai-chat-close:hover { color: #fff; }
.ai-chat-messages { flex: 1; overflow-y: auto; padding: 16px; max-height: 300px; min-height: 200px; }
.ai-msg { display: flex; margin-bottom: 12px; }
.ai-msg.user { justify-content: flex-end; }
.ai-msg-bubble {
  max-width: 85%; padding: 12px 16px; border-radius: 14px;
  font-size: 13px; line-height: 1.6; word-break: break-word;
}
.ai-msg.bot .ai-msg-bubble { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); border-bottom-left-radius: 4px; }
.ai-msg.user .ai-msg-bubble { background: var(--gold); color: #fff; border-bottom-right-radius: 4px; }
.ai-msg-bubble a { color: var(--gold); text-decoration: underline; }
.ai-msg.user .ai-msg-bubble a { color: #fff; }
.ai-chat-quick { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 16px 12px; }
.ai-quick-btn {
  padding: 6px 14px; border-radius: 20px; border: 1px solid rgba(201,169,110,0.4);
  background: none; color: var(--gold); font-size: 11px; cursor: pointer;
  font-family: var(--font); letter-spacing: 0.04em; transition: all 0.2s;
}
.ai-quick-btn:hover { background: var(--gold); color: #fff; }
.ai-chat-input-wrap {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-top: 1px solid rgba(255,255,255,0.08); background: #111;
}
.ai-chat-input {
  flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; padding: 10px 16px; color: #fff; font-size: 13px;
  font-family: var(--font); outline: none;
}
.ai-chat-input:focus { border-color: rgba(201,169,110,0.5); }
.ai-chat-input::placeholder { color: rgba(255,255,255,0.3); }
.ai-chat-send {
  width: 38px; height: 38px; border-radius: 50%; background: var(--gold); border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ai-chat-send svg { width: 16px; height: 16px; color: #fff; }
.typing-indicator .ai-msg-bubble { display: flex; align-items: center; gap: 4px; padding: 14px 20px; }
.typing-indicator .dot {
  width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.4);
  animation: typingDot 1.2s infinite;
}
.typing-indicator .dot:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%,60%,100%{opacity:.3;transform:translateY(0)} 30%{opacity:1;transform:translateY(-4px)} }

/* Footer bottom updated */
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; margin-top: 48px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.4); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }
.footer-social-right { display: flex; align-items: center; gap: 16px; }
.footer-icon-link {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 16px; text-decoration: none; transition: all 0.2s;
}
.footer-icon-link:hover { border-color: var(--gold); color: var(--gold); }

/* Legal content */
.legal-content h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; color: #fff; margin: 40px 0 16px; }
.legal-content h3 { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.75); margin: 24px 0 10px; text-transform: uppercase; letter-spacing: 0.08em; }
.legal-content p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.9; margin-bottom: 14px; }
.legal-content a { color: var(--gold); }

@media (max-width: 900px) {
  .main-nav, .lang-wrap, .search-btn { display: none !important; }
  .menu-toggle { display: flex !important; }
  .site-header { padding: 0 24px; }
  .page-hero-content { left: 24px; bottom: 28px; }
  .page-body { padding: 40px 24px 80px; }
  .f-row { grid-template-columns: 1fr; }
  .time-slots-grid { grid-template-columns: repeat(3,1fr); }
  .news-panel { width: 100%; }
  .ai-chat-box { width: 320px; bottom: 64px; right: -12px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 640px) {
  .proj-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .logo-brand-name { font-size: 10px; }
  .logo-brand-sub { font-size: 7px; }
  .ai-chat-box { width: calc(100vw - 48px); right: -12px; }
}
