/* ============================================================
   AFFIDACON · CORP DESIGN SYSTEM
   ============================================================ */

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  --c-black:  #0d0d0d;
  --c-dark:   #1c1c1c;
  --c-mid:    #444444;
  --c-muted:  #616161;
  --c-border: #e2e2e2;
  --c-bg:     #f6f6f6;
  --c-white:  #ffffff;
  --c-gold:   #b8922a;
  --c-gold-d: #9a7822;

  --t:   .2s ease;
  --sv:  80px;
  --r:   0px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-mid);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--c-black);
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 .4em;
}
p  { margin: 0 0 .9em; }
ul { margin: 0; padding: 0; list-style: none; }
a  { color: var(--c-gold); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--c-gold-d); }
img { display: block; max-width: 100%; height: auto; }

@media(min-width:1200px){ .container{ max-width:1200px; } }

/* ============================================================
   PRELOADER
   ============================================================ */
.c-preloader {
  position: fixed;
  inset: 0;
  background: var(--c-black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s ease;
}
.c-preloader.done {
  opacity: 0;
  pointer-events: none;
}
.c-preloader__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-gold);
  animation: pdot .8s ease-in-out infinite alternate;
}
@keyframes pdot {
  from { transform: scale(.7); opacity: .4; }
  to   { transform: scale(1.3); opacity: 1; }
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.c-totop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--c-black);
  color: var(--c-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t), background var(--t), transform var(--t);
  z-index: 500;
}
.c-totop.visible {
  opacity: 1;
  pointer-events: auto;
}
.c-totop:hover {
  background: var(--c-gold);
  transform: translateY(-3px);
}

/* ============================================================
   TOPBAR
   ============================================================ */
.c-topbar {
  background: var(--c-black);
  height: 40px;
  display: flex;
  align-items: center;
}
.c-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-topbar__left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.c-topbar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  font-family: 'Inter', sans-serif;
  transition: color var(--t);
}
.c-topbar__item:hover { color: var(--c-gold); }
.c-topbar__item i { color: var(--c-gold); font-size: 10px; }

.c-topbar__cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--c-gold);
  border: 1px solid rgba(184,146,42,.45);
  padding: 5px 14px;
  font-family: 'Inter', sans-serif;
  transition: all var(--t);
}
.c-topbar__cta:hover {
  background: var(--c-gold);
  color: var(--c-black);
  border-color: var(--c-gold);
}

/* ============================================================
   HEADER
   ============================================================ */
.c-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--c-white);
  border-bottom: 2px solid var(--c-black);
  transition: box-shadow var(--t);
}
.c-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.12);
}
.c-header .container {
  display: flex;
  align-items: center;
  height: 80px;
  gap: 32px;
}

/* Logo */
.c-header__logo img {
  height: 110px;
  width: auto;
  transition: opacity var(--t);
}
.c-header__logo:hover img { opacity: .8; }

/* Nav */
.c-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 0;
}
.c-nav__link {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 15px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--c-dark);
  font-family: 'Inter', sans-serif;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--t), border-color var(--t);
  white-space: nowrap;
}
.c-nav__link:hover,
.c-nav__link.is-active {
  color: #7a5c1e;
  border-bottom-color: #7a5c1e;
}

/* Language switcher */
.c-nav__lang {
  position: relative;
  margin-left: 8px;
}
.c-nav__lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 80px;
  padding: 0 14px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--c-dark);
  font-family: 'Inter', sans-serif;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--t);
}
.c-nav__lang-btn:hover { color: var(--c-gold); }
.c-nav__lang-btn .fa-chevron-down {
  font-size: 9px;
  transition: transform var(--t);
}
.c-nav__lang-btn[aria-expanded="true"] .fa-chevron-down,
.c-nav__lang-drop.open ~ .c-nav__lang-btn .fa-chevron-down { transform: rotate(180deg); }

.c-nav__lang-drop {
  position: absolute;
  top: calc(100% + 0px);
  right: 0;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-top: 2px solid var(--c-gold);
  min-width: 150px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  display: none;
  z-index: 100;
}
.c-nav__lang-drop.open { display: block; }
.c-nav__lang-drop a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-dark);
  font-family: 'Inter', sans-serif;
  transition: background var(--t);
}
.c-nav__lang-drop a:hover { background: var(--c-bg); color: var(--c-black); }

/* Burger */
.c-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--c-border);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}
.c-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--c-black);
  transition: all var(--t);
}

/* ── Drawer ──────────────────────────────────────────────── */
.c-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 280px;
  height: 100vh;
  background: var(--c-white);
  border-left: 2px solid var(--c-black);
  z-index: 9000;
  transform: translateX(100%);
  transition: transform .28s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.c-drawer.open { transform: translateX(0); }

.c-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 8999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.c-drawer-overlay.open { opacity: 1; pointer-events: auto; }

.c-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--c-black);
  border-bottom: 2px solid var(--c-gold);
  flex-shrink: 0;
}
.c-drawer__top img {
  height: 32px;
  filter: brightness(0) invert(1);
}
.c-drawer__top button {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.c-drawer__top button:hover { color: var(--c-white); }

.c-drawer__nav { flex: 1; }
.c-drawer__nav a {
  display: block;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--c-dark);
  border-bottom: 1px solid var(--c-border);
  font-family: 'Inter', sans-serif;
  transition: all var(--t);
}
.c-drawer__nav a:hover,
.c-drawer__nav a.is-active {
  color: var(--c-gold);
  background: var(--c-bg);
  padding-left: 26px;
}

.c-drawer__lang {
  display: flex;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--c-border);
}
.c-drawer__lang a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--c-dark);
  font-family: 'Inter', sans-serif;
}
.c-drawer__lang a:hover { color: var(--c-gold); }

.c-drawer__contact {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c-drawer__contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--c-mid);
}
.c-drawer__contact a:hover { color: var(--c-gold); }
.c-drawer__contact i { color: var(--c-gold); width: 14px; text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-c {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  border: 2px solid var(--c-black);
  background: var(--c-black);
  color: var(--c-white);
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  text-decoration: none;
}
.btn-c:hover { background: var(--c-white); color: var(--c-black); }
.btn-c--outline { background: transparent; color: var(--c-black); }
.btn-c--outline:hover { background: var(--c-black); color: var(--c-white); }
.btn-c--gold { background: var(--c-gold); border-color: var(--c-gold); color: var(--c-white); }
.btn-c--gold:hover { background: var(--c-gold-d); border-color: var(--c-gold-d); color: var(--c-white); }
.btn-c--outline-white { background: transparent; border-color: rgba(255,255,255,.5); color: var(--c-white); }
.btn-c--outline-white:hover { background: var(--c-white); color: var(--c-black); border-color: var(--c-white); }
.btn-c i { font-size: 11px; }

/* ============================================================
   SECTION LABELS
   ============================================================ */
.s-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #7a5c1e;
  font-family: 'Inter', sans-serif;
  margin-bottom: 10px;
}
.s-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-gold);
  flex-shrink: 0;
}
.s-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--c-black);
  line-height: 1.15;
  letter-spacing: -.2px;
}
.s-title--sm  { font-size: clamp(20px, 2.5vw, 30px); }
.s-title--wh  { color: var(--c-white); }

/* ============================================================
   HERO
   ============================================================ */
.c-hero {
  position: relative;
  height: 580px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.c-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(13,13,13,.86) 38%, rgba(13,13,13,.38) 100%);
}
.c-hero__body {
  position: relative;
  z-index: 1;
  padding: 60px 0;
  max-width: 660px;
}
.c-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-gold);
  font-family: 'Inter', sans-serif;
  margin-bottom: 16px;
}
.c-hero__eyebrow::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--c-gold);
}
.c-hero__title {
  font-size: clamp(28px, 5vw, 58px);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.1;
  letter-spacing: -.3px;
  margin-bottom: 18px;
}
.c-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.c-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Owl carousel dots over hero — fixed position inside carousel wrapper */
.c-hero-carousel { position: relative; }
.c-hero-carousel .owl-dots {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  margin: 0 !important;
  padding: 0;
  line-height: 1;
}
.c-hero-carousel .owl-dot {
  min-width: 44px !important;
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.c-hero-carousel .owl-dot span {
  background: rgba(255,255,255,.3) !important;
  transition: all var(--t) !important;
  margin: 0 !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 4px !important;
}
.c-hero-carousel .owl-dot.active span {
  background: var(--c-gold) !important;
  width: 20px !important;
  border-radius: 4px !important;
}

/* ============================================================
   BRAND STRIP
   ============================================================ */
.c-brands {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 18px 0;
}
.c-brands .owl-item img {
  height: 30px;
  width: auto;
  opacity: .4;
  filter: grayscale(100%);
  margin: auto;
  transition: all var(--t);
}
.c-brands .owl-item:hover img {
  opacity: .75;
  filter: none;
}

/* ============================================================
   SERVICES
   ============================================================ */
.c-services {
  padding: var(--sv) 0;
}
.c-services__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* ── Service card — full overlay style ── */
.c-service-card {
  position: relative;
  height: 340px;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

/* Image fills entire card */
.c-service-card__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.c-service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
  display: block;
}
.c-service-card:hover .c-service-card__img img {
  transform: scale(1.08);
}

/* Gradient overlay */
.c-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,13,13,.95) 0%,
    rgba(13,13,13,.55) 55%,
    rgba(13,13,13,.18) 100%
  );
  z-index: 1;
  transition: background var(--t);
}
.c-service-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(13,13,13,.98) 0%,
    rgba(13,13,13,.72) 55%,
    rgba(13,13,13,.35) 100%
  );
}

/* Gold top-left accent line */
.c-service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--c-gold);
  z-index: 2;
  transition: width .35s ease;
}
.c-service-card:hover::after { width: 100%; }

/* Body sits at bottom */
.c-service-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 26px 26px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.c-service-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.3;
  margin-bottom: 0;
  transition: color var(--t);
}
.c-service-card__title a {
  color: inherit;
  text-decoration: none;
}
.c-service-card__title a:hover { color: var(--c-gold); }

/* Description — hidden by default, slides in on hover */
.c-service-card__text {
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-top: 0;
  margin-bottom: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s ease, opacity .35s ease, margin .35s ease;
}
.c-service-card:hover .c-service-card__text {
  max-height: 120px;
  opacity: 1;
  margin-top: 10px;
  margin-bottom: 14px;
}

/* Link — fades in on hover */
.c-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--c-gold);
  font-family: 'Inter', sans-serif;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease .05s, transform .3s ease .05s, gap var(--t);
  align-self: flex-start;
  text-decoration: none;
}
.c-service-card:hover .c-service-card__link {
  opacity: 1;
  transform: translateY(0);
}
.c-service-card__link:hover { gap: 10px; color: var(--c-gold); }

/* ============================================================
   ABOUT / MISSION
   ============================================================ */
.c-about {
  padding: var(--sv) 0;
  background: var(--c-bg);
}
.c-about__tabs {
  display: flex;
  border-bottom: 2px solid var(--c-border);
  gap: 0;
  margin-bottom: 20px;
}
.c-about__tab {
  padding: 9px 22px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--c-muted);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-family: 'Inter', sans-serif;
  transition: all var(--t);
}
.c-about__tab:hover,
.c-about__tab.active { color: var(--c-black); border-bottom-color: var(--c-black); }
.c-about__pane { display: none; }
.c-about__pane.active { display: block; }
.c-about__pane p { font-size: 14.5px; color: var(--c-mid); line-height: 1.78; }

.c-about__general {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.78;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--c-border);
}

.c-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--c-border);
}
.c-stat {
  padding: 22px 20px;
  text-align: center;
  border-right: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.c-stat:nth-child(2n) { border-right: none; }
.c-stat:nth-last-child(-n+2) { border-bottom: none; }
.c-stat__num {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: var(--c-black);
  line-height: 1;
  font-family: 'Playfair Display', serif;
}
.c-stat__label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-muted);
  font-family: 'Inter', sans-serif;
  margin-top: 6px;
}

/* ============================================================
   APPOINTMENT FORM
   ============================================================ */
.c-appt {
  padding: var(--sv) 0;
  background: var(--c-white);
}
.c-appt__inner {
  max-width: 860px;
  margin: 0 auto;
}
.c-appt__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--c-border);
  flex-wrap: wrap;
}
.c-appt__phone {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.c-appt__phone-icon {
  width: 42px;
  height: 42px;
  background: var(--c-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-appt__phone-icon i { color: var(--c-gold); font-size: 14px; }
.c-appt__phone-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-muted);
  display: block;
  font-family: 'Inter', sans-serif;
}
.c-appt__phone-num {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-black);
}

/* Form fields — map to existing IDs used by appointment.js */
.case-form-one__field { margin-bottom: 14px; position: relative; }
.case-form-one__field input,
.case-form-one__field textarea {
  width: 100%;
  border: 1px solid var(--c-border) !important;
  border-radius: 0 !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
  color: var(--c-dark) !important;
  background: var(--c-white) !important;
  font-family: 'Inter', sans-serif !important;
  transition: border-color var(--t) !important;
  box-shadow: none !important;
  outline: none !important;
}
.case-form-one__field input:focus,
.case-form-one__field textarea:focus {
  border-color: var(--c-black) !important;
  box-shadow: 0 0 0 2px rgba(13,13,13,.06) !important;
}
.case-form-one__field input::placeholder,
.case-form-one__field textarea::placeholder {
  color: var(--c-muted) !important;
  font-size: 13.5px !important;
}
.case-form-one__field textarea { min-height: 105px; resize: vertical; }

/* Calendar icon */
.case-form-one__field .fa-calendar-alt {
  position: absolute;
  right: 13px; top: 13px;
  color: var(--c-gold);
  font-size: 13px;
  pointer-events: none;
}

/* Bootstrap-select */
.case-form-one__field .bootstrap-select > .dropdown-toggle {
  border: 1px solid var(--c-border) !important;
  border-radius: 0 !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
  color: var(--c-muted) !important;
  background: var(--c-white) !important;
  box-shadow: none !important;
  height: auto !important;
}
.case-form-one__field .bootstrap-select > .dropdown-toggle:focus {
  border-color: var(--c-black) !important;
  box-shadow: 0 0 0 2px rgba(13,13,13,.06) !important;
  outline: none !important;
}
.case-form-one__field .bootstrap-select .dropdown-menu {
  border: 1px solid var(--c-border) !important;
  border-top: 2px solid var(--c-black) !important;
  border-radius: 0 !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.1) !important;
}
.case-form-one__field .bootstrap-select .dropdown-item:hover,
.case-form-one__field .bootstrap-select .dropdown-item.active {
  background: var(--c-bg) !important;
  color: var(--c-black) !important;
}

/* Datepicker */
.datepicker { border-radius: 0 !important; border: 1px solid var(--c-border) !important; }
.datepicker table tr td.active,
.datepicker table tr td.today {
  background: var(--c-black) !important;
  border-color: var(--c-black) !important;
  color: var(--c-white) !important;
}

/* Appt submit button */
#appointment_btn {
  width: 100%;
  justify-content: center;
  padding: 13px 28px !important;
  font-size: 12.5px !important;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.c-reviews {
  padding: var(--sv) 0;
  background: var(--c-black);
}
.c-reviews__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.c-review-card {
  border: 1px solid rgba(255,255,255,.1);
  padding: 26px;
  height: 100%;
  transition: all var(--t);
}
.c-review-card:hover {
  border-color: var(--c-gold);
  background: rgba(255,255,255,.04);
}
.c-review-card__quote {
  font-size: 36px;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: 12px;
  opacity: .6;
  font-family: 'Playfair Display', serif;
}
.c-review-card__text {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 20px;
}
.c-review-card__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.c-review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--c-gold);
  flex-shrink: 0;
}
.c-review-card__avatar img {
  width: 100%; height: 100%; object-fit: cover;
}
.c-review-card__name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 2px;
}
.c-review-card__role {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--c-gold);
  font-family: 'Inter', sans-serif;
}

.c-reviews .owl-dots { margin-top: 28px !important; text-align: center; }
.c-reviews .owl-dot {
  min-width: 44px !important;
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.c-reviews .owl-dot span {
  background: #bbb !important;
  margin: 0 !important;
  transition: all var(--t) !important;
}
.c-reviews .owl-dot.active span {
  background: var(--c-gold) !important;
  width: 20px !important;
  border-radius: 3px !important;
}

/* ============================================================
   BLOG
   ============================================================ */
.c-blog {
  padding: var(--sv) 0;
  background: var(--c-bg);
}
.c-blog__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.c-post {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--t);
  overflow: hidden;
}
.c-post:hover {
  border-color: var(--c-black);
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  transform: translateY(-5px);
}
.c-post__img {
  overflow: hidden;
}
.c-post__img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .5s ease;
}
.c-post:hover .c-post__img img { transform: scale(1.05); }

.c-post__body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 3px solid transparent;
  transition: border-color var(--t);
}
.c-post:hover .c-post__body { border-top-color: var(--c-gold); }

.c-post__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--c-muted);
  font-family: 'Inter', sans-serif;
  margin-bottom: 8px;
}
.c-post__meta span { color: var(--c-gold); }
.c-post__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-black);
  line-height: 1.3;
  margin-bottom: 14px;
}
.c-post__title a { color: inherit; }
.c-post__title a:hover { color: var(--c-gold); }
.c-post__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: var(--c-black);
  font-family: 'Inter', sans-serif;
  margin-top: auto;
  align-self: flex-start;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 2px;
  transition: all var(--t);
}
.c-post__link:hover { color: var(--c-gold); border-color: var(--c-gold); gap: 10px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.c-newsletter {
  padding: 48px 0;
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.c-newsletter .container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.c-newsletter__text { flex: 1; min-width: 200px; }
.c-newsletter__text h4 {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: var(--c-black);
  margin-bottom: 4px;
}
.c-newsletter__text p {
  font-size: 13px;
  color: var(--c-muted);
  margin: 0;
}
.c-newsletter__form-wrap { flex: 2; min-width: 260px; }
.c-newsletter__form {
  display: flex;
  border: 1px solid var(--c-border);
  overflow: hidden;
}
.c-newsletter__form input {
  flex: 1;
  border: none;
  padding: 12px 15px;
  font-size: 14px;
  color: var(--c-dark);
  font-family: inherit;
  background: var(--c-white);
  outline: none;
}
.c-newsletter__form button {
  background: var(--c-black);
  border: none;
  color: var(--c-white);
  padding: 0 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t);
}
.c-newsletter__form button:hover { background: var(--c-gold); }
.c-newsletter__msg { font-size: 12.5px; color: var(--c-gold); margin-top: 8px; margin-bottom: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.c-footer {
  background: var(--c-black);
  padding-top: 56px;
  border-top: 3px solid var(--c-gold);
}
.c-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}

.c-footer__logo {
  height: 140px !important;
  width: auto !important;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
  display: block;
}
.c-footer__col > p,
.c-footer__col--brand > p {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.72;
  margin-bottom: 10px;
}
.c-footer__maxim {
  font-size: 12px;
  font-style: italic;
  color: rgba(255,255,255,.3) !important;
}
.c-footer__col h5 {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-gold);
  font-family: 'Inter', sans-serif;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.c-footer__col ul li { margin-bottom: 10px; }
.c-footer__col ul a {
  font-size: 13px;
  color: rgba(255,255,255,.48);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all var(--t);
}
.c-footer__col ul a::before {
  content: '›';
  color: var(--c-gold);
  font-size: 15px;
  line-height: 1;
}
.c-footer__col ul a:hover { color: rgba(255,255,255,.9); padding-left: 4px; }

.c-footer__info p {
  font-size: 13px;
  color: rgba(255,255,255,.48);
  line-height: 1.7;
  margin-bottom: 6px;
}
.c-footer__info a {
  color: rgba(255,255,255,.65);
  font-weight: 600;
}
.c-footer__info a:hover { color: var(--c-gold); }
.c-footer__hours {
  font-size: 12px !important;
  color: rgba(255,255,255,.65) !important;
  margin-top: 4px;
}

.c-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 16px 0;
}
.c-footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.c-footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  margin: 0;
}
.c-footer__bottom p a { color: #fff; text-decoration: underline; }
.c-footer__bottom p a:hover { color: var(--c-gold); text-decoration: underline; }

.c-footer__social { display: flex; gap: 8px; }
.c-footer__social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all var(--t);
}
.c-footer__social a:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-white);
}

/* ============================================================
   INNER BANNER (other pages)
   ============================================================ */
.c-banner {
  background: var(--c-black);
  padding: 52px 0 40px;
  border-bottom: 3px solid var(--c-gold);
}
.c-banner__eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-gold);
  font-family: 'Inter', sans-serif;
  margin-bottom: 8px;
}
.c-banner__title {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 12px;
  line-height: 1.1;
}
.c-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.c-breadcrumb li {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-breadcrumb li::after { content: '/'; color: rgba(255,255,255,.2); }
.c-breadcrumb li:last-child::after { display: none; }
.c-breadcrumb a { color: rgba(255,255,255,.6); }
.c-breadcrumb a:hover { color: var(--c-gold); }

/* ============================================================
   ABOUT PAGE — about-two
   ============================================================ */
.about-two { padding: var(--sv) 0; }
.about-two__tag-line {
  font-size: 11px !important; font-weight: 700 !important;
  letter-spacing: 2.5px !important; text-transform: uppercase !important;
  color: var(--c-gold) !important; margin-bottom: 10px !important;
  font-family: 'Inter', sans-serif !important;
  display: flex; align-items: center; gap: 10px;
}
.about-two__tag-line::before {
  content: ''; width: 20px; height: 2px;
  background: var(--c-gold); display: block;
}
.about-two__title {
  font-size: clamp(22px, 3.5vw, 36px) !important;
  font-weight: 700 !important; color: var(--c-black) !important;
  margin-bottom: 14px !important; line-height: 1.2 !important;
}
.about-two__text {
  font-size: 15px !important; color: var(--c-muted) !important;
  line-height: 1.76 !important;
}
.about-two__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; font-size: 12px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  border: 2px solid var(--c-black); background: var(--c-black);
  color: var(--c-white); margin-top: 22px; transition: all var(--t);
}
.about-two__btn:hover { background: var(--c-white); color: var(--c-black); }
.about-two__images img { border: 1px solid var(--c-border); }

/* Service-one cards (about page) */
.service-one__single {
  background: var(--c-white) !important;
  border: 1px solid var(--c-border) !important;
  border-top: 3px solid var(--c-gold) !important;
  border-radius: 0 !important;
  padding: 28px 22px 24px !important;
  box-shadow: none !important;
  transition: all var(--t) !important;
  height: auto !important;
  min-height: 220px;
  display: flex; flex-direction: column; align-items: flex-start;
  position: relative;
}
.service-one__single:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.1) !important;
  transform: translateY(-5px) !important;
  border-top-color: var(--c-black) !important;
}
.service-one__icon { font-size: 36px !important; color: var(--c-gold) !important; margin-bottom: 14px !important; }
.service-one__title { font-size: 15.5px !important; font-weight: 700 !important; color: var(--c-black) !important; flex: 1; line-height: 1.3 !important; }
.service-one__title a { color: inherit !important; }
.service-one__title a:hover { color: var(--c-gold) !important; }
.service-one__btn {
  position: static !important; margin-top: auto;
  display: inline-flex !important; align-items: center; gap: 6px;
  padding: 8px 16px !important; font-size: 11px !important;
  font-weight: 700 !important; letter-spacing: .6px !important;
  text-transform: uppercase !important; font-family: 'Inter', sans-serif !important;
  border: 2px solid var(--c-black) !important; background: var(--c-black) !important;
  color: var(--c-white) !important; border-radius: 0 !important;
  transition: all var(--t) !important;
}
.service-one__btn:hover { background: var(--c-white) !important; color: var(--c-black) !important; }

/* ============================================================
   SINGLE SERVICE
   ============================================================ */
.c-service-detail { padding: var(--sv) 0; }
.c-service-detail__body {
  border: 1px solid var(--c-border);
  border-top: 3px solid var(--c-gold);
  padding: 36px;
}
.c-service-detail__body h2 { font-size: clamp(20px,3vw,32px); margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--c-border); }
.c-service-detail__body p, .c-service-detail__body li { font-size: 15px; color: var(--c-mid); line-height: 1.78; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.c-contact { padding: var(--sv) 0; }
.c-contact__info-item {
  padding: 18px 20px;
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-gold);
  margin-bottom: 14px;
  transition: box-shadow var(--t);
}
.c-contact__info-item:hover { box-shadow: 0 4px 14px rgba(0,0,0,.07); }
.c-contact__info-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--c-gold); font-family: 'Inter', sans-serif; margin-bottom: 5px; }
.c-contact__info-val { font-size: 14.5px; font-weight: 600; color: var(--c-dark); }
.c-contact__info-val a { color: inherit; }
.c-contact__info-val a:hover { color: var(--c-gold); }

/* Blog list & sidebar — kept minimal */
.c-blog-item { margin-bottom: 28px; background: var(--c-white); border: 1px solid var(--c-border); display: grid; grid-template-columns: 260px 1fr; transition: all var(--t); overflow: hidden; }
.c-blog-item:hover { border-color: var(--c-black); box-shadow: 0 6px 20px rgba(0,0,0,.09); }
.c-blog-item__img img { width: 100%; height: 100%; min-height: 190px; object-fit: cover; transition: transform .5s; }
.c-blog-item:hover .c-blog-item__img img { transform: scale(1.04); }
.c-blog-item__body { padding: 22px 26px; display: flex; flex-direction: column; border-left: 3px solid transparent; transition: border-color var(--t); }
.c-blog-item:hover .c-blog-item__body { border-left-color: var(--c-gold); }

.c-sidebar__widget { border: 1px solid var(--c-border); margin-bottom: 22px; }
.c-sidebar__head { padding: 12px 18px; background: var(--c-bg); border-bottom: 2px solid var(--c-black); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--c-black); font-family: 'Inter', sans-serif; }
.c-sidebar__body { padding: 14px 18px; }

/* ============================================================
   SEARCH POPUP (keep functional)
   ============================================================ */
.search-popup { z-index: 9999 !important; }
.search-popup__overlay { background: rgba(13,13,13,.96) !important; }
.search-popup__form input { border-bottom: 2px solid var(--c-gold) !important; background: transparent !important; color: var(--c-white) !important; border-radius: 0 !important; font-size: 20px !important; }
.search-popup__form button { color: var(--c-gold) !important; }

/* ============================================================
   ROW GAPS
   ============================================================ */
.c-blog .row { row-gap: 24px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .c-nav, .c-nav__lang { display: none; }
  .c-burger { display: flex; }
  .c-header .container { gap: 0; }
}

@media (max-width: 991px) {
  :root { --sv: 56px; }
  .c-topbar__cta { display: none; }
  .c-footer__grid { grid-template-columns: 1fr 1fr; }
  .c-blog-item { grid-template-columns: 200px 1fr; }
}

@media (max-width: 767px) {
  :root { --sv: 44px; }
  .c-topbar { display: none; }
  span[style*="height:2px"] { display: none !important; }
  .c-header .container { height: 72px; }
  .c-header__logo img { height: 90px; }

  .c-hero { height: 360px; }
  .c-hero__sub { display: none; }
  .c-hero__btns .btn-c { padding: 10px 16px; font-size: 11px; }

  .c-services__head, .c-blog__head { flex-direction: column; align-items: flex-start; }

  .c-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 32px; }
  .c-footer__col--brand { grid-column: 1 / -1; }
  .c-footer__bottom .container { flex-direction: column; align-items: flex-start; gap: 12px; }

  .c-newsletter .container { flex-direction: column; align-items: flex-start; }
  .c-newsletter__form-wrap { width: 100%; }
  .c-newsletter__form { flex-direction: column; }
  .c-newsletter__form input { width: 100%; }
  .c-newsletter__form button { width: 100%; padding: 13px 22px; }

  .c-blog-item { grid-template-columns: 1fr; }
  .c-blog-item__body { border-left: none; border-top: 3px solid var(--c-gold); }
  .c-blog-item__img img { min-height: 170px; max-height: 200px; }
  .c-service-detail__body { padding: 20px 16px; }

  .c-totop { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .c-footer__grid { grid-template-columns: 1fr; }
  .c-hero { height: 300px; }
  .c-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  body { padding-bottom: 0 !important; }
}

/* ── Flag icons (local, replaces cdnjs CDN) ──────────────── */
.flag-icon {
  display: inline-block;
  width: 1.33333em;
  height: 1em;
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.flag-icon-az { background-image: url(/assets/front/flags/az.svg); }
.flag-icon-gb { background-image: url(/assets/front/flags/gb.svg); }
