/* ═══════════════════════════════════════
   AD MARKETING GROUP — shared stylesheet
   ═══════════════════════════════════════ */

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

:root {
  --white:     #ffffff;
  --cream:     #f7f8fa;
  --ink:       #0d1b2a;
  --ink-soft:  #3a4a5c;
  --ink-mute:  #7a8a9a;
  --blue:      #3c7089;
  --blue-dk:   #2a5468;
  --blue-lt:   #5c9ab5;
  --blue-dim:  rgba(60,112,137,.1);
  --blue-glow: rgba(60,112,137,.22);
  --nav-h:     82px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ═══════════════════════════
   NAVBAR
═══════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 200;
  display: flex; align-items: center; padding: 0 52px;
  transition: background .45s, box-shadow .45s, border-color .45s;
  border-bottom: 1px solid transparent;
}

nav.scrolled,
nav.solid {
  background: rgba(247,248,250,.94);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom-color: rgba(60,112,137,.12);
  box-shadow: 0 2px 32px rgba(60,112,137,.08);
}

.nav-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }

.logo img {
  height: 75px; width: auto; object-fit: contain; display: block;
  filter: drop-shadow(0 2px 8px rgba(60,112,137,.15));
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .3s;
}

.logo:hover img { transform: scale(1.05); opacity: .9; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }

.nav-links li a {
  display: block; padding: 8px 14px;
  font-size: 15px; font-weight: 400;
  color: var(--ink-soft); text-decoration: none;
  border-radius: 8px; white-space: nowrap;
  transition: color .2s, background .2s;
  position: relative;
}

.nav-links li a::after {
  content: ''; position: absolute;
  left: 14px; right: 14px; bottom: 5px;
  height: 1.5px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}

.nav-links li a:hover { color: var(--ink); background: var(--blue-dim); }
.nav-links li a:hover::after { transform: scaleX(1); }
.nav-links li.active a { color: var(--blue); }
.nav-links li.active a::after { transform: scaleX(1); }

.nav-links li.cta-nav a {
  margin-left: 8px; background: var(--blue); color: var(--white);
  font-weight: 500; padding: 9px 22px; border-radius: 10px;
  box-shadow: 0 2px 14px var(--blue-glow);
  transition: background .25s, transform .25s, box-shadow .25s;
}

.nav-links li.cta-nav a::after { display: none; }

.nav-links li.cta-nav a:hover {
  background: var(--blue-dk); color: var(--white);
  transform: translateY(-1px); box-shadow: 0 6px 22px rgba(60,112,137,.35);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}

.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: all .3s;
}

.mob-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0; z-index: 199;
  background: rgba(247,248,250,.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(60,112,137,.1);
  flex-direction: column; gap: 2px; padding: 20px 24px 28px;
}

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

.mob-menu a {
  padding: 13px 16px; font-size: 15px;
  color: var(--ink-soft); text-decoration: none;
  border-radius: 10px; transition: background .2s, color .2s;
}

.mob-menu a:hover { background: var(--blue-dim); color: var(--ink); }

.mob-menu .mob-cta {
  margin-top: 10px; background: var(--blue);
  color: var(--white) !important; text-align: center;
  font-weight: 500; border-radius: 10px;
}

/* ═══════════════════════════
   PAGE HERO (subpages)
═══════════════════════════ */
.page-hero {
  padding-top: var(--nav-h);
  background: var(--white);
  position: relative; overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute; top: auto; bottom: 0;
  left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(60,112,137,.15), transparent);
}

.page-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(60,112,137,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60,112,137,.055) 1px, transparent 1px);
  background-size: 52px 52px;
}

.ph-label {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 22px;
  opacity: 0; animation: rUp .9s .1s cubic-bezier(.16,1,.3,1) forwards;
}
.ph-bar { width: 22px; height: 1px; background: var(--blue); }
.ph-text { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--blue); }

.page-hero h1 {
  font-size: clamp(32px, 5vw, 58px); font-weight: 700;
  line-height: 1.1; letter-spacing: -.025em; color: var(--ink);
  margin-bottom: 24px;
  opacity: 0; animation: rUp 1s .2s cubic-bezier(.16,1,.3,1) forwards;
}

.page-hero h1 em {
  font-style: italic; color: var(--blue); position: relative;
}
.page-hero h1 em::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-lt), transparent);
  border-radius: 2px;
}

.ph-lead {
  font-size: 16px; font-weight: 300; color: var(--ink-soft);
  line-height: 1.8; max-width: 480px; margin-bottom: 36px;
  opacity: 0; animation: rUp 1s .32s cubic-bezier(.16,1,.3,1) forwards;
}

/* ═══════════════════════════
   SECTION LABEL PATTERN
═══════════════════════════ */
.section-label { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.sl-bar { width: 22px; height: 1px; background: var(--blue); }
.sl-text { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--blue); }

/* ═══════════════════════════
   BUTTONS
═══════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 38px; border-radius: 14px;
  background: var(--blue); color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 24px var(--blue-glow), 0 1px 4px rgba(0,0,0,.06);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .28s, background .25s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s;
}
.btn-primary:hover {
  background: var(--blue-dk);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 38px rgba(60,112,137,.35), 0 3px 10px rgba(0,0,0,.06);
}
.btn-primary:hover::before { opacity: 1; }

.btn-arr {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.btn-primary:hover .btn-arr { transform: translateX(4px); }

.btn-mehr {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 30px;
  font-size: 14px; font-weight: 500; color: var(--blue); text-decoration: none;
  border-bottom: 1px solid rgba(60,112,137,.3); padding-bottom: 3px;
  transition: color .2s, border-color .2s, gap .25s cubic-bezier(.34,1.56,.64,1);
}
.btn-mehr:hover { color: var(--blue-dk); border-color: var(--blue); gap: 14px; }

.btn-cta-white {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 38px; border-radius: 14px;
  background: var(--white); color: var(--blue-dk);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .28s;
}
.btn-cta-white:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 48px rgba(0,0,0,.2);
}
.btn-cta-white .btn-arr {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(42,84,104,.12);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.btn-cta-white:hover .btn-arr { transform: translateX(4px); }

/* ═══════════════════════════
   CTA BANNER
═══════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dk) 0%, var(--blue) 55%, var(--blue-lt) 100%);
  padding: 100px 56px;
  position: relative; overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
  animation: ctaOrb1 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.cta-banner::after {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  bottom: -180px; right: -80px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  animation: ctaOrb2 16s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes ctaOrb1 { from { transform: translate(0,0) scale(1); } to { transform: translate(60px,40px) scale(1.2); } }
@keyframes ctaOrb2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-50px,-40px) scale(1.15); } }

.cta-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 75%);
}

.cta-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
  animation: ctaRing 6s ease-in-out infinite;
}

@keyframes ctaRing {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: .6; }
  50%      { transform: translate(-50%,-50%) scale(1.06); opacity: .2; }
}

.cta-banner-inner {
  position: relative; z-index: 2;
  max-width: 700px; margin: 0 auto;
}

.cta-banner-label {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px;
}

.cb-bar { width: 22px; height: 1px; background: rgba(255,255,255,.5); }
.cb-text { font-size: 10.5px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.7); }

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 50px); font-weight: 700;
  line-height: 1.14; letter-spacing: -.022em;
  color: var(--white); margin-bottom: 20px;
}

.cta-banner h2 em { font-style: italic; color: rgba(255,255,255,.8); }

.cta-banner p {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,.75);
  line-height: 1.8; max-width: 560px; margin: 0 auto 44px;
}

/* ═══════════════════════════
   FOOTER (simplified)
═══════════════════════════ */
.site-footer {
  background: var(--ink); color: var(--white);
  padding-top: 72px;
}

.footer-inner {
  max-width: 1140px; margin: 0 auto;
  padding: 0 56px 60px;
  display: grid; grid-template-columns: 2fr 1fr 1.4fr;
  gap: 52px;
}

.footer-logo img {
  height: 56px; width: auto; object-fit: contain;
  display: block; margin-bottom: 18px;
  filter: brightness(0) invert(1) opacity(.85);
  transition: opacity .25s;
}
.footer-logo:hover img { opacity: 1; }

.footer-tagline {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,.5);
  line-height: 1.78; max-width: 260px; margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 10px; }

.footer-social {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  display: grid; place-items: center;
  color: rgba(255,255,255,.5); text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.footer-social:hover {
  background: rgba(60,112,137,.3);
  border-color: var(--blue-lt); color: var(--white);
}

.footer-col-title {
  font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 20px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links li a {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,.6); text-decoration: none;
  transition: color .2s;
}
.footer-links li a:hover { color: var(--white); }

.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,.6);
}
.footer-contact li a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.footer-contact li a:hover { color: var(--white); }
.footer-contact li svg { flex-shrink: 0; margin-top: 2px; color: var(--blue-lt); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); }
.footer-bottom-inner {
  max-width: 1140px; margin: 0 auto; padding: 22px 56px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,.3);
}
.footer-bottom-links { display: flex; align-items: center; gap: 10px; }
.footer-bottom-links a { color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }
.fb-sep { opacity: .3; }

/* ═══════════════════════════
   KEYFRAMES
═══════════════════════════ */
@keyframes rUp { from { opacity:0; transform:translateY(26px) } to { opacity:1; transform:translateY(0) } }
@keyframes scS { 0% { top:-45% } 100% { top:145% } }

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 980px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cta-banner { padding: 72px 28px; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px; padding: 0 28px 52px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom-inner {
    padding: 20px 28px;
    flex-direction: column; gap: 8px; text-align: center;
  }
}

@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   LANGUAGE SWITCHER
═══════════════════════════════════════════════ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(60,112,137,.18);
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--ink-soft);
  padding: 4px 7px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  line-height: 1;
}
.lang-btn:hover { color: var(--blue); background: var(--blue-dim); }
.lang-btn.active { color: var(--blue); background: var(--blue-dim); }
.lang-sep {
  color: rgba(60,112,137,.25);
  font-size: 11px;
  font-weight: 300;
  user-select: none;
}

/* Mobile lang switcher inside mob-menu */
.mob-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0 0;
  margin-top: 6px;
  border-top: 1px solid rgba(60,112,137,.12);
}
.mob-lang .lang-btn {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 8px;
  color: var(--ink-soft);
  background: rgba(60,112,137,.06);
}
.mob-lang .lang-btn.active {
  color: var(--blue);
  background: var(--blue-dim);
}

@media (max-width: 960px) {
  .lang-switcher { display: none; }
}
