/* ════════════════════════════════════════════════════════════
   CCC HEADER — Fully Scoped under #ccc-header
   Does NOT affect Elementor pages. Does NOT get affected by Elementor.
   ════════════════════════════════════════════════════════════ */

#ccc-header {
  --ccc-teal: #3CBDB5;
  --ccc-teal-dark: #2FA8A1;
  --ccc-teal-light: #EDF8F7;
  --ccc-white: #FFFFFF;
  --ccc-dark: #2D2D2D;
  --ccc-text: #555555;
  --ccc-text-light: #888888;
  --ccc-border: #E8E8E8;
  --ccc-heading: 'Cormorant Garamond', Georgia, serif;
  --ccc-body: 'Lato', 'Helvetica Neue', sans-serif;
  font-family: var(--ccc-body);
  -webkit-font-smoothing: antialiased;
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--ccc-white);
  transition: box-shadow 0.3s;
  line-height: 1.5;
}
#ccc-header *,
#ccc-header *::before,
#ccc-header *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#ccc-header a { text-decoration: none; color: inherit; }
#ccc-header img { max-width: 100%; height: auto; display: block; }
#ccc-header ul { list-style: none; }
#ccc-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.06); }

/* ── Top Bar ── */
#ccc-header .top-bar {
  background: var(--ccc-dark);
  padding: 7px 0;
}
#ccc-header .top-bar .tb-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}
#ccc-header .top-bar a {
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
#ccc-header .top-bar a:hover { color: var(--ccc-teal); }
#ccc-header .top-bar i { margin-right: 5px; font-size: 11px; }
#ccc-header .tb-left { display: flex; gap: 22px; align-items: center; }
#ccc-header .tb-right { display: flex; gap: 12px; align-items: center; }
#ccc-header .tb-right a { font-size: 13px; }

/* ── Nav Bar ── */
#ccc-header .nav-bar { border-bottom: 1px solid var(--ccc-border); }
#ccc-header .nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

/* Logo */
#ccc-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
#ccc-header .logo img { height: 46px; width: auto; }

/* Desktop Nav */
#ccc-header .nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
#ccc-header .nav-menu > li { position: relative; }
#ccc-header .nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ccc-text);
  transition: color 0.2s;
  white-space: nowrap;
  font-family: var(--ccc-body);
}
#ccc-header .nav-menu > li > a:hover,
#ccc-header .nav-menu > li > a.active {
  color: var(--ccc-teal);
}
#ccc-header .nav-menu > li > a .dd-arrow {
  font-size: 10px;
  transition: transform 0.25s;
}

/* Dropdown */
#ccc-header .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--ccc-white);
  border: 1px solid var(--ccc-border);
  border-radius: 10px;
  padding: 10px 0;
  min-width: 260px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 100;
}
#ccc-header .nav-menu > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#ccc-header .nav-menu > li:hover > a .dd-arrow {
  transform: rotate(180deg);
}
#ccc-header .dropdown li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 22px;
  font-size: 14px;
  color: var(--ccc-text);
  transition: all 0.2s;
  font-family: var(--ccc-body);
}
#ccc-header .dropdown li a:hover {
  background: var(--ccc-teal-light);
  color: var(--ccc-teal-dark);
  padding-left: 26px;
}
#ccc-header .dd-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--ccc-teal);
}

/* CTA Button */
#ccc-header .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 26px;
  background: var(--ccc-teal);
  color: var(--ccc-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s;
  margin-left: 10px;
  white-space: nowrap;
  font-family: var(--ccc-body);
}
#ccc-header .nav-cta:hover {
  background: var(--ccc-teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(60,189,181,0.25);
  color: var(--ccc-white);
}

/* ── Hamburger ── */
#ccc-header .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 10001;
}
#ccc-header .hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ccc-dark);
  border-radius: 2px;
  transition: all 0.3s;
}
#ccc-header .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
#ccc-header .hamburger.open span:nth-child(2) { opacity: 0; }
#ccc-header .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Mobile Menu ── */
#ccc-header .mob-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--ccc-white);
  z-index: 10000;
  padding: 88px 28px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
#ccc-header .mob-menu.open { transform: translateX(0); }
#ccc-header .mob-menu > ul > li { border-bottom: 1px solid var(--ccc-border); }
#ccc-header .mob-menu > ul > li > a {
  display: block;
  padding: 16px 0;
  font-family: var(--ccc-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--ccc-dark);
}
#ccc-header .mob-sub { padding: 0 0 12px 14px; }
#ccc-header .mob-sub a {
  display: block;
  padding: 7px 0;
  font-size: 15px;
  color: var(--ccc-text);
  font-family: var(--ccc-body);
}
#ccc-header .mob-sub a:hover { color: var(--ccc-teal); }
#ccc-header .mob-cta {
  display: block;
  text-align: center;
  margin-top: 28px;
  padding: 16px;
  background: var(--ccc-teal);
  color: var(--ccc-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--ccc-body);
}
#ccc-header .mob-cta:hover { background: var(--ccc-teal-dark); color: var(--ccc-white); }
#ccc-header .mob-contact {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
  color: var(--ccc-text-light);
}
#ccc-header .mob-contact a { color: var(--ccc-teal); font-weight: 700; }

/* ── Responsive ── */
@media (max-width: 960px) {
  #ccc-header .nav-menu,
  #ccc-header .nav-cta { display: none; }
  #ccc-header .hamburger { display: flex; }
  #ccc-header .mob-menu { display: block; }
  #ccc-header .nav-inner { height: 62px; }
  #ccc-header .logo img { height: 38px; }
}
@media (max-width: 600px) {
  #ccc-header .top-bar .tb-inner { justify-content: center; }
  #ccc-header .tb-left { gap: 14px; }
  #ccc-header .tb-right { display: none; }
}
