.proc-num{
  display: none;
}
:root{
  --navy:#06182a;
  --navy-2:#0a1f33;
  --navy-3:#0c2540;
  --navy-4:#102e4d;
  --orange:#f48120;
  --orange-2:#ff9a3c;
  --white:#ffffff;
  --text:#dfe6ee;
  --muted:rgba(255,255,255,.62);
  --line:rgba(255,255,255,.10);
  --line-2:rgba(255,255,255,.18);
  --font-main:'Inter',Arial,sans-serif;
  --font-head:'Montserrat',Arial,sans-serif;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:var(--font-main);
  color:var(--text);
  background:var(--navy);
  line-height:1.55;
  overflow-x:hidden;
}

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

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

.container{
  width:min(1240px, calc(100% - 44px));
  margin:0 auto;
}

/* =========================
ANIMATIONS
========================= */

@keyframes fadeUp{
  from{opacity:0; transform:translateY(40px);}
  to{opacity:1; transform:translateY(0);}
}

@keyframes glowPulse{
  0%{transform:scale(1);}
  50%{transform:scale(1.05);}
  100%{transform:scale(1);}
}

/* =========================
HEADER
========================= */

header{
  background:rgba(6,24,42,.92);
  color:#fff;
  position:sticky;
  top:0;
  z-index:999;
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.06);
  transition:.35s ease;
}

header.scrolled{
  background:rgba(6,24,42,.98);
  box-shadow:0 12px 40px rgba(0,0,0,.4);
}

.nav{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.brand{
  display:flex;
  flex-direction:column;
  line-height:1;
  transition:.25s ease;
}

.brand:hover{
  transform:translateY(-2px);
}

.brand-logo{
  font-size:38px;
  letter-spacing:-1px;
  font-weight:700;
  font-family:var(--font-head);
  color:#fff;
}

.brand-logo .accent{
  color:var(--orange);
}

.brand-sub{
  margin-top:6px;
  font-size:10px;
  font-weight:700;
  color:rgba(255,255,255,.55);
  letter-spacing:2.5px;
  text-transform:uppercase;
}

nav ul{
  display:flex;
  list-style:none;
  gap:34px;
  align-items:center;
}

nav ul li a{
  position:relative;
  font-size:14px;
  font-weight:600;
  color:rgba(255,255,255,.85);
  transition:.25s ease;
  padding:6px 0;
}

nav ul li a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--orange);
  transition:.25s ease;
}

nav ul li a:hover,
nav ul li a.active,
nav ul li.current-menu-item > a,
nav ul li.current-menu-ancestor > a{
  color:#fff;
}

nav ul li a:hover::after,
nav ul li a.active::after,
nav ul li.current-menu-item > a::after,
nav ul li.current-menu-ancestor > a::after{
  width:100%;
}

/* =========================
BUTTONS
========================= */

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:13px 22px;
  border-radius:10px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.3px;
  transition:.3s ease;
  position:relative;
  overflow:hidden;
  border:none;
  cursor:pointer;
}

.btn::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent 20%, rgba(255,255,255,.18), transparent 80%);
  transform:translateX(-120%);
  transition:.8s ease;
}

.btn:hover::before{
  transform:translateX(120%);
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-orange{
  background:var(--orange);
  color:#fff;
  box-shadow:0 12px 28px rgba(244,129,32,.32);
}

.btn-orange:hover{
  background:var(--orange-2);
}

.btn-orange.large{
  padding:16px 28px;
  font-size:14px;
}

/* =========================
HERO
========================= */

.hero{
  position:relative;
  color:#fff;
  overflow:hidden;
  background:var(--navy);
}

.hero-bg{
  position:absolute;
  inset:0;
  background:url("images/ccts/hero.jpg") center/cover no-repeat;
  z-index:0;
}

.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(6,24,42,.97) 0%,
    rgba(6,24,42,.86) 40%,
    rgba(6,24,42,.25) 70%,
    rgba(6,24,42,.05) 100%
  );
}

.hero .container{
  position:relative;
  z-index:2;
  padding:80px 0 70px;
  animation:fadeUp .9s ease forwards;
}

.hero h1{
  font-family:var(--font-head);
  font-size:clamp(40px,5.4vw,64px);
  line-height:1;
  text-transform:uppercase;
  font-weight:700;
  letter-spacing:-1.5px;
  margin-bottom:20px;
  max-width:680px;
}

.hero h1 .accent{
  color:var(--orange);
  display:block;
}

.hero h2.sub{
  font-family:var(--font-head);
  font-weight:700;
  font-size:20px;
  color:#fff;
  max-width:520px;
  margin-bottom:18px;
  line-height:1.3;
  position:relative;
  padding-left:14px;
}

.hero h2.sub::before{
  content:"";
  position:absolute;
  left:0;
  top:4px;
  bottom:4px;
  width:3px;
  background:var(--orange);
}

.hero p.lead{
  max-width:520px;
  color:rgba(255,255,255,.78);
  font-size:15px;
  margin-bottom:36px;
  line-height:1.65;
}

.hero-icons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  max-width:640px;
}

.hi-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:10px;
  font-size:13px;
  font-weight:600;
  color:rgba(255,255,255,.85);
  transition:.3s ease;
}

.hi-item:hover{
  border-color:rgba(244,129,32,.4);
  background:rgba(255,255,255,.05);
}

.hi-icon{
  width:32px;
  height:32px;
  border-radius:8px;
  background:rgba(244,129,32,.12);
  display:grid;
  place-items:center;
  color:var(--orange);
  flex-shrink:0;
}

.hi-icon svg{
  width:18px;
  height:18px;
  stroke:var(--orange);
  fill:none;
  stroke-width:1.7;
}

/* =========================
SECTIONS
========================= */

section{
  padding:70px 0;
}

.section-title{
  text-align:center;
  font-family:var(--font-head);
  font-size:clamp(22px,2.8vw,28px);
  text-transform:uppercase;
  letter-spacing:1.5px;
  font-weight:800;
  color:#fff;
  margin-bottom:48px;
  position:relative;
  padding-bottom:16px;
}

.section-title::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:48px;
  height:3px;
  background:var(--orange);
  transform:translateX(-50%);
}

/* =========================
PROCESS
========================= */

.process{
  background:var(--navy-2);
  padding:60px 0;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  align-items:flex-start;
}

.proc-step{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:18px;
  align-items:start;
  padding:0 22px;
  position:relative;
}

.proc-step:not(:last-child)::after{
  content:"›";
  position:absolute;
  top:17px;
  right:-12px;
  font-size:34px;
  color:var(--orange);
  font-weight:300;
  line-height:1;
}

.proc-circle{
  width:64px;
  height:64px;
  border-radius:50%;
  border:1.5px solid var(--orange);
  display:grid;
  place-items:center;
  position:relative;
  background:var(--navy-2);
}

.proc-circle svg{
  width:26px;
  height:26px;
  stroke:var(--orange);
  fill:none;
  stroke-width:1.6;
}

.proc-num{
  position:absolute;
  left:-14px;
  top:-6px;
  font-family:var(--font-head);
  font-size:24px;
  font-weight:800;
  color:var(--orange);
}

.proc-step h3{
  font-family:var(--font-head);
  font-size:15px;
  font-weight:800;
  color:#fff;
  margin-bottom:10px;
  line-height:1.25;
  text-transform:none;
  min-height:2.5em;
}

.proc-step p{
  font-size:13px;
  color:var(--muted);
  line-height:1.55;
}

/* =========================
SCOPE CARDS
========================= */

.scope{
  background:var(--navy);
}

.scope-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.scope-card{
  position:relative;
  height:260px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--line);
  transition:.4s ease;
  cursor:pointer;
}

.scope-card:hover{
  transform:translateY(-8px);
  border-color:rgba(244,129,32,.4);
  box-shadow:0 22px 50px rgba(0,0,0,.45);
}

.scope-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s ease;
}

.scope-card:hover img{
  transform:scale(1.08);
}

.scope-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(6,24,42,.1) 0%,
    rgba(6,24,42,.55) 55%,
    rgba(6,24,42,.95) 100%
  );
}

.scope-content{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:20px 22px;
  z-index:2;
  color:#fff;
}

.scope-icon{
  width:36px;
  height:36px;
  border-radius:50%;
  border:1.5px solid var(--orange);
  display:grid;
  place-items:center;
  margin-bottom:12px;
  color:var(--orange);
  background:rgba(6,24,42,.6);
}

.scope-icon svg{
  width:18px;
  height:18px;
  stroke:var(--orange);
  fill:none;
  stroke-width:1.7;
}

.scope-card h3{
  font-family:var(--font-head);
  font-size:16px;
  font-weight:800;
  color:#fff;
  margin-bottom:6px;
  line-height:1.25;
  text-transform:none;
}

.scope-card p{
  font-size:12.5px;
  color:rgba(255,255,255,.78);
  line-height:1.5;
}

/* =========================
OC DETAIL SECTION
========================= */

.ocdetail{
  background:var(--navy);
  padding:30px 0 70px;
}

.oc-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr .9fr;
  gap:30px;
  align-items:stretch;
}

.oc-image{
  border-radius:14px;
  overflow:hidden;
  height:100%;
  min-height:330px;
}

.oc-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.oc-text{
  padding:6px 0;
}

.oc-text h3{
  font-family:var(--font-head);
  font-size:20px;
  font-weight:800;
  color:#fff;
  margin-bottom:16px;
  text-transform:uppercase;
  letter-spacing:.5px;
  line-height:1.2;
}

.oc-text p{
  font-size:14px;
  color:var(--muted);
  line-height:1.65;
  margin-bottom:14px;
}

.oc-alert{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:10px;
  padding:14px 16px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  margin-top:18px;
}

.oc-alert .alert-icon{
  width:24px;
  height:24px;
  flex-shrink:0;
  color:var(--orange);
}

.oc-alert .alert-icon svg{
  width:24px;
  height:24px;
  stroke:var(--orange);
  fill:none;
  stroke-width:1.6;
}

.oc-alert p{
  font-size:12.5px;
  margin:0;
  color:rgba(255,255,255,.75);
  line-height:1.5;
}

.oc-checklist{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.oc-check-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.025);
  border-radius:12px;
  transition:.3s ease;
}

.oc-check-item:hover{
  border-color:rgba(244,129,32,.35);
  background:rgba(255,255,255,.05);
  transform:translateX(4px);
}

.oc-check-icon{
  width:40px;
  height:40px;
  border-radius:50%;
  border:1.5px solid var(--orange);
  display:grid;
  place-items:center;
  flex-shrink:0;
  color:var(--orange);
}

.oc-check-icon svg{
  width:20px;
  height:20px;
  stroke:var(--orange);
  fill:none;
  stroke-width:1.6;
}

.oc-check-item h4{
  font-family:var(--font-head);
  font-size:14px;
  font-weight:800;
  color:#fff;
  text-transform:none;
  line-height:1.25;
}

/* =========================
APP + STATS
========================= */

.app-stats{
  background:var(--navy);
  padding:30px 0 70px;
}

.as-grid{
  display:grid;
  grid-template-columns:1.2fr .9fr 1.2fr;
  gap:36px;
  align-items:center;
}

.as-image img{
  width:100%;
  filter:drop-shadow(0 30px 50px rgba(0,0,0,.5));
}

.as-list{
  list-style:none;
}

.as-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:14px 0;
  border-bottom:1px solid var(--line);
  font-size:14px;
  color:rgba(255,255,255,.86);
  font-weight:500;
}

.as-list li:last-child{
  border-bottom:0;
}

.as-list li::before{
  content:"";
  width:8px;
  height:8px;
  background:var(--orange);
  border-radius:50%;
  margin-top:7px;
  flex-shrink:0;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px 18px;
}

.stat{
  text-align:center;
  padding:14px 8px;
}

.stat-icon{
  width:44px;
  height:44px;
  margin:0 auto 12px;
  color:var(--orange);
  display:grid;
  place-items:center;
}

.stat-icon svg{
  width:36px;
  height:36px;
  stroke:var(--orange);
  fill:none;
  stroke-width:1.5;
}

.stat .big{
  font-family:var(--font-head);
  font-size:36px;
  font-weight:800;
  color:var(--orange);
  letter-spacing:-1px;
  line-height:1;
  margin-bottom:6px;
}

.stat .lbl{
  font-size:13px;
  color:rgba(255,255,255,.78);
  font-weight:500;
  line-height:1.35;
}

.stat .lbl-only{
  font-family:var(--font-head);
  font-size:14px;
  font-weight:700;
  color:#fff;
  line-height:1.3;
  margin-top:18px;
}

/* =========================
PRACTICES
========================= */

.practices{
  background:var(--navy);
  padding:30px 0 80px;
}

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

.p-item{
  text-align:center;
  padding:10px;
  transition:.3s ease;
}

.p-item:hover{
  transform:translateY(-5px);
}

.p-icon{
  width:64px;
  height:64px;
  margin:0 auto 16px;
  display:grid;
  place-items:center;
  color:var(--orange);
}

.p-icon svg{
  width:48px;
  height:48px;
  stroke:var(--orange);
  fill:none;
  stroke-width:1.5;
}

.p-item h4{
  font-family:var(--font-head);
  font-size:13px;
  font-weight:700;
  color:#fff;
  line-height:1.4;
  text-transform:none;
}

/* =========================
OVERNIGHT PHASES
========================= */

.overnight{
  background:var(--navy);
  padding:60px 0 70px;
}

.phase-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-bottom:50px;
}

.phase-card{
  background:rgba(255,255,255,.025);
  border:1px solid var(--line);
  border-radius:14px;
  padding:26px 26px 26px;
  transition:.35s ease;
}

.phase-card:hover{
  border-color:rgba(244,129,32,.4);
  background:rgba(255,255,255,.04);
  transform:translateY(-4px);
}

.phase-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}

.phase-num{
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--orange);
  color:#fff;
  font-family:var(--font-head);
  font-size:15px;
  font-weight:800;
  display:grid;
  place-items:center;
  flex-shrink:0;
  box-shadow:0 6px 16px rgba(244,129,32,.35);
}

.phase-icon{
  color:var(--orange);
  display:grid;
  place-items:center;
}

.phase-icon svg{
  width:28px;
  height:28px;
  stroke:var(--orange);
  fill:none;
  stroke-width:1.6;
}

.phase-card h3{
  font-family:var(--font-head);
  font-size:16px;
  font-weight:800;
  color:#fff;
  margin-bottom:14px;
  text-transform:none;
  line-height:1.3;
}

.phase-card ul{
  list-style:none;
}

.phase-card li{
  position:relative;
  padding:6px 0 6px 18px;
  font-size:13.5px;
  color:rgba(255,255,255,.78);
  line-height:1.5;
}

.phase-card li::before{
  content:"";
  position:absolute;
  left:0;
  top:13px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--orange);
}

/* PHILOSOPHY GRID */

.philo-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  padding:10px 0 40px;
}

.philo-card{
  text-align:left;
  padding:14px 8px;
  transition:.3s ease;
}

.philo-card:hover{
  transform:translateY(-4px);
}

.philo-icon{
  width:54px;
  height:54px;
  margin-bottom:18px;
  color:var(--orange);
  display:grid;
  place-items:center;
}

.philo-icon svg{
  width:42px;
  height:42px;
  stroke:var(--orange);
  fill:none;
  stroke-width:1.5;
}

.philo-card h4{
  font-family:var(--font-head);
  font-size:14px;
  font-weight:800;
  color:#fff;
  margin-bottom:10px;
  text-transform:none;
  line-height:1.3;
}

.philo-card p{
  font-size:13px;
  color:var(--muted);
  line-height:1.6;
}

/* PARTNERSHIP BANNER */

.partner{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:22px;
  background:linear-gradient(90deg, rgba(244,129,32,.08) 0%, rgba(255,255,255,.03) 100%);
  border:1px solid rgba(244,129,32,.28);
  border-radius:16px;
  padding:22px 28px;
  transition:.35s ease;
}

.partner:hover{
  border-color:rgba(244,129,32,.5);
  transform:translateY(-3px);
  box-shadow:0 18px 40px rgba(0,0,0,.25);
}

.partner-icon{
  width:56px;
  height:56px;
  border-radius:50%;
  background:rgba(244,129,32,.14);
  display:grid;
  place-items:center;
  color:var(--orange);
  flex-shrink:0;
}

.partner-icon svg{
  width:30px;
  height:30px;
  stroke:var(--orange);
  fill:none;
  stroke-width:1.6;
}

.partner-text h3{
  font-family:var(--font-head);
  font-size:18px;
  font-weight:800;
  color:#fff;
  margin-bottom:4px;
  text-transform:none;
  line-height:1.3;
}

.partner-text p{
  font-size:13.5px;
  color:rgba(255,255,255,.7);
  margin:0;
}

/* =========================
CTA BOTTOM
========================= */

.cta-bottom{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:var(--navy);
  padding:0;
}

.cta-inner{
  position:relative;
  padding:48px 0;
  background:
    linear-gradient(
      90deg,
      rgba(6,24,42,.95) 0%,
      rgba(6,24,42,.78) 50%,
      rgba(6,24,42,.30) 100%
    ),
    url("images/ccts/cta-bg.jpg") center/cover no-repeat;
}

.cta-inner::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:8px;
  background:var(--orange);
}

.cta-layout{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
  flex-wrap:wrap;
}

.cta-layout h3{
  font-family:var(--font-head);
  font-size:clamp(18px,2.2vw,22px);
  font-weight:700;
  color:#fff;
  line-height:1.45;
  max-width:680px;
  letter-spacing:.2px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){
  nav ul{gap:20px;}
  nav ul li a{font-size:13px;}
  .process-grid{grid-template-columns:repeat(2,1fr); gap:30px;}
  .proc-step:not(:last-child)::after{display:none;}
  .scope-grid{grid-template-columns:repeat(2,1fr);}
  .oc-grid{grid-template-columns:1fr;}
  .as-grid{grid-template-columns:1fr; gap:40px;}
  .p-grid{grid-template-columns:repeat(2,1fr);}
  .phase-grid{grid-template-columns:1fr;}
  .philo-grid{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:700px){
  nav ul{display:none;}
  .hero h1{font-size:38px;}
  .hero h1 .accent{display:inline;}
  .process-grid,
  .scope-grid,
  .stats-grid,
  .p-grid,
  .philo-grid{grid-template-columns:1fr;}
  .stats-grid{grid-template-columns:repeat(2,1fr);}
  .cta-layout{flex-direction:column; align-items:flex-start;}
  .partner{grid-template-columns:1fr; text-align:center;}
  .partner-icon{margin:0 auto;}
}

/* =========================
CONTACT PAGE
========================= */

.contact-hero{
  min-height:460px;
  padding:90px 0 70px;
}

.contact-hero .hero-bg{
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
}

.contact-section{
  padding:70px 0 90px;
  background:var(--navy-2);
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:40px;
  align-items:start;
}

.contact-info-card,
.contact-form-card{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:16px;
  padding:36px;
}

.contact-info-list p{
  margin:0 0 14px;
  font-size:15px;
  color:rgba(255,255,255,.85);
}

.contact-info-list a{
  color:#fff;
  transition:.25s ease;
}

.contact-info-list a:hover{
  color:var(--orange);
}

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

.office-card{
  padding:20px 22px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}

.office-name{
  font-family:var(--font-head);
  font-size:16px;
  font-weight:700;
  color:#fff;
  margin:0 0 14px;
}

.office-row{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:10px;
}

.office-row:last-child{
  margin-bottom:0;
}

.office-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:8px;
  background:rgba(244,129,32,.12);
  color:var(--orange);
  flex-shrink:0;
}

.office-icon svg{
  width:18px;
  height:18px;
}

.office-text{
  display:flex;
  flex-direction:column;
  gap:2px;
  font-size:14px;
  color:rgba(255,255,255,.82);
  line-height:1.5;
}

.office-text a{
  color:#fff;
  transition:.25s ease;
}

.office-text a:hover{
  color:var(--orange);
}

.office-block-title{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-head);
  font-size:14px;
  font-weight:700;
  color:#fff;
  margin:26px 0 12px;
}

.contact-emails-list,
.contact-phones-list{
  list-style:none;
  margin:0;
  padding:0;
}

.contact-emails-list li,
.contact-phones-list li{
  margin-bottom:8px;
  font-size:14px;
  color:rgba(255,255,255,.82);
}

.contact-emails-list a,
.contact-phones-list a{
  color:#fff;
  transition:.25s ease;
}

.contact-emails-list a:hover,
.contact-phones-list a:hover{
  color:var(--orange);
}

.contact-phones-list strong{
  color:rgba(255,255,255,.65);
  font-weight:600;
  margin-right:4px;
}

.contact-compact-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
  vertical-align:middle;
  color:var(--orange);
}

.contact-compact-icon svg{
  width:16px;
  height:16px;
}

.contact-compact-item{
  display:flex;
  align-items:center;
  gap:8px;
}

.contact-social{
  margin-top:28px;
  padding-top:24px;
  border-top:1px solid var(--line);
}

.contact-social h4{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:1.5px;
  color:var(--muted);
  margin-bottom:12px;
}

.contact-social .social-link{
  display:inline-flex;
  align-items:center;
  padding:10px 16px;
  border-radius:8px;
  border:1px solid var(--line-2);
  font-size:14px;
  font-weight:600;
  color:#fff;
  transition:.25s ease;
}

.contact-social .social-link:hover{
  border-color:var(--orange);
  color:var(--orange);
}

.office-icon--facebook{
  background:rgba(24,119,242,.15);
  color:#1877f2;
}

.office-icon--facebook svg{
  width:16px;
  height:16px;
}

.contact-form-wrap{
  margin-top:8px;
  color-scheme:dark;
}

.contact-form-wrap .wpcf7{
  color:var(--text);
}

.contact-form-wrap label{
  display:block;
  font-size:13px;
  font-weight:600;
  margin-bottom:18px;
  color:rgba(255,255,255,.78);
}

.contact-form-wrap .wpcf7-form-control-wrap{
  display:block;
  margin-top:8px;
}

.contact-form-wrap .wpcf7-form-control{
  width:100%;
}

.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap select,
.contact-form-wrap .wpcf7-select,
.contact-form-wrap textarea{
  width:100%;
  padding:13px 40px 13px 14px;
  border-radius:10px;
  border:1px solid var(--line-2);
  background-color:#0c2540;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23f48120' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  color:#fff;
  font-family:var(--font-main);
  font-size:14px;
  line-height:1.4;
  transition:.25s ease;
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
}

.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap textarea{
  background-image:none;
  padding-right:14px;
}

.contact-form-wrap select option,
.contact-form-wrap .wpcf7-select option{
  background:#0a1f33;
  color:#fff;
}

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

.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap .wpcf7-select:focus,
.contact-form-wrap textarea:focus{
  outline:none;
  border-color:var(--orange);
  background-color:#102e4d;
  box-shadow:0 0 0 1px rgba(244,129,32,.35);
}

.contact-form-wrap input[type="submit"],
.contact-form-wrap .wpcf7-submit{
  margin-top:8px;
  padding:13px 24px;
  border:none;
  border-radius:10px;
  background:var(--orange);
  color:#fff;
  font-weight:700;
  font-size:13px;
  cursor:pointer;
  transition:.25s ease;
  appearance:none;
  background-image:none;
}

.contact-form-wrap input[type="submit"]:hover,
.contact-form-wrap .wpcf7-submit:hover{
  background:var(--orange-2);
  transform:translateY(-2px);
}

.contact-form-wrap .wpcf7-response-output{
  margin:18px 0 0;
  padding:12px 14px;
  border-radius:8px;
  font-size:14px;
}

.contact-form-fallback{
  color:var(--muted);
  font-size:15px;
}

.grupa-ccs--kontakt footer{
  background:var(--navy);
  border-top:1px solid var(--line);
  padding:50px 0 0;
}

.grupa-ccs--kontakt .footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  padding-bottom:40px;
}

.grupa-ccs--kontakt .footer-grid h4{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-bottom:16px;
  color:#fff;
}

.grupa-ccs--kontakt .footer-grid ul{
  list-style:none;
}

.grupa-ccs--kontakt .footer-grid li{
  margin-bottom:10px;
}

.grupa-ccs--kontakt .footer-grid a{
  color:rgba(255,255,255,.72);
  font-size:14px;
  transition:.25s ease;
}

.grupa-ccs--kontakt .social{
  display:flex;
  gap:10px;
  margin-top:6px;
}

.grupa-ccs--kontakt .social a{
  width:32px;
  height:32px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.22);
  transition:.25s ease;
  color:#fff;
}

.grupa-ccs--kontakt .footer-grid a:hover{
  color:var(--orange);
}

.grupa-ccs--kontakt .social a.social-fb svg{
  width:14px;
  height:14px;
  display:block;
}

.grupa-ccs--kontakt .social a.social-fb:hover{
  background:#1877f2;
  border-color:#1877f2;
  color:#fff;
}

.grupa-ccs--kontakt .contact-line{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
  font-size:14px;
  color:rgba(255,255,255,.82);
}

.grupa-ccs--kontakt .legal{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  padding:20px 0;
  border-top:1px solid var(--line);
  font-size:12px;
  color:var(--muted);
}

@media(max-width:900px){
  .contact-grid{grid-template-columns:1fr;}
  .grupa-ccs--kontakt .footer-grid{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:600px){
  .grupa-ccs--kontakt .footer-grid{grid-template-columns:1fr;}
}