:root {
  --navy-950: #070e21;
  --navy-900: #0b1730;
  --navy-800: #11224a;
  --navy-700: #182d5c;
  --navy-600: #22397a;
  --gold: #d7ae61;
  --gold-bright: #e3bd75;
  --gold-deep: #b98d3e;
  --white: #ffffff;
  --cream: #f2f0ea;
  --border-gold: rgba(215, 174, 97, 0.28);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy-950);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--white);
}

.gold {
  color: var(--gold);
}

.phone-icon {
  color: var(--gold);
  flex-shrink: 0;
  vertical-align: -2px;
}

/* CONTACT CHOICE DROPDOWN (call / WhatsApp / Viber) */
.contact-choice {
  position: relative;
  display: inline-block;
}

.contact-choice-trigger {
  font-family: inherit;
}

.contact-choice-trigger.pulse {
  animation: contactPulse 0.9s ease;
}

@keyframes contactPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(215, 174, 97, 0.55);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(215, 174, 97, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(215, 174, 97, 0);
  }
}

.contact-choice-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 200px;
  background: var(--navy-900);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 60;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.55);
}

.contact-choice.open .contact-choice-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-choice-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cream);
  text-transform: none;
  letter-spacing: normal;
  transition: background .2s ease, color .2s ease;
}

.contact-choice-item:hover {
  background: rgba(215, 174, 97, 0.12);
  color: var(--gold);
}

.contact-choice-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.contact-choice-icon svg {
  width: 14px;
  height: 14px;
}

.contact-choice-icon.phone {
  background: var(--gold-deep);
  color: #131b33;
}

.contact-choice-icon.whatsapp {
  background: #25d366;
}

.contact-choice-icon.viber {
  background: #7360f2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 30px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
  box-sizing: border-box;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #131b33;
}

.btn-gold:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(242, 240, 234, 0.35);
}

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

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

.btn-outline-gold:hover {
  background: var(--gold);
  color: #131b33;
}

/* NAVBAR */
header.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid var(--border-gold);
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-badge {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text .l1 {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
}

.logo-text .l2 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--white);
  font-weight: 600;
}

nav.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

nav.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  position: relative;
  padding-bottom: 6px;
  transition: color .2s;
}

nav.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

nav.nav-links a:hover {
  color: var(--gold);
}

nav.nav-links a:hover::after {
  transform: scaleX(1);
}

nav.nav-links a.active {
  color: var(--gold);
}

nav.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.lang-current {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  background: none;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 6px;
  flex-shrink: 0;
  transition: border-color .25s ease, background .25s ease;
}

.hamburger:hover {
  border-color: var(--gold);
  background: rgba(215, 174, 97, 0.08);
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--gold);
  display: block;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
}

.hamburger.open {
  border-color: var(--gold);
  background: rgba(215, 174, 97, 0.1);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-900);
  border-top: 1px solid var(--border-gold);
  padding: 22px 32px 30px;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--cream);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(215, 174, 97, 0.12);
  transition: color .2s ease;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu a.active {
  color: var(--gold);
}

.mobile-menu .mobile-cta {
  margin-top: 6px;
  border-bottom: none;
  justify-content: center;
  text-align: center;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-photo-base,
.hero-photo-blur {
  position: absolute;
  inset: -14px;
  background-image:
    linear-gradient(200deg, rgba(24, 52, 120, 0.28), rgba(8, 16, 36, 0.15)),
    url('assets/images/advokat-ivana-kocevska-kancelarija.png');
  background-repeat: no-repeat;
  background-size: cover, cover;
  background-position: center, 64% 28%;
  background-blend-mode: overlay, normal;
}

.hero-photo-base {
  filter: saturate(0.92) brightness(0.93);
}

.hero-photo-blur {
  filter: blur(4px) saturate(0.88) brightness(0.88);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 78%, rgba(0, 0, 0, 0.5) 90%, black 100%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 78%, rgba(0, 0, 0, 0.5) 90%, black 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(100deg, rgba(6, 12, 28, 0.97) 0%, rgba(6, 12, 28, 0.86) 28%, rgba(6, 12, 28, 0.45) 55%, rgba(6, 12, 28, 0.15) 78%, rgba(6, 12, 28, 0.35) 100%),
    linear-gradient(0deg, rgba(6, 12, 28, 0.55) 0%, rgba(6, 12, 28, 0) 35%, rgba(6, 12, 28, 0) 70%, rgba(6, 12, 28, 0.4) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 32px;
  width: 100%;
}

.hero-text {
  max-width: 600px;
  animation: heroFadeIn 1s ease both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.5;
  z-index: 3;
}

.hero-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 22px;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}

.hero p.subtext {
  font-size: 16.5px;
  color: rgba(242, 240, 234, 0.8);
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-cta-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.hero-tagline {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 3px;
  color: rgba(242, 240, 234, 0.55);
  font-weight: 600;
}

.hero-email {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color .2s ease;
}

.hero-email:hover {
  color: var(--gold-bright);
}

.hero-quote-vertical {
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  max-height: none;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 19px;
  color: var(--gold-bright);
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 0 24px rgba(215, 174, 97, 0.45);
  z-index: 3;
}

/* TRUST STRIP */
.trust-strip {
  background: #efe9dc;
  padding: 36px 0;
  border-bottom: 1px solid rgba(23, 26, 43, 0.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-left: 30px;
  border-left: 1px solid rgba(23, 26, 43, 0.12);
}

.trust-item:first-child {
  border-left: none;
  padding-left: 0;
}

.trust-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(184, 150, 46, 0.35);
  background: linear-gradient(155deg, rgba(184, 150, 46, 0.14), rgba(184, 150, 46, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 18px -10px rgba(23, 26, 43, 0.25);
}

.trust-icon {
  width: 22px;
  height: 22px;
  color: var(--gold-deep);
  flex-shrink: 0;
}

.trust-item h4 {
  color: #171a2b;
  font-size: 15.5px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
}

.trust-item p {
  color: #5a5a60;
  font-size: 13px;
  line-height: 1.5;
}

/* GENERIC SECTION HEAD */
section {
  padding: 90px 0;
}

.section-label {
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  gap: 20px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: clamp(26px, 3.2vw, 34px);
}

.section-link {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
  white-space: nowrap;
  padding-bottom: 2px;
}

.section-link:hover {
  border-color: var(--gold);
}

/* SERVICES */
.services {
  background:
    radial-gradient(ellipse 700px 400px at 12% -5%, rgba(215, 174, 97, 0.09), transparent 60%),
    radial-gradient(ellipse 600px 400px at 100% 100%, rgba(215, 174, 97, 0.06), transparent 55%),
    var(--navy-950);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.service-card {
  background: linear-gradient(165deg, var(--navy-800), var(--navy-900));
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 24px 44px -18px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(215, 174, 97, 0.25);
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: rgba(215, 174, 97, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: background .3s ease, border-color .3s ease;
}

.service-card:hover .service-icon-wrap {
  background: rgba(215, 174, 97, 0.16);
  border-color: var(--gold);
}

.service-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  display: block;
}

.service-card h3 {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.35;
}

.service-card p {
  font-size: 12.5px;
  color: rgba(242, 240, 234, 0.6);
  line-height: 1.55;
}

/* ABOUT */
.about {
  background: #efe9dc;
  padding: 70px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr 240px;
  gap: 0;
  align-items: center;
}

.about-photo {
  aspect-ratio: 1/1.18;
  border-radius: 4px;
  background: linear-gradient(155deg, rgba(17, 34, 74, 0.9), rgba(11, 23, 48, 0.95));
  border: 1px solid rgba(17, 34, 74, 0.15);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.about-content {
  padding: 0 50px;
}

.about-label {
  font-size: 12.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}

.about-content h2 {
  color: #171a2b;
  font-size: clamp(24px, 2.6vw, 30px);
  margin-bottom: 20px;
}

.about-content p {
  color: #4c4c54;
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 520px;
}

.btn-gold-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  margin-top: 10px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #171a2b;
  transition: all .25s ease;
}

.btn-gold-dark:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.about-quote {
  border-left: 2px solid var(--gold-deep);
  padding-left: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-quote .quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 6px;
}

.about-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 19px;
  color: #171a2b;
  line-height: 1.4;
}

/* PROCESS */
.process {
  background:
    radial-gradient(ellipse 650px 380px at 90% 0%, rgba(215, 174, 97, 0.08), transparent 55%),
    radial-gradient(ellipse 500px 350px at 5% 100%, rgba(215, 174, 97, 0.05), transparent 55%),
    var(--navy-950);
  padding: 90px 0;
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
  align-items: center;
}

.timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
  text-align: center;
  flex-shrink: 0;
}

.timeline-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: linear-gradient(155deg, rgba(215, 174, 97, 0.12), rgba(17, 34, 74, 0.35));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.timeline-step:hover .timeline-circle {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -12px rgba(215, 174, 97, 0.5);
}

.timeline-step span.step-label {
  font-size: 13px;
  color: var(--white);
  font-weight: 600;
  line-height: 1.4;
}

.timeline-arrow {
  color: var(--gold);
  font-size: 18px;
  align-self: flex-start;
  padding-top: 16px;
  opacity: 0.6;
  flex-shrink: 0;
}

.process-box {
  border-left: 2px solid var(--gold-deep);
  padding-left: 44px;
}

.process-box h3 {
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.process-box p {
  color: rgba(242, 240, 234, 0.65);
  font-size: 15px;
  line-height: 1.8;
}

/* LEGAL FOCUS */
.legal-focus {
  background: #efe9dc;
  padding: 70px 0;
}

.legal-label {
  font-size: 12.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.legal-heading {
  color: #171a2b;
  font-size: clamp(24px, 2.8vw, 32px);
  margin-bottom: 36px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.legal-card-img {
  aspect-ratio: 4/3;
  border-radius: 4px;
  margin-bottom: 18px;
  background: linear-gradient(155deg, rgba(17, 34, 74, 0.85), rgba(11, 23, 48, 0.9));
  overflow: hidden;
}

.legal-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.legal-card:hover .legal-card-img img {
  transform: translateZ(0) scale(1.06);
}

.legal-card h4 {
  color: #171a2b;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}

.legal-card p {
  color: #5a5a60;
  font-size: 13px;
  line-height: 1.55;
}

/* MEDIA */
.media {
  background:
    radial-gradient(ellipse 650px 380px at 95% -5%, rgba(215, 174, 97, 0.07), transparent 55%),
    radial-gradient(ellipse 500px 350px at 0% 100%, rgba(215, 174, 97, 0.05), transparent 55%),
    var(--navy-950);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.media-card-img {
  aspect-ratio: 16/10;
  border-radius: 6px;
  margin-bottom: 18px;
  background: linear-gradient(155deg, rgba(215, 174, 97, 0.18), rgba(11, 23, 48, 0.95));
  overflow: hidden;
}

.media-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.media-card {
  display: block;
}

.media-card:hover .media-card-img img {
  transform: translateZ(0) scale(1.06);
}

.media-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 12px;
}

.media-date {
  font-size: 12.5px;
  color: var(--gold);
  letter-spacing: 0.5px;
}

/* FAQ */
.faq {
  background: #efe9dc;
  padding: 70px 0;
}

.faq-head {
  align-items: flex-start;
  margin-bottom: 36px;
}

.faq-see-all {
  color: var(--gold-deep) !important;
}

.faq-see-all:hover {
  border-color: var(--gold-deep) !important;
}

.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 46px;
}

.faq-item {
  border-top: 1px solid rgba(23, 26, 43, 0.14);
  padding: 20px 0;
}

.faq-question {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 700;
  color: #171a2b;
  line-height: 1.45;
}

.faq-toggle {
  flex-shrink: 0;
  width: 20px;
  color: var(--gold-deep);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: 13.5px;
  color: #5a5a60;
  padding-left: 36px;
}

.faq-item.open .faq-answer {
  max-height: 260px;
  padding-top: 12px;
}

/* CTA */
.cta-section {
  position: relative;
  padding: 60px 0;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(100deg, rgba(6, 12, 28, 0.75) 0%, rgba(6, 12, 28, 0.55) 35%, rgba(6, 12, 28, 0.35) 65%, rgba(6, 12, 28, 0.55) 100%),
    url('assets/images/pravna-kancelarija-biro-vagi.png');
  background-repeat: no-repeat;
  background-size: cover, cover;
  background-position: center, center;
  z-index: 0;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: clamp(24px, 2.6vw, 30px);
  margin-bottom: 14px;
}

.cta-text p {
  color: rgba(242, 240, 234, 0.7);
  font-size: 14.5px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-email {
  color: var(--gold);
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-email:hover {
  color: var(--gold-bright);
}

/* FOOTER */
footer {
  background:
    radial-gradient(ellipse 600px 300px at 10% 0%, rgba(215, 174, 97, 0.06), transparent 55%),
    #080e22;
  padding-top: 50px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 38px;
}

.footer-logo-block .footer-tagline {
  font-size: 13px;
  color: rgba(242, 240, 234, 0.5);
  margin-top: 14px;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: rgba(242, 240, 234, 0.8);
}

.footer-contact li .phone-icon {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

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

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background .2s, color .2s, transform .2s;
}

.social-icons a:hover {
  background: var(--gold);
  color: #0a1530;
  transform: translateY(-2px);
}


.footer-bottom {
  border-top: 2px solid var(--border-gold);
  padding: 22px 0 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(242, 240, 234, 0.4);
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: var(--navy-900);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s, border-color .25s ease, background .25s ease;
  z-index: 500;
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.5);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--gold);
  background: rgba(215, 174, 97, 0.12);
}

@media (max-width: 480px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
}

/* PREMIUM GOLD ACCENTS */
.section-label::after,
.legal-label::after,
.about-label::after,
.hero-label::after {
  content: '';
  display: block;
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 10px;
}

.hero-label {
  display: inline-block;
}

.legal-label::after,
.about-label::after {
  background: linear-gradient(90deg, var(--gold-deep), transparent);
}

.btn-gold,
.btn-gold-dark {
  box-shadow: 0 8px 24px -8px rgba(215, 174, 97, 0.45);
}

.hero-photo,
.about-photo,
.legal-card-img,
.media-card-img {
  box-shadow: inset 0 0 0 1px rgba(215, 174, 97, 0.15);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .legal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-quote-vertical {
    display: none;
  }

  .hero-photo-base,
  .hero-photo-blur {
    background-position: center, 60% 22%;
  }

  .hero-photo-blur {
    opacity: 0;
  }

  .hero-overlay {
    background-image:
      linear-gradient(180deg, rgba(6, 12, 28, 0.55) 0%, rgba(6, 12, 28, 0.55) 45%, rgba(6, 12, 28, 0.92) 100%),
      linear-gradient(0deg, rgba(6, 12, 28, 0.3) 0%, rgba(6, 12, 28, 0) 40%);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-content {
    padding: 0;
  }

  .about-photo {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .about-quote {
    border-left: none;
    border-top: 2px solid var(--gold-deep);
    padding-left: 0;
    padding-top: 30px;
  }

  .process-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process-box {
    border-left: none;
    border-top: 2px solid var(--gold-deep);
    padding-left: 0;
    padding-top: 30px;
  }

  .timeline {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 30px;
  }
}

@media (max-width: 780px) {
  nav.nav-links {
    display: none;
  }

  .nav-right .lang-current {
    display: none;
  }

  .nav-right .btn-outline-gold {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    justify-content: center;
  }

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

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    row-gap: 32px;
    column-gap: 12px;
  }

  .timeline-step {
    width: auto;
  }

  .timeline-arrow {
    display: none;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .faq-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    align-items: flex-start;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 64px;
  }

  .footer-social {
    align-items: flex-start;
    margin-top: 4px;
    margin-bottom: 32px;
  }

  .social-icons a {
    width: 42px;
    height: 42px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .trust-item {
    padding-left: 0;
    border-left: none;
    padding-top: 22px;
    border-top: 1px solid rgba(23, 26, 43, 0.12);
  }

  .trust-item:first-child {
    padding-top: 0;
    border-top: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mobile-menu {
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo-badge {
    width: 44px;
    height: 44px;
  }

  .logo-text .l2 {
    font-size: 14.5px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    justify-content: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  section {
    padding: 64px 0;
  }

  .about {
    padding: 56px 0;
  }

  .legal-focus {
    padding: 56px 0;
  }

  .faq {
    padding: 56px 0;
  }
}