/* ═══════════════════════════════════════════════════════════════
   Av. Derya Bozkurt — Hukuk Bürosu
   avderyabozkurt.com
   ═══════════════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --navy-900: #0a0f1a;
  --navy-800: #0d1b2a;
  --navy-700: #1b2d45;
  --navy-600: #243b55;
  --gold-500: #c8a04a;
  --gold-400: #d4b060;
  --gold-300: #e0c478;
  --text-dark: #1a1a1a;
  --text-body: #3d3d3d;
  --text-muted: #6b6b6b;
  --bg-warm: #faf9f6;
  --bg-section: #f4f2ed;
  --bg-white: #ffffff;
  --border-light: #e8e4dc;
  --border-subtle: #f0ece4;
  --shadow-sm: 0 1px 3px rgba(10, 15, 26, 0.06);
  --shadow-md: 0 4px 16px rgba(10, 15, 26, 0.08);
  --shadow-lg: 0 8px 32px rgba(10, 15, 26, 0.1);
  --shadow-xl: 0 16px 48px rgba(10, 15, 26, 0.12);
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.5s ease;
  --header-height: 80px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--bg-warm);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
}

.text-gold { color: var(--gold-500); }
.text-muted { color: var(--text-muted); }

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--alt {
  background-color: var(--bg-section);
}

.section--dark {
  background-color: var(--navy-800);
  color: #ffffff;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}

.section-desc {
  max-width: 580px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section--dark .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* ── Separator ── */
.separator {
  width: 48px;
  height: 2px;
  background: var(--gold-500);
  margin: 20px auto;
}

.separator--left {
  margin-left: 0;
}

/* ══════════════════════════════════════════
   HEADER / NAVIGATION
   ══════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background var(--transition-base), box-shadow var(--transition-base), height var(--transition-base);
}

.header--transparent {
  background: rgba(10, 15, 26, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header--transparent .logo__name,
.header--transparent .logo__title,
.header--transparent .nav__link {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border-light);
  height: 70px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.logo__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  transition: color var(--transition-base);
  line-height: 1.2;
}

.logo__title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-500);
  transition: color var(--transition-base);
}

.header--scrolled .logo__name {
  color: var(--navy-800);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-500);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
  color: var(--gold-400);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.header--scrolled .nav__link {
  color: var(--text-body);
}

.header--scrolled .nav__link:hover,
.header--scrolled .nav__link--active {
  color: var(--gold-500);
}

/* Nav CTA */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy-800);
  background: var(--gold-500);
  border-radius: 2px;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.nav__cta:hover {
  background: var(--gold-400);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all var(--transition-base);
}

.header--scrolled .hamburger span {
  background: var(--navy-800);
}

/* ══════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-800);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(10, 15, 26, 0.92) 0%, rgba(13, 27, 42, 0.85) 50%, rgba(27, 45, 69, 0.78) 100%);
  z-index: 1;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(200, 160, 74, 0.5) 40px,
      rgba(200, 160, 74, 0.5) 41px
    );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding-top: 40px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 28px;
}

.hero__label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-500);
}

.hero__title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 28px;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-400);
}

.hero__desc {
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 44px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Decorative vertical line */
.hero__deco {
  position: absolute;
  right: 120px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero__deco-line {
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--gold-500), transparent);
}

.hero__deco-text {
  writing-mode: vertical-rl;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: all var(--transition-base);
  position: relative;
}

.btn--primary {
  background: var(--gold-500);
  color: var(--navy-800);
}

.btn--primary:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 160, 74, 0.3);
}

.btn--outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
}

.btn--dark {
  background: var(--navy-800);
  color: #ffffff;
}

.btn--dark:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--gold-outline {
  background: transparent;
  color: var(--gold-500);
  border: 1px solid var(--gold-500);
}

.btn--gold-outline:hover {
  background: var(--gold-500);
  color: var(--navy-800);
}

.btn--sm {
  padding: 12px 28px;
  font-size: 0.75rem;
}

/* ══════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════ */
.stats-bar {
  background: var(--navy-900);
  padding: 48px 0;
  border-bottom: 1px solid rgba(200, 160, 74, 0.1);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* ══════════════════════════════════════════
   ABOUT PREVIEW (Homepage)
   ══════════════════════════════════════════ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-preview__image {
  position: relative;
}

.about-preview__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(15%);
}

.about-preview__frame {
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  border: 1px solid var(--gold-500);
  opacity: 0.3;
  z-index: -1;
}

.about-preview__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy-800);
  color: #fff;
  padding: 24px 28px;
  text-align: center;
}

.about-preview__badge-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
}

.about-preview__badge-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.about-preview__content {
  padding: 20px 0;
}

.about-preview__text {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 20px;
  color: var(--text-body);
}

.about-preview__list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-preview__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-body);
}

.about-preview__list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  margin-top: 8px;
}

/* ══════════════════════════════════════════
   PRACTICE AREAS / SERVICES
   ══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-white);
  padding: 44px 36px;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--gold-500);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  transition: color var(--transition-fast);
}

.service-card:hover h3 {
  color: var(--gold-500);
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ── Services page detailed cards ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail__content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.service-detail__content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-body);
}

.service-detail__content ul {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-detail__content ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text-body);
}

.service-detail__content ul li::before {
  content: '—';
  color: var(--gold-500);
  font-weight: 600;
  flex-shrink: 0;
}

.service-detail__visual {
  position: relative;
}

.service-detail__visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ══════════════════════════════════════════
   VALUES / WHY US
   ══════════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-item {
  text-align: center;
  padding: 40px 28px;
}

.value-item__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  color: var(--gold-500);
}

.value-item__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.value-item h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.value-item p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

/* ══════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════ */
.cta-section {
  text-align: center;
  padding: 100px 0;
  background: 
    linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(200, 160, 74, 0.06);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(200, 160, 74, 0.04);
}

.cta-section h2 {
  color: #ffffff;
  margin-bottom: 18px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 40px;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--navy-800);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(200, 160, 74, 0.5) 40px,
      rgba(200, 160, 74, 0.5) 41px
    );
}

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

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.08rem;
  max-width: 540px;
}

.page-hero .section-label {
  margin-bottom: 16px;
}

/* About content layout */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.about-layout__sidebar {
  position: sticky;
  top: 100px;
}

.about-layout__sidebar img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 32px;
}

.about-layout__info {
  background: var(--navy-800);
  padding: 32px;
  color: #fff;
}

.about-layout__info-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-layout__info-item:last-child {
  border-bottom: none;
}

.about-layout__info-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-500);
}

.about-layout__info-value {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.about-layout__main h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  margin-top: 48px;
}

.about-layout__main h3:first-child {
  margin-top: 0;
}

.about-layout__main p {
  font-size: 1rem;
  line-height: 1.9;
}

/* ══════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}

.contact-info {
  padding: 48px;
  background: var(--navy-800);
  color: #fff;
}

.contact-info h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.contact-info__items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
}

.contact-info__item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200, 160, 74, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
}

.contact-info__item-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.contact-info__item-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 4px;
}

.contact-info__item-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.contact-info__item-text a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.contact-info__item-text a:hover {
  color: var(--gold-400);
}

/* Contact Form */
.contact-form {
  padding: 48px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
}

.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-form > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--bg-warm);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(200, 160, 74, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
}

/* Map */
.contact-map {
  margin-top: 60px;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: 1px solid var(--border-light);
  filter: grayscale(30%);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.5);
  padding: 72px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__brand .logo {
  margin-bottom: 20px;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 24px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--gold-400);
}

.footer__contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  align-items: flex-start;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-500);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.45s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.55s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-preview {
    gap: 48px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .hero__deco {
    display: none;
  }
  
  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-layout__sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .service-detail {
    gap: 48px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }
  
  .section {
    padding: 72px 0;
  }
  
  .section-header {
    margin-bottom: 44px;
  }
  
  /* Mobile nav */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--navy-800);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    gap: 0;
    transition: right var(--transition-base);
    z-index: 999;
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav__link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1rem;
    padding: 16px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  
  .nav__cta {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
  }
  
  .hamburger {
    display: flex;
    z-index: 1001;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 26, 0.6);
    z-index: 998;
  }
  
  .nav-overlay.active {
    display: block;
  }
  
  /* Hero mobile */
  .hero {
    min-height: 85vh;
  }
  
  .hero__title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }
  
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero__actions .btn {
    justify-content: center;
  }
  
  /* Grid adjustments */
  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-preview {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-preview__badge {
    right: 0;
    bottom: -16px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .page-hero {
    padding: 130px 0 60px;
  }
  
  .about-layout__sidebar {
    grid-template-columns: 1fr;
  }
  
  .service-detail {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0;
  }
  
  .service-detail:nth-child(even) {
    direction: ltr;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero__content {
    padding-top: 20px;
  }
  
  .service-card {
    padding: 32px 24px;
  }
  
  .contact-info,
  .contact-form {
    padding: 32px 24px;
  }
}

/* ══════════════════════════════════════════
   BREADCRUMBS
   ══════════════════════════════════════════ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--gold-400);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

/* ══════════════════════════════════════════
   BLOG LISTING
   ══════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.blog-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.blog-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__category {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

.blog-card:hover .blog-card__title {
  color: var(--gold-500);
}

.blog-card__excerpt {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.blog-card__read-more {
  font-weight: 600;
  color: var(--gold-500);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.72rem;
  transition: color var(--transition-fast);
}

.blog-card__read-more:hover {
  color: var(--gold-400);
}

/* ══════════════════════════════════════════
   BLOG ARTICLE
   ══════════════════════════════════════════ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.article__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.article__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article__meta-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-500);
  fill: none;
  stroke-width: 1.5;
}

.article__content h2 {
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 16px;
}

.article__content h3 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.article__content p {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 18px;
}

.article__content ul,
.article__content ol {
  margin: 18px 0;
  padding-left: 24px;
}

.article__content ul {
  list-style: none;
  padding-left: 0;
}

.article__content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.article__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--gold-500);
}

.article__content ol {
  list-style: decimal;
}

.article__content ol li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.article__content blockquote {
  margin: 28px 0;
  padding: 24px 28px;
  background: var(--bg-section);
  border-left: 3px solid var(--gold-500);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
}

.article__content blockquote p:last-child {
  margin-bottom: 0;
}

/* Article Sidebar */
.article-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 28px;
  margin-bottom: 28px;
}

.sidebar-widget h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.sidebar-widget__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-widget__links a {
  font-size: 0.88rem;
  color: var(--text-body);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-widget__links a::before {
  content: '→';
  color: var(--gold-500);
  font-size: 0.8rem;
}

.sidebar-widget__links a:hover {
  color: var(--gold-500);
}

.sidebar-contact {
  background: var(--navy-800);
  border: none;
  color: #fff;
}

.sidebar-contact p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.sidebar-contact .contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.sidebar-contact .contact-line svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-500);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* Related Posts */
.related-posts {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-light);
}

.related-posts h3 {
  font-size: 1.4rem;
  margin-bottom: 28px;
}

.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ══════════════════════════════════════════
   BLOG RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .related-posts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .related-posts__grid {
    grid-template-columns: 1fr;
  }
}
