/* ================================================================
   Red Dust Digital — Light Theme v3
   Palette: Coral #E05A6E  |  White #FFFFFF  |  Warm grey #F9F7F5
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Bebas+Neue&display=swap');

:root {
  /* Brand colours — soft coral, not harsh red */
  --coral:       #E05A6E;
  --coral-dark:  #C4485B;
  --coral-mid:   #E87A8A;
  --coral-light: #F5A8B4;
  --coral-pale:  #FEF1F3;
  --coral-bg:    #FDF5F6;

  /* Neutrals */
  --dark:        #1C1C2E;
  --dark2:       #2E2E42;
  --body:        #4A4A5A;
  --grey:        #7A7A8A;
  --border:      #ECEAF0;
  --bg-soft:     #F9F8FC;
  --bg-warm:     #FDFCFA;
  --white:       #FFFFFF;

  --nav-h:       90px;
  --radius:      14px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:   0 2px 12px rgba(28,28,46,.06);
  --shadow-md:   0 8px 32px rgba(28,28,46,.10);
  --shadow-lg:   0 16px 56px rgba(28,28,46,.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--body); background: var(--white); overflow-x: hidden; line-height: 1.65; }

::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--coral); border-radius: 4px; }

/* ── Utilities ── */
.container     { max-width: 1200px; margin: 0 auto; padding: 0 36px; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--coral); background: var(--coral-pale);
  border: 1px solid rgba(224,90,110,.16);
  padding: 5px 14px 5px 12px; border-radius: 24px; margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); flex-shrink: 0; }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  line-height: 1.04; letter-spacing: .02em;
  color: var(--dark); margin-bottom: 18px;
}
.section-sub { font-size: 1.05rem; color: var(--grey); max-width: 560px; line-height: 1.8; font-weight: 400; }

.coral-line { width: 44px; height: 3px; background: linear-gradient(90deg, var(--coral), var(--coral-light)); margin: 16px 0 32px; border-radius: 2px; }
.coral-line.c { margin: 16px auto 32px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 700; letter-spacing: .04em;
  padding: 13px 28px; border: none; cursor: pointer;
  text-decoration: none; border-radius: 8px;
  transition: all .28s var(--ease);
}
.btn-coral      { background: var(--coral); color: var(--white); }
.btn-coral:hover{ background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(224,90,110,.32); }
.btn-outline    { background: rgba(255,255,255,.12); color: var(--white); border: 1.5px solid rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.btn-outline:hover { background: var(--white); color: var(--dark); border-color: var(--white); transform: translateY(-1px); }
.btn-ghost      { background: transparent; color: var(--coral); border: 1.5px solid var(--coral); }
.btn-ghost:hover{ background: var(--coral-pale); }

/* ── Scroll fade ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ================================================================
   NAVIGATION — clean white, prominent
   ================================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  display: flex; align-items: center;
  transition: all .3s var(--ease);
}
#navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(28,28,46,.07);
}

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

/* Bigger logo */
.nav-logo img { height: 70px; width: auto; display: block; object-fit: contain; transition: transform .3s; }
.nav-logo img:hover { transform: scale(1.03); }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  font-size: 1rem; font-weight: 600; letter-spacing: .01em;
  text-decoration: none; color: var(--dark); padding: 8px 14px; border-radius: 8px;
  position: relative; transition: all .22s;
}
.nav-links a:hover { color: var(--coral); background: var(--coral-pale); }

.nav-cta {
  background: var(--coral) !important; color: var(--white) !important;
  border-radius: 8px !important; padding: 10px 22px !important; margin-left: 10px !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: var(--coral-dark) !important; color: var(--white) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(224,90,110,.28) !important;
  background: var(--coral-dark) !important;
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }
.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-nav { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: var(--white); z-index: 999; padding: 32px 28px; flex-direction: column; gap: 4px; overflow-y: auto; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.6rem; font-weight: 700; text-decoration: none; color: var(--dark); padding: 14px 0; border-bottom: 1px solid var(--border); transition: all .22s; display: block; }
.mobile-nav a:hover { color: var(--coral); padding-left: 8px; }
.mobile-nav .btn-coral { margin-top: 20px; justify-content: center; font-size: 1.05rem; }

/* ================================================================
   HERO SLIDER
   ================================================================ */
#hero { margin-top: var(--nav-h); position: relative; overflow: hidden; height: calc(100vh - var(--nav-h)); min-height: 560px; }

.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.3s ease; display: flex; align-items: center; }
.slide.active { opacity: 1; z-index: 2; }

/* Photo background — on a real div so background-image works cross-browser */
.slide-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 9s ease;
  z-index: 0;
}
.slide.active .slide-img { transform: scale(1.05); }

/* Light overlay — lets natural image colours breathe */
.slide-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(110deg, rgba(10,8,18,.62) 0%, rgba(10,8,18,.38) 48%, rgba(10,8,18,.12) 100%),
    linear-gradient(to top, rgba(10,8,18,.48) 0%, transparent 45%);
}

.slide-content { position: relative; z-index: 3; padding: 0 52px; max-width: 820px; }

.slide-eye {
  font-size: .78rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--coral-light); margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.slide-eye::before {
  content: ''; display: inline-block; width: 28px; height: 2px;
  background: var(--coral); border-radius: 1px; flex-shrink: 0;
}

.slide-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 7.5vw, 6.4rem);
  line-height: .97; color: var(--white);
  letter-spacing: .01em; margin-bottom: 22px;
}
.slide-content h1 em { color: var(--coral-light); font-style: normal; }
.slide-content p {
  font-size: clamp(.96rem, 1.4vw, 1.12rem); color: rgba(255,255,255,.80);
  max-width: 520px; margin-bottom: 36px; line-height: 1.75; font-weight: 400;
}
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Dots */
.slider-dots { position: absolute; bottom: 36px; left: 52px; z-index: 10; display: flex; gap: 10px; align-items: center; }
.s-dot { width: 26px; height: 3px; border-radius: 2px; background: rgba(255,255,255,.28); border: none; cursor: pointer; transition: all .3s; padding: 0; }
.s-dot.active { background: var(--coral); width: 48px; }

/* Arrows */
.slider-arrows { position: absolute; bottom: 28px; right: 52px; z-index: 10; display: flex; gap: 8px; }
.sarrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.08); backdrop-filter: blur(8px);
  color: var(--white); cursor: pointer; font-size: .95rem;
  display: flex; align-items: center; justify-content: center; transition: all .28s;
}
.sarrow:hover { background: var(--coral); border-color: var(--coral); }

/* Progress bar */
.slide-progress { position: absolute; bottom: 0; left: 0; height: 3px; background: var(--coral); z-index: 10; width: 0%; transition: none; }
.slide-progress.go { transition: width 5.5s linear; width: 100%; }

/* ── Ticker ── */
.ticker {
  background: var(--coral); padding: 11px 0; overflow: hidden;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--white);
}
.ticker-inner { display: flex; gap: 52px; animation: tick 32s linear infinite; width: max-content; }
.ticker-inner span { white-space: nowrap; }
.ticker-inner span::before { content: '◆  '; opacity: .4; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================================================================
   SERVICES — rounded cards, very light
   ================================================================ */
#services { padding: 112px 0; background: var(--white); }
.svc-header { text-align: center; margin-bottom: 72px; }
.svc-header .section-sub { margin: 0 auto; }

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

.svc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .32s var(--ease);
}
.svc-card:hover {
  border-color: var(--coral-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.svc-card:hover .svc-illo-inner { transform: scale(1.05); }

.svc-illo { height: 168px; overflow: hidden; }
.svc-illo-inner { width: 100%; height: 100%; transition: transform .45s var(--ease); }
.svc-illo-inner svg { width: 100%; height: 100%; display: block; }

.svc-body { padding: 26px 28px 32px; }
.svc-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; letter-spacing: -.01em; }
.svc-card p  { font-size: .9rem; color: var(--grey); line-height: 1.75; }

/* ================================================================
   WHY US — white cards on warm soft bg
   ================================================================ */
#why-us { padding: 112px 0; background: var(--bg-soft); }
.why-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.why-left .coral-line { margin: 16px 0 28px; }
.why-left .section-sub { margin-bottom: 0; }

.why-illustration { margin-top: 36px; border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); background: var(--white); box-shadow: var(--shadow-sm); }
.why-illustration svg { display: block; width: 100%; }

.why-cards { display: flex; flex-direction: column; gap: 14px; }
.why-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 22px 24px;
  transition: all .28s var(--ease);
  box-shadow: var(--shadow-sm);
}
.why-card:hover {
  border-color: var(--coral-light);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}
.w-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem;
}
.why-card h4 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 5px; letter-spacing: -.01em; }
.why-card p  { font-size: .9rem; color: var(--grey); line-height: 1.7; }

/* ================================================================
   PROCESS
   ================================================================ */
#process { padding: 112px 0; background: var(--white); }
.proc-header { text-align: center; margin-bottom: 72px; }
.proc-header .section-sub { margin: 0 auto; }

.proc-steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.proc-line {
  position: absolute; top: 60px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--coral-light) 60%, var(--border) 100%);
  border-radius: 1px; z-index: 0;
}
.proc-step { text-align: center; padding: 0 18px; position: relative; z-index: 1; }
.step-wrap {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto 28px; position: relative;
  transition: all .32s var(--ease);
  box-shadow: var(--shadow-sm);
}
.step-wrap:hover {
  border-color: var(--coral);
  box-shadow: 0 8px 28px rgba(224,90,110,.18);
  transform: translateY(-5px);
  background: var(--coral-pale);
}
.step-icon { font-size: 2.2rem; line-height: 1; }
.step-n {
  position: absolute; top: -10px; right: -10px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--coral); color: var(--white);
  font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(224,90,110,.32);
}
.proc-step h3 { font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.proc-step p  { font-size: .88rem; color: var(--grey); line-height: 1.72; }

/* ================================================================
   CONTACT
   ================================================================ */
#contact { padding: 112px 0; background: var(--bg-soft); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; }

.c-info .section-title { margin-bottom: 12px; }
.c-info .coral-line { margin: 16px 0 24px; }
.c-info .section-sub { margin-bottom: 40px; }

.c-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.c-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--coral-pale); border: 1px solid rgba(224,90,110,.14);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.c-text strong { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--dark); margin-bottom: 4px; }
.c-text span, .c-text a { font-size: .93rem; color: var(--grey); text-decoration: none; line-height: 1.55; display: block; }
.c-text a:hover { color: var(--coral); }

.cta-box {
  background: var(--dark2); border-radius: var(--radius); padding: 28px 30px; margin-top: 32px;
  border-left: 3px solid var(--coral);
}
.cta-box h4 { font-size: 1.15rem; font-weight: 800; color: var(--white); margin-bottom: 8px; letter-spacing: -.01em; }
.cta-box p  { font-size: .88rem; color: rgba(255,255,255,.5); margin-bottom: 20px; line-height: 1.65; }

/* Form */
.form-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-top: 3px solid var(--coral); border-radius: var(--radius);
  padding: 44px; box-shadow: var(--shadow-md);
}
.form-card h3 { font-size: 1.6rem; font-weight: 800; color: var(--dark); margin: 8px 0 26px; letter-spacing: -.01em; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.f-group { display: flex; flex-direction: column; gap: 7px; }
label { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--dark); }
label .req { color: var(--coral); }

input, select, textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  background: var(--bg-soft); font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .94rem; color: var(--dark); outline: none;
  transition: border-color .22s, box-shadow .22s, background .22s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--coral); background: var(--white);
  box-shadow: 0 0 0 3px rgba(224,90,110,.10);
}
textarea { resize: vertical; min-height: 112px; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E05A6E' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
  background-color: var(--bg-soft);
}

.f-submit { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.f-note   { font-size: .78rem; color: var(--grey); }
.f-status { display: none; padding: 13px 18px; border-radius: 8px; font-size: .9rem; font-weight: 600; margin-top: 14px; }
.f-status.success { background: rgba(22,163,74,.07); color: #166534; border: 1px solid rgba(22,163,74,.22); display: block; }
.f-status.error   { background: rgba(224,90,110,.07); color: var(--coral-dark); border: 1px solid rgba(224,90,110,.22); display: block; }
.budget-row { display: none; flex-direction: column; gap: 7px; }
.budget-row.show { display: flex; }

/* ================================================================
   FOOTER
   ================================================================ */
footer { background: var(--dark); border-top: 3px solid var(--coral); padding: 60px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.f-brand img {
  height: 62px; width: auto; margin-bottom: 18px; display: block;
  background: #ffffff; padding: 8px 16px; border-radius: 8px;
  object-fit: contain;
}
.f-brand p   { font-size: .9rem; color: rgba(255,255,255,.38); line-height: 1.78; max-width: 300px; }
.f-col h4 { font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--coral-mid); margin-bottom: 20px; }
.f-col ul { list-style: none; }
.f-col li { margin-bottom: 10px; }
.f-col a  { font-size: .9rem; color: rgba(255,255,255,.42); text-decoration: none; transition: all .22s; display: inline-block; }
.f-col a:hover { color: var(--white); transform: translateX(4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.f-copy { font-size: .82rem; color: rgba(255,255,255,.32); }
.f-copy strong { color: rgba(255,255,255,.55); }
.f-abn  { font-size: .78rem; color: rgba(255,255,255,.2); letter-spacing: .06em; }

/* ================================================================
   CONTACT PAGE  (contact.php)
   ================================================================ */
.contact-page-hero {
  margin-top: var(--nav-h); background: var(--dark2);
  padding: 80px 0 64px; position: relative; overflow: hidden;
}
.contact-page-hero::after {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,90,110,.22) 0%, transparent 70%);
  pointer-events: none;
}
.contact-page-hero .section-title { color: var(--white); }
.contact-page-hero .section-sub   { color: rgba(255,255,255,.52); }
.contact-page-hero .coral-line    { margin: 16px 0 0; }

.contact-page-body { padding: 80px 0 100px; background: var(--bg-soft); }
.cp-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; }

.cp-info-cards { display: flex; flex-direction: column; gap: 12px; }
.cp-info-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-left: 3px solid var(--coral); border-radius: 10px;
  padding: 20px 22px; display: flex; gap: 16px; align-items: flex-start;
  transition: all .28s; box-shadow: var(--shadow-sm);
}
.cp-info-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-color: var(--coral-light); }
.cp-ic-icon { width: 42px; height: 42px; flex-shrink: 0; background: var(--coral-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.cp-ic-text strong { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--dark); margin-bottom: 4px; }
.cp-ic-text span, .cp-ic-text a { font-size: .92rem; color: var(--grey); text-decoration: none; line-height: 1.55; display: block; }
.cp-ic-text a:hover { color: var(--coral); }
.cp-map { margin-top: 18px; border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); }
.cp-map iframe { width: 100%; height: 240px; border: none; display: block; }

.cp-form-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-top: 3px solid var(--coral); border-radius: var(--radius);
  padding: 48px; box-shadow: var(--shadow-md);
}
.form-tabs { display: flex; gap: 4px; margin-bottom: 28px; background: var(--bg-soft); border-radius: 10px; padding: 4px; }
.f-tab {
  flex: 1; padding: 10px 16px; border: none; border-radius: 8px; cursor: pointer;
  font-size: .9rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  background: transparent; color: var(--grey); transition: all .28s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.f-tab.active { background: var(--coral); color: var(--white); box-shadow: 0 2px 12px rgba(224,90,110,.28); }
#form-heading { font-size: 1.6rem; font-weight: 800; color: var(--dark); margin-bottom: 26px; letter-spacing: -.01em; }

/* ================================================================
   ABOUT US
   ================================================================ */
#about { padding: 112px 0; background: var(--white); }
.about-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }

.about-lead { font-size: 1.12rem; font-weight: 600; color: var(--dark); line-height: 1.75; margin-bottom: 20px; }
.about-body { font-size: 1rem; color: var(--grey); line-height: 1.82; margin-bottom: 18px; }

.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.about-pill  {
  font-size: .82rem; font-weight: 700; color: var(--dark);
  background: var(--bg-soft); border: 1.5px solid var(--border);
  padding: 7px 16px; border-radius: 24px; letter-spacing: .02em;
}

.about-visual { display: flex; flex-direction: column; gap: 14px; }
.about-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 22px 24px;
  transition: all .28s var(--ease); box-shadow: var(--shadow-sm);
}
.about-card:hover { border-color: var(--coral-light); box-shadow: var(--shadow-md); transform: translateX(5px); }
.about-card-icon { width: 50px; height: 50px; flex-shrink: 0; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.about-card h4 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 5px; letter-spacing: -.01em; }
.about-card p  { font-size: .9rem; color: var(--grey); line-height: 1.68; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cp-layout  { grid-template-columns: 1fr; gap: 44px; }
  .svc-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .proc-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .proc-line  { display: none; }
  .form-grid  { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .slide-content { padding: 0 24px; }
  .form-card, .cp-form-card { padding: 28px 22px; }
  .svc-grid   { grid-template-columns: 1fr; }
  .nav-logo img { height: 56px; }
  .container  { padding: 0 20px; }
}
@media (max-width: 480px) {
  .proc-steps { grid-template-columns: 1fr; }
  .slider-dots  { left: 24px; bottom: 28px; }
  .slider-arrows { right: 24px; bottom: 20px; }
  .slide-content h1 { font-size: 2.8rem; }
}
