/* ═══════════════════════════════════════════════════════════════════
   ÇETIN LAW PARTNERS — Main Stylesheet
   Brand: Black + Crimson | Fonts: Cormorant Garamond + Raleway
═══════════════════════════════════════════════════════════════════ */

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

/* ─── CSS Variables ─────────────────────────────────────────────── */
:root {
  --navy:        #1a1a1a;
  --navy-deep:   #0d0d0d;
  --navy-mid:    #242424;
  --navy-light:  #2e2e2e;
  --gold:        #b51d28;
  --gold-light:  #d44a53;
  --gold-pale:   #fde8e9;
  --gold-shine:  #c9343e;
  --off-white:   #f5f4f4;
  --white:       #ffffff;
  --text:        #1a1a1a;
  --text-mid:    #4a4a4a;
  --text-light:  #7a7a7a;
  --border:      rgba(181,29,40,0.25);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Raleway', sans-serif;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.10);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.18);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.28);
  --radius: 4px;
}

/* ─── Reset & Base ──────────────────────────────────────────────── */
*, *::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(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ─── Typography ────────────────────────────────────────────────── */
.display-font { font-family: var(--font-display); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.18;
}

.section-title.light { color: var(--white); }
.section-title.gold  { color: var(--gold-light); }

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-gold.dark:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.82rem 2rem;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}

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

/* ─── Navbar ────────────────────────────────────────────────────── */
.clp-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--transition);
  background: transparent;
}

.clp-navbar.scrolled {
  background: var(--navy-deep);
  padding: 0.7rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1.1;
}

.brand-text span {
  display: block;
  font-size: 0.62rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85) !important;
  padding: 0.4rem 1rem !important;
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active { color: var(--gold-light) !important; }

.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.35rem 0.6rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(181,29,40,0.4);
  border-radius: 3px;
  overflow: hidden;
  margin-left: 0.8rem;
}

.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  transition: all var(--transition);
}

.lang-btn.active {
  background: var(--gold);
  color: var(--white);
}

.lang-btn:not(.active):hover {
  color: var(--gold-light);
}

/* ─── Page Hero ─────────────────────────────────────────────────── */
.page-hero {
  background: var(--navy-deep);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b51d28' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 550px;
  line-height: 1.8;
}

.breadcrumb {
  margin-bottom: 1.2rem;
  background: none;
  padding: 0;
}

.breadcrumb-item { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.breadcrumb-item a { color: var(--gold-light); }
.breadcrumb-item.active { color: rgba(255,255,255,0.5); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--gold); }

/* ─── Section Spacing ───────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }
.section-lg { padding: 130px 0; }

/* ─── Divider ───────────────────────────────────────────────────── */
.gold-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0 1.8rem;
}

.gold-divider.center { margin: 1rem auto 1.8rem; }

/* ─── Scroll Reveal ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.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; }
.reveal.delay-5 { transition-delay: 0.5s; }

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

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

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(181,29,40,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(26,32,53,0.8) 0%, transparent 60%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(181,29,40,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(181,29,40,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-tagline::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.6rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(181,29,40,0.2);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.3rem;
}

.hero-image-col {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-img-frame {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.hero-img-frame::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -20px;
  right: 20px;
  height: 75%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border-radius: 4px;
  z-index: 0;
}

.hero-img-frame::after {
  content: '';
  position: absolute;
  bottom: 30px;
  left: -40px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  opacity: 0.3;
  border-radius: 2px;
  z-index: 0;
}

.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 4px;
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 1rem 1.4rem;
  border-radius: 4px;
  z-index: 2;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.hero-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.hero-badge-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 0.2rem;
}

/* ─── Help Strip ────────────────────────────────────────────────── */
.help-strip {
  background: var(--navy);
  padding: 50px 0;
}

.help-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.help-strip-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
}

/* ─── Feature Cards ─────────────────────────────────────────────── */
.feature-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(181,29,40,0.12);
  border: 1px solid rgba(181,29,40,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.2rem;
  transition: all var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gold);
  color: var(--white);
}

.feature-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
  letter-spacing: 0.03em;
}

.feature-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ─── About Section ─────────────────────────────────────────────── */
.about-img-wrap {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}

.about-img-wrap img {
  border-radius: 4px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75%;
  height: 75%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  z-index: 0;
  opacity: 0.2;
}

.about-img-corner {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  z-index: 2;
  border-radius: 2px 0 0 0;
}

.attorney-sig {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  font-weight: 600;
}

.attorney-role {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ─── Expertise Grid ────────────────────────────────────────────── */
.bg-navy { background: var(--navy-deep); }
.bg-off-white { background: var(--off-white); }

.law-card {
  background: var(--navy-mid);
  border: 1px solid rgba(181,29,40,0.15);
  border-radius: 4px;
  padding: 2rem 1.6rem;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  height: 100%;
}

.law-card:hover,
.law-card.active {
  background: var(--navy-light);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.law-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(181,29,40,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
  color: var(--gold);
  transition: all var(--transition);
}

.law-card:hover .law-card-icon,
.law-card.active .law-card-icon {
  background: var(--gold);
  color: var(--white);
}

.law-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.law-card-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.law-card:hover .law-card-desc,
.law-card.active .law-card-desc {
  max-height: 200px;
  opacity: 1;
}

/* ─── Why Choose Us ─────────────────────────────────────────────── */
.why-item {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(181,29,40,0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--gold);
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.why-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ─── Contact CTA Strip ─────────────────────────────────────────── */
.cta-strip {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(181,29,40,0.08) 0%, transparent 70%);
}

.cta-phone {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
}

/* ─── Values Cards ──────────────────────────────────────────────── */
.value-card {
  background: var(--white);
  border: 1px solid rgba(181,29,40,0.15);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  padding: 2rem 1.8rem;
  height: 100%;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.value-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ─── Attorney Profile ──────────────────────────────────────────── */
.attorney-card {
  background: var(--navy);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.attorney-card-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center;
}

.attorney-card-body {
  padding: 2rem;
  background: var(--navy-mid);
}

.attorney-card-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.attorney-card-role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Contact Page ──────────────────────────────────────────────── */
.contact-info-card {
  background: var(--navy);
  border-radius: 4px;
  padding: 2.5rem;
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  background: rgba(181,29,40,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
}

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-info-value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* Form */
.contact-form-card {
  background: var(--off-white);
  border-radius: 4px;
  padding: 2.5rem;
}

.form-control {
  background: var(--white);
  border: 1px solid rgba(181,29,40,0.2);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  transition: all var(--transition);
}

.form-control:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(181,29,40,0.15);
  border-color: var(--gold);
  background: var(--white);
}

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.45rem;
}

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

.form-success {
  background: rgba(181,29,40,0.1);
  border: 1px solid var(--gold);
  color: var(--navy);
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  display: none;
  margin-top: 1rem;
}

/* ─── Map ───────────────────────────────────────────────────────── */
.map-frame {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) contrast(1.05);
}

/* ─── Expertise Page ────────────────────────────────────────────── */
.expertise-card {
  background: var(--white);
  border: 1px solid rgba(181,29,40,0.18);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  height: 100%;
}

.expertise-card:hover,
.expertise-card.active {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.expertise-card-header {
  background: var(--navy);
  padding: 1.8rem;
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.expertise-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(181,29,40,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--gold);
  transition: all var(--transition);
}

.expertise-card:hover .expertise-card-icon,
.expertise-card.active .expertise-card-icon {
  background: var(--gold);
  color: var(--white);
}

.expertise-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
}

.expertise-card-arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform var(--transition);
}

.expertise-card.active .expertise-card-arrow {
  transform: rotate(90deg);
}

.expertise-card-body {
  padding: 0 1.8rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.expertise-card.active .expertise-card-body {
  max-height: 400px;
  padding: 1.8rem;
}

.expertise-card-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.expertise-detail-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 1rem;
  margin-bottom: 0.4rem;
}

/* ─── Footer ────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(181,29,40,0.15);
  padding: 70px 0 0;
}

.footer-brand-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.footer-brand-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-about-text {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin: 1.2rem 0;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(181,29,40,0.2);
}

.footer-list { list-style: none; padding: 0; }

.footer-list li {
  margin-bottom: 0.7rem;
}

.footer-list a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-list a::before {
  content: '›';
  color: var(--gold);
}

.footer-list a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.5);
}

.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  margin-top: 50px;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.footer-copy a { color: var(--gold); }

.social-links {
  display: flex;
  gap: 0.6rem;
}

.social-link {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ─── Placeholder Image Styles ──────────────────────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
}

/* ─── Back to Top ───────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

/* ─── Responsive ────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .clp-navbar {
    background: var(--navy-deep) !important;
    padding: 0.8rem 0 !important;
  }

  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-image-col { display: none; }
  .hero-stats { gap: 1.5rem; }

  .help-strip-inner { flex-direction: column; }
  .hero-ctas { justify-content: center; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .lang-toggle { margin: 0.5rem 0 0; }
  .contact-form-card, .contact-info-card { padding: 1.8rem; }
}
