/* ============================================================
   Av. Hatip Kaya Hukuk Bürosu — Premium Styles
   ============================================================ */
:root {
  --navy: #0B1D36;
  --charcoal: #132A45;
  --gold: #C9A227;
  --gold-light: #E0C46A;
  --cream: #F5F1E8;
  --white: #FFFFFF;
  --muted: #5C6B7A;
  --muted-light: #8A97A5;
  --border: rgba(11, 29, 54, 0.08);
  --shadow: 0 8px 32px rgba(11, 29, 54, 0.08);
  --shadow-lg: 0 20px 60px rgba(11, 29, 54, 0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --header-h: 88px;
  --header-h-scrolled: 68px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

*, *::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(--navy);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  animation: pageFadeIn 0.55s ease forwards;
}

@keyframes pageFadeIn {
  to { opacity: 1; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition), opacity var(--transition); }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.lead { font-size: 1.125rem; color: var(--muted); max-width: 640px; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: rgba(11, 29, 54, 0.25);
}
.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.85rem; }

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(11, 29, 54, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: height var(--transition), background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  height: var(--header-h-scrolled);
  background: rgba(11, 29, 54, 0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.15;
  transition: font-size var(--transition);
}
.site-header.scrolled .logo-name { font-size: 1.15rem; }
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}
.nav-desktop a {
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  position: relative;
  transition: color var(--transition);
}
.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--gold);
}
.nav-desktop a.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.social-links {
  display: none;
  align-items: center;
  gap: 0.4rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all var(--transition);
}
.social-links a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
}
.social-links svg { width: 16px; height: 16px; fill: currentColor; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}
.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.site-header.scrolled ~ .nav-mobile,
.site-header.scrolled + .nav-mobile { top: var(--header-h-scrolled); }
.nav-mobile a {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile a:hover,
.nav-mobile a.active { color: var(--gold); background: rgba(201,162,39,0.08); }
.nav-mobile .mobile-social {
  display: flex;
  gap: 0.75rem;
  padding: 1.25rem 1rem 0.5rem;
}
.nav-mobile .mobile-social a {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.nav-mobile .mobile-social svg { width: 18px; height: 18px; fill: currentColor; }

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .social-links { display: flex; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none !important; }
  .header-cta { display: inline-flex !important; }
}
.header-cta { display: none; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(11,29,54,0.94) 0%, rgba(19,42,69,0.88) 55%, rgba(11,29,54,0.92) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(201,162,39,0.12) 0%, transparent 55%);
  background-color: var(--navy);
  color: var(--white);
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 80%, rgba(201,162,39,0.06) 0%, transparent 40%),
    linear-gradient(180deg, transparent 60%, rgba(11,29,54,0.5) 100%);
  pointer-events: none;
}
.hero-ornament {
  position: absolute;
  right: -5%;
  top: 20%;
  width: 45%;
  height: 60%;
  border: 1px solid rgba(201,162,39,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.hero-ornament::after {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(201,162,39,0.08);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--gold); }
.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
  max-width: 520px;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.hero-stat span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

/* ---- Sections ---- */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}
.section-cream { background: var(--cream); }
.section-navy {
  background: var(--navy);
  color: var(--white);
}
.section-navy h2,
.section-navy h3 { color: var(--white); }
.section-header {
  margin-bottom: 3rem;
  max-width: 560px;
}
.section-header.center {
  text-align: center;
  margin-inline: auto;
  max-width: 640px;
}
.section-header p { color: var(--muted); margin-top: 0.85rem; }
.section-navy .section-header p { color: rgba(255,255,255,0.6); }

/* ---- Cards ---- */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 162, 39, 0.25);
}
.card:hover::before { height: 100%; }
.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 10px;
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 1.15rem;
}
.card h3 { margin-bottom: 0.65rem; }
.card .practice-subtitle {
  display: block;
  margin: -0.3rem 0 0.7rem;
  color: var(--muted-light);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.card p { color: var(--muted); font-size: 0.95rem; }
.practice-bullets {
  display: grid;
  gap: 0.25rem;
  margin-top: 0.85rem;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}
.practice-bullets li {
  position: relative;
  padding-left: 0.9rem;
}
.practice-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.15rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
}
.card-link:hover { gap: 0.65rem; }

/* Practice card on navy */
.card-dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.card-dark h3 { color: var(--white); }
.card-dark p { color: rgba(255,255,255,0.55); }
.card-dark .practice-subtitle,
.card-dark .practice-bullets { color: rgba(255,255,255,0.55); }
.card-dark:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201, 162, 39, 0.3);
}

/* ---- About teaser ---- */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 800px) {
  .about-grid { grid-template-columns: 1fr 1.1fr; gap: 4rem; }
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 480px;
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
}
.about-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(11, 29, 54, 0.08) 58%, rgba(11, 29, 54, 0.88) 100%);
  pointer-events: none;
}
.about-visual::before {
  content: "";
  position: absolute;
  inset: 1.25rem;
  z-index: 3;
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}
.about-visual-inner {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  z-index: 2;
  color: var(--white);
}
.about-visual-inner .name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
}
.about-visual-inner .role {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.about-content .lead { margin: 1rem 0 1.5rem; }
.about-content .bio { color: var(--muted); margin-bottom: 2rem; }
.about-highlights {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
.about-highlight {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.about-highlight .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(201,162,39,0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 2px;
}
.about-highlight span { font-size: 0.95rem; color: var(--charcoal); }

/* ---- Articles ---- */
.article-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,162,39,0.2);
}
.article-cover {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: var(--navy);
}
.article-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.article-date {
  font-size: 0.8rem;
  color: var(--muted-light);
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
}
.article-body h3 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}
.article-body h3 a:hover { color: var(--gold); }
.article-body p {
  color: var(--muted);
  font-size: 0.925rem;
  flex: 1;
  margin-bottom: 1rem;
}
.article-read {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.article-read:hover { gap: 0.55rem; }

/* Article detail */
.article-hero {
  background: var(--navy);
  color: var(--white);
  padding: calc(var(--header-h) + 3.5rem) 0 3.5rem;
  text-align: center;
}
.article-hero .article-date { color: var(--gold); margin-bottom: 1rem; }
.article-hero h1 { color: var(--white); max-width: 800px; margin-inline: auto; }
.article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 0 5rem;
}
.article-content p {
  margin-bottom: 1.35rem;
  color: var(--charcoal);
  font-size: 1.05rem;
  line-height: 1.85;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.article-back:hover { gap: 0.6rem; }

/* ---- Contact strip ---- */
.contact-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
  color: var(--white);
  padding: 3.5rem 0;
}
.contact-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.contact-strip h2 { color: var(--white); margin-bottom: 0.5rem; }
.contact-strip p { color: rgba(255,255,255,0.6); }
.contact-strip-ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* ---- Contact page ---- */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 800px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 3.5rem; }
}
.contact-info-list { display: grid; gap: 1.5rem; margin-top: 2rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,162,39,0.12);
  border-radius: 10px;
  color: var(--gold);
  font-size: 1.2rem;
}
.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.contact-info-item a,
.contact-info-item span {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 500;
}
.contact-info-item a:hover { color: var(--gold); }

.contact-form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(11,29,54,0.15);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.95rem;
  color: var(--navy);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.map-placeholder {
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--cream);
  aspect-ratio: 21/9;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted);
}
.map-placeholder a.btn { margin-top: 0.5rem; }

/* ---- Page hero (inner pages) ---- */
.page-hero {
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
  color: var(--white);
  padding: calc(var(--header-h) + 3.5rem) 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(201,162,39,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .section-label { margin-bottom: 0.85rem; }
.page-hero h1 { color: var(--white); margin-bottom: 0.85rem; }
.page-hero p {
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin-inline: auto;
  font-size: 1.05rem;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand .logo-name { font-size: 1.4rem; margin-bottom: 0.25rem; display: block; }
.footer-brand .logo-sub { margin-bottom: 1.15rem; display: block; }
.footer-brand p { font-size: 0.925rem; line-height: 1.7; margin-bottom: 1.5rem; max-width: 300px; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,162,39,0.1);
}
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: grid; gap: 0.65rem; }
.footer-col a {
  font-size: 0.925rem;
  color: rgba(255,255,255,0.65);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ---- Floating WhatsApp ---- */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1100;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
  animation: waPulse 2.5s ease infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0.15); }
}

/* ---- Fade-in on scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Admin ---- */
.admin-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 2.5rem) 1.5rem 4rem;
}
.admin-login {
  max-width: 400px;
  margin: 4rem auto;
  background: var(--cream);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}
.admin-login h1 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.admin-login p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.75rem; }
.admin-login .warn {
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  text-align: left;
}
.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  align-items: center;
  justify-content: space-between;
}
.admin-toolbar h1 { font-size: 1.75rem; }
.admin-list { display: grid; gap: 1rem; }
.admin-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.admin-item h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.admin-item .meta { font-size: 0.8rem; color: var(--muted); }
.admin-item-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.admin-form-panel {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}
.admin-form-panel h2 { font-size: 1.4rem; margin-bottom: 1.5rem; }
.admin-hidden { display: none !important; }
.btn-danger {
  background: #c0392b;
  color: #fff;
  border-color: #c0392b;
}
.btn-danger:hover { background: #a93226; transform: translateY(-2px); }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.divider-gold {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem 0;
}
.divider-gold.center { margin-inline: auto; }

/* Page content top offset helper */
.page-offset { padding-top: var(--header-h); }
