/* ============================================================#046381
   Özgüntaç İnşaat — Main Stylesheet
   ============================================================ */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  /* Brand palette */
  --venice-blue:   #086583;
  --curious-blue:  #26a4cc;
  --picton-blue:   #31c1ed;
  --jagged-ice:    #ceeaee;

  /* Semantic aliases */
  --teal:          #086583;
  --teal-mid:      #26a4cc;
  --teal-light:    #31c1ed;
  --teal-pale:     #e4f4f8;

  --text-main:     #052030;
  --text-body:     #1e4d61;
  --text-muted:    #5e90a2;
  --bg-primary:    #ffffff;
  --bg-secondary:  #eef7fa;
  --bg-card:       #ffffff;
  --border:        #ceeaee;
  --shadow:        0 4px 24px rgba(8,101,131,0.10);
  --shadow-lg:     0 12px 40px rgba(8,101,131,0.18);
  --radius:        16px;
  --radius-sm:     10px;
  --nav-bg:        #046381;
  --footer-bg:     #041820;
  --footer-text:   #7ec8da;
}

[data-theme="dark"] {
  --teal-pale:     #071e28;
  --text-main:     #ceeaee;
  --text-body:     #7ab8cc;
  --text-muted:    #3d7a8e;
  --bg-primary:    #040f16;
  --bg-secondary:  #071520;
  --bg-card:       #091c28;
  --border:        #0d3245;
  --shadow:        0 4px 24px rgba(0,0,0,0.35);
  --shadow-lg:     0 12px 40px rgba(0,0,0,0.48);
  --nav-bg:        #046381;
  --footer-bg:     #02080d;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-body);
  background: var(--bg-primary);
  transition: background 0.3s, color 0.3s;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Network Canvas ───────────────────────────────────────── */
#network-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
[data-theme="dark"] #network-canvas { opacity: 0.7; }

.page-wrapper { position: relative; z-index: 1; }

/* ── Futuristic keyframes ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 18px rgba(49,193,237,0.25); }
  50%       { box-shadow: 0 0 36px rgba(49,193,237,0.55), 0 0 60px rgba(8,101,131,0.20); }
}

@keyframes borderScan {
  0%   { background-position: 0% 50%;   }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%;   }
}

@keyframes scanline {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-10px); }
}

@keyframes gridFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Futuristic grid background overlay ──────────────────── */
.grid-bg {
  position: relative;
}
.grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(49,193,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49,193,237,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 3;
  animation: gridFade 1.2s ease forwards;
}
.grid-bg > * { position: relative; z-index: 4; }

/* ── Scanline effect (hero only) ──────────────────────────── */
.scanline-wrap { position: relative; overflow: hidden; }
.scanline-wrap::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(49,193,237,0.18), transparent);
  animation: scanline 8s linear infinite;
  pointer-events: none;
  z-index: 4;
}

/* ── Glow card variant ────────────────────────────────────── */
.glow-card {
  position: relative;
  transition: all 0.35s;
}
.glow-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  background: linear-gradient(135deg, var(--picton-blue), var(--venice-blue), var(--curious-blue));
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity 0.35s;
  z-index: -1;
  animation: borderScan 4s ease infinite;
}
.glow-card:hover::before { opacity: 1; }
.glow-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(49,193,237,0.20); }

/* ── Floating logo animation ──────────────────────────────── */
.float-anim { animation: floatY 4s ease-in-out infinite; }

/* ── Cyber divider line ───────────────────────────────────── */
.divider-line {
  position: relative;
  overflow: visible;
}
.divider-line::after {
  content: '';
  position: absolute;
  right: -8px; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--picton-blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--picton-blue);
}

/* ── Neon text glow ───────────────────────────────────────── */
.neon-text {
  text-shadow: 0 0 20px rgba(49,193,237,0.5), 0 0 40px rgba(49,193,237,0.2);
}

/* ── Stat counter glow ────────────────────────────────────── */
.stat-value {
  text-shadow: 0 0 24px rgba(255,255,255,0.3);
}

/* ── Corner accents on cards ──────────────────────────────── */
.corner-accent {
  position: relative;
}
.corner-accent::before,
.corner-accent::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--picton-blue);
  border-style: solid;
  opacity: 0.6;
  transition: opacity 0.3s, width 0.3s, height 0.3s;
}
.corner-accent::before {
  top: 0; left: 0;
  border-width: 2px 0 0 2px;
  border-radius: 4px 0 0 0;
}
.corner-accent::after {
  bottom: 0; right: 0;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 4px 0;
}
.corner-accent:hover::before,
.corner-accent:hover::after {
  opacity: 1;
  width: 22px; height: 22px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

/* ── Typography ───────────────────────────────────────────── */
.section-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--teal-light);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.divider-line {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 2px;
  margin: 1.2rem 0;
}

.divider-center { margin: 1.2rem auto; }

.section-subtitle {
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--venice-blue), var(--curious-blue));
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.45s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(49,193,237,0.45), 0 0 0 1px rgba(49,193,237,0.25);
  color: white;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid var(--venice-blue);
  color: var(--venice-blue);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.72rem 2rem;
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
  z-index: 0;
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--venice-blue), var(--curious-blue));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}
.btn-outline:hover { color: white; border-color: transparent; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(49,193,237,0.35); }
.btn-outline:hover::before { opacity: 1; }

.btn-icon {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.45rem 0.6rem;
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-icon:hover { background: rgba(49,193,237,0.1); border-color: var(--picton-blue); color: var(--picton-blue); box-shadow: 0 0 10px rgba(49,193,237,0.2); }

/* btn-icon inside navbar white tint */
.navbar .btn-icon { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.85); }
.navbar .btn-icon:hover { background: rgba(255,255,255,0.15); border-color: white; color: white; box-shadow: none; }

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
  height: 70px;
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(49,193,237,0.10);
  border-bottom-color: rgba(49,193,237,0.25);
}
/* Logo glow on hover */
.nav-logo img {
  height: 44px; width: auto;
  transition: filter 0.3s;
  filter: drop-shadow(0 0 0px rgba(49,193,237,0));
}
.nav-logo:hover img {
  filter: drop-shadow(0 0 10px rgba(49,193,237,0.5));
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo img { height: 44px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  color: rgba(255,255,255,0.85);
  transition: all 0.25s;
  position: relative;
  letter-spacing: 0.3px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--jagged-ice), var(--picton-blue));
  transition: left 0.3s, right 0.3s;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(206,234,238,0.7);
}
.nav-link:hover::after, .nav-link.active::after { left: 0.6rem; right: 0.6rem; }
.nav-link:hover, .nav-link.active { color: white; background: rgba(255,255,255,0.12); }

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }

.nav-hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0.55rem;
  font-size: 1.3rem;
  color: var(--text-body);
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(8,101,131,0.98);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid rgba(49,193,237,0.25);
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; text-align: left; padding: 0.6rem 1rem; }
  .nav-hamburger { display: inline-flex; }
}

/* ── Page Wrapper ─────────────────────────────────────────── */
.page-wrapper { padding-top: 70px; }

/* ── Slider / Hero ────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slider-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.slider-bg .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slider-bg .slide.active { opacity: 1; }
.slider-bg .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4,22,40,0.80) 0%, rgba(8,101,131,0.50) 60%, rgba(0,0,0,0.25) 100%);
  z-index: 2;
}

.hero-placeholder-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 50%, #0f5e5e 100%);
}

.hero-content {
  position: relative;
  z-index: 5;
  color: white;
  padding: 5rem 0 4rem;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 6;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.slider-dot.active { background: white; width: 24px; border-radius: 4px; }

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 6;
  background: rgba(8,101,131,0.35);
  border: 1px solid rgba(49,193,237,0.4);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.slider-arrow:hover { background: rgba(49,193,237,0.45); box-shadow: 0 0 16px rgba(49,193,237,0.4); }
.slider-arrow.prev { left: 1.5rem; }
.slider-arrow.next { right: 1.5rem; }

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--venice-blue) 0%, var(--curious-blue) 60%, var(--picton-blue) 100%);
  background-size: 200% 200%;
  animation: borderScan 8s ease infinite;
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 48px,
    rgba(255,255,255,0.04) 48px,
    rgba(255,255,255,0.04) 49px
  );
  pointer-events: none;
}
.stat-item { text-align: center; padding: 0.5rem; }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.stat-label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.75); margin-top: 0.35rem; }

/* ── Section Padding ──────────────────────────────────────── */
.section-pad { padding: 6rem 0; }

/* ── Service Cards ────────────────────────────────────────── */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: all 0.35s;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--venice-blue), var(--picton-blue), var(--curious-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(49,193,237,0.15); border-color: rgba(49,193,237,0.35); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(49,193,237,0.10);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--picton-blue);
  margin-bottom: 1.25rem;
  transition: all 0.3s;
  border: 1px solid rgba(49,193,237,0.2);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--venice-blue), var(--curious-blue));
  color: white;
  box-shadow: 0 0 20px rgba(49,193,237,0.35);
  border-color: transparent;
}
.service-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}
.service-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ── Project Cards ────────────────────────────────────────── */
.project-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.35s;
  cursor: pointer;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(49,193,237,0.18), 0 0 0 1px rgba(49,193,237,0.25);
}
.project-img {
  height: 220px;
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.project-card:hover .project-img img { transform: scale(1.05); }
.project-img-placeholder { color: var(--teal); font-size: 3rem; opacity: 0.35; }
.project-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(15,54,53,0.7));
  opacity: 0;
  transition: opacity 0.3s;
}
.project-card:hover .project-img-overlay { opacity: 1; }
.project-body { padding: 1.4rem; }
.project-category {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal-light);
  margin-bottom: 0.4rem;
}
.project-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}
.project-meta {
  display: flex; gap: 1rem;
  font-size: 0.8rem; color: var(--text-muted);
}
.project-meta i { color: var(--teal); }

/* ── Project Detail Modal ─────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.75);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.15);
  border: none; border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem; color: white; z-index: 10;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.3); }
.modal-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.75rem; }
.modal-gallery-img {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.modal-gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.modal-gallery-img:hover img { transform: scale(1.05); }

/* ── Supplier Cards ───────────────────────────────────────── */
.supplier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}
.supplier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.supplier-logo {
  height: 80px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.supplier-logo img { max-height: 70px; max-width: 160px; object-fit: contain; filter: grayscale(0.3); transition: filter 0.3s; }
.supplier-card:hover .supplier-logo img { filter: grayscale(0); }
.supplier-logo-placeholder { font-size: 2.5rem; color: var(--teal); opacity: 0.5; }
.supplier-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.05rem; color: var(--text-main); margin-bottom: 0.5rem; }
.supplier-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ── About Page ───────────────────────────────────────────── */
.about-feature-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
}
.about-feature-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--teal-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 1.25rem;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  border-radius: 10px; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: var(--text-main);
  transition: border-color 0.2s;
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--teal);
}
.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal), #0f5e5e);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.15) 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 1; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { height: 48px; width: auto; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }
.footer-about { font-size: 0.86rem; color: var(--footer-text); line-height: 1.8; max-width: 320px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-col-title { font-family: 'Playfair Display', serif; font-weight: 700; color: white; margin-bottom: 1rem; font-size: 0.95rem; }
.footer-col a, .footer-col span {
  display: block;
  font-size: 0.84rem;
  color: var(--footer-text);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom {
  padding: 1.25rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ── Fade-up animation ────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s, transform 0.6s; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Rows & Grid helpers ──────────────────────────────────── */
.row { display: flex; flex-wrap: wrap; margin: 0 -0.75rem; }
.col-12 { flex: 0 0 100%; padding: 0 0.75rem; }
.col-md-6 { padding: 0 0.75rem; }
.col-md-4 { padding: 0 0.75rem; }
.col-lg-4 { padding: 0 0.75rem; }
.col-lg-6 { padding: 0 0.75rem; }
.col-lg-8 { padding: 0 0.75rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.g-5 { gap: 2rem; }
.w-100 { width: 100%; }
.mt-4 { margin-top: 1.5rem; }

@media (min-width: 768px) {
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; }
}
@media (min-width: 992px) {
  .col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-8 { flex: 0 0 66.666%; max-width: 66.666%; }
}

/* ============================================================
   ADMIN PANEL STYLES
   ============================================================ */
.admin-layout { display: flex; min-height: 100vh; padding-top: 0; }

.admin-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  overflow-y: auto;
  z-index: 100;
  transition: transform 0.3s;
}
.admin-sidebar-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.admin-sidebar-header img { height: 36px; }

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-body);
  background: none;
  border: none;
  border-left: 3px solid transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
}
.admin-nav-item:hover, .admin-nav-item.active {
  color: var(--teal);
  background: var(--teal-pale);
  border-left-color: var(--teal);
}
.admin-section-label {
  padding: 0.5rem 1.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.admin-main {
  margin-left: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.admin-topbar {
  height: 64px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  position: sticky; top: 0; z-index: 50;
}

.admin-content { padding: 2rem; flex: 1; }

.admin-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.admin-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-field { margin-bottom: 1rem; }
.admin-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.admin-field input, .admin-field textarea, .admin-field select {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s;
}
.admin-field input:focus, .admin-field textarea:focus { border-color: var(--teal); }
.admin-field textarea { resize: vertical; min-height: 80px; }

.admin-alert {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.admin-alert.success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.admin-alert.error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
[data-theme="dark"] .admin-alert.success { background: #064e3b; color: #6ee7b7; border-color: #065f46; }
[data-theme="dark"] .admin-alert.error   { background: #450a0a; color: #fca5a5; border-color: #991b1b; }

/* Image upload grid */
.upload-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.75rem; }
.upload-thumb {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
}
.upload-thumb img { width: 100%; height: 100%; object-fit: cover; }
.upload-thumb-delete {
  position: absolute; top: 4px; right: 4px;
  background: rgba(220,38,38,0.85);
  color: white; border: none; border-radius: 6px;
  padding: 0.15rem 0.35rem;
  cursor: pointer; font-size: 0.75rem;
  opacity: 0; transition: opacity 0.2s;
}
.upload-thumb:hover .upload-thumb-delete { opacity: 1; }
.upload-add {
  aspect-ratio: 4/3;
  border-radius: 10px;
  border: 2px dashed var(--border);
  background: var(--bg-secondary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: all 0.2s;
}
.upload-add:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-pale); }
.upload-add i { font-size: 1.8rem; }

/* Stat badge */
.stat-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
}

/* Dashboard stats */
.dash-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.dash-stat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.dash-stat-value { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: var(--text-main); line-height: 1; }
.dash-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

/* Mobile admin */
@media (max-width: 768px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .admin-content { padding: 1rem; }
}

/* Login */
.login-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--teal) 0%, #0f5e5e 100%);
  padding: 2rem;
}
.login-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2.5rem;
  width: 100%; max-width: 420px;
  box-shadow: var(--shadow-lg);
}
.login-logo { text-align: center; margin-bottom: 1.5rem; }
.login-logo img { height: 56px; margin: 0 auto; }
.login-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; color: var(--text-main); text-align: center; margin-bottom: 0.25rem; }
.login-subtitle { font-size: 0.85rem; color: var(--text-muted); text-align: center; margin-bottom: 2rem; }