/* ═══════════════════════════════════════════════════════
   RENLIFE MOBILYA — Ana Stil Dosyası
   Marka: Sarı (#FFD700) / Siyah (#1A1A1A)
═══════════════════════════════════════════════════════ */

:root {
  --yellow: #F5C800;
  --yellow-dark: #D4A800;
  --yellow-light: #FFF3B0;
  --black: #1A1A1A;
  --dark: #2D2D2D;
  --gray: #6B6B6B;
  --gray-light: #F4F4F4;
  --white: #FFFFFF;
  --border: #E5E5E5;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
  --font-display: 'Georgia', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1200px;
  --transition: 0.25s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-yellow:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); transform: translateY(-1px); }

.btn-black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-black:hover { background: var(--dark); transform: translateY(-1px); }

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

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

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
  transition: box-shadow var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -0.3px;
  line-height: 1.1;
}
.logo-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--yellow);
  background: rgba(245,200,0,0.1);
}

.nav-cta { display: flex; gap: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── MOBILE NAV ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}
.mobile-nav a {
  color: white;
  font-size: 22px;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav a:hover { color: var(--yellow); }
.mobile-nav-ctas {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── ALERTS ── */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-weight: 500;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.bg-yellow-light { background: var(--yellow-light); }
.bg-gray { background: var(--gray-light); }
.bg-black { background: var(--black); }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow-dark);
  background: rgba(245,200,0,0.12);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto 40px;
}

/* ── FADE-UP ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--black);
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,200,0,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { max-width: 640px; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,200,0,0.15);
  border: 1px solid rgba(245,200,0,0.3);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.hero-title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title span { color: var(--yellow); }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
}
.hero-stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
/* Hero deco */
.hero-deco {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.06;
  pointer-events: none;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.service-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.service-card-icon {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}
.service-card-img { height: 180px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 22px; }
.service-card-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}
.service-card-desc { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 18px; }
.service-card-footer { display: flex; gap: 10px; align-items: center; justify-content: space-between; }
.service-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
  transition: color var(--transition);
}
.service-card-link:hover { color: var(--yellow-dark); }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.why-item {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.why-item:hover { border-color: var(--yellow); transform: translateY(-3px); box-shadow: var(--shadow); }
.why-icon {
  font-size: 36px;
  width: 68px;
  height: 68px;
  background: var(--yellow-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.why-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.why-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--yellow);
  padding: 56px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}
.cta-strip-desc { font-size: 16px; color: rgba(0,0,0,0.65); }
.cta-strip-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── BLOG GRID ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.blog-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { border-color: var(--yellow); box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.blog-card-img { height: 180px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 22px; }
.blog-card-date { font-size: 12px; color: var(--gray); margin-bottom: 8px; }
.blog-card-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.blog-card-excerpt { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.blog-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}
.contact-info-card {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  color: white;
}
.contact-info-title { font-size: 22px; font-weight: 800; color: var(--yellow); margin-bottom: 8px; }
.contact-info-sub { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 30px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(245,200,0,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.8px; color: rgba(255,255,255,0.4); margin-bottom: 3px; }
.contact-info-val { font-size: 15px; font-weight: 600; color: white; }
.contact-info-val a { color: white; }
.contact-info-val a:hover { color: var(--yellow); }

.contact-form-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}
.contact-form-title { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.contact-form-sub { font-size: 14px; color: var(--gray); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--yellow); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ── SERVICE DETAIL ── */
.service-detail-header {
  background: var(--black);
  padding: 56px 0 40px;
  color: white;
}
.service-detail-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.service-detail-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: white; margin-bottom: 14px; }
.service-detail-desc { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 600px; }
.service-detail-body { padding: 60px 0; }
.service-detail-content { max-width: 760px; }
.service-detail-content h3 { font-size: 20px; font-weight: 700; margin: 28px 0 12px; color: var(--black); }
.service-detail-content p { margin-bottom: 14px; color: var(--dark); line-height: 1.75; }
.service-detail-content ul { padding-left: 20px; margin-bottom: 14px; }
.service-detail-content li { margin-bottom: 6px; color: var(--dark); line-height: 1.6; }
.service-detail-content img { max-width: 100%; height: auto; display: block; margin: 18px 0; border-radius: 10px; }
.service-detail-sidebar {
  background: var(--yellow-light);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 90px;
}
.sidebar-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.sidebar-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  background: var(--yellow);
  padding: 10px 16px;
  border-radius: 8px;
  margin: 14px 0 20px;
  display: inline-block;
}
.detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }

/* ── BLOG DETAIL ── */
.blog-detail-body { max-width: 760px; margin: 0 auto; padding: 60px 0; }
.blog-detail-body h3 { font-size: 20px; font-weight: 700; margin: 28px 0 12px; }
.blog-detail-body p { margin-bottom: 14px; color: var(--dark); line-height: 1.8; }
.blog-detail-body ul { padding-left: 20px; margin-bottom: 14px; }
.blog-detail-body li { margin-bottom: 6px; line-height: 1.65; }
.blog-detail-body img { max-width: 100%; height: auto; display: block; margin: 18px 0; border-radius: 10px; }

/* ── SERVICES PAGE ── */
.services-hero {
  background: var(--black);
  padding: 60px 0 50px;
  color: white;
  text-align: center;
}
.services-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: white; margin-bottom: 14px; }
.services-hero p { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto; }

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.footer-logo-name { font-size: 16px; font-weight: 800; color: var(--white); }
.footer-about { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--yellow); margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--yellow); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 14px; }
.footer-contact-item a { color: inherit; }
.footer-contact-item a:hover { color: var(--yellow); }
.footer-bottom {
  padding: 22px 0;
  text-align: center;
}
.footer-bottom-text { font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.footer-social { display: flex; gap: 12px; justify-content: center; margin-top: 16px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--yellow); color: var(--black); }

/* ── FLOAT BUTTONS ── */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 90;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.28); }
.float-btn-whatsapp { background: #25D366; }
.float-btn-phone { background: var(--yellow); color: var(--black); }
.float-btn-label { font-size: 13px; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ── ADMIN ── */
.admin-wrap { min-height: 100vh; background: var(--gray-light); }
.admin-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100vh;
  background: var(--black);
  border-right: 3px solid var(--yellow);
  overflow-y: auto;
  z-index: 50;
}
.admin-logo {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-logo-name { font-size: 17px; font-weight: 800; color: var(--yellow); }
.admin-logo-sub { font-size: 11px; color: rgba(255,255,255,0.4); }
.admin-nav { padding: 16px 0; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
  text-decoration: none;
}
.admin-nav a:hover, .admin-nav a.active {
  color: var(--yellow);
  background: rgba(245,200,0,0.08);
}
.admin-content {
  margin-left: 240px;
  padding: 32px;
}
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.admin-title { font-size: 22px; font-weight: 800; }
.admin-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  overflow: hidden;
}
.admin-card-header {
  padding: 18px 24px;
  background: var(--gray-light);
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-card-title { font-weight: 700; font-size: 15px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  padding: 12px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--gray);
  background: var(--gray-light);
  border-bottom: 2px solid var(--border);
}
.admin-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.admin-table tr:hover td { background: rgba(245,200,0,0.04); }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.badge-yellow { background: var(--yellow-light); color: var(--black); }
.badge-green { background: #d4edda; color: #155724; }
.badge-red { background: #f8d7da; color: #721c24; }

.admin-form-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.admin-form-control {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  background: var(--white);
}
.admin-form-control:focus { outline: none; border-color: var(--yellow); }
textarea.admin-form-control { resize: vertical; min-height: 100px; }

.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
.admin-stat-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  text-align: center;
}
.admin-stat-num { font-size: 32px; font-weight: 900; color: var(--black); }
.admin-stat-label { font-size: 13px; color: var(--gray); margin-top: 4px; }

.admin-login-wrap {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-login-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  width: 380px;
  max-width: 95vw;
  border-top: 4px solid var(--yellow);
}
.admin-login-logo { text-align: center; margin-bottom: 28px; }
.admin-login-title { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.admin-login-sub { font-size: 14px; color: var(--gray); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .admin-sidebar { display: none; }
  .admin-content { margin-left: 0; padding: 20px; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
}
