/* =====================================================================
   CHOWHAN AND SONS WATERPROOFING LLP — style.css
   Theme colours pulled from the brand logo. Change them here only.
   ===================================================================== */

:root {
  /* ---- BRAND COLOURS (easily changeable) ---- */
  --brand: #1C6A81;
  /* petrol teal (primary) */
  --brand-dark: #124453;
  /* deep teal */
  --brand-light: #2b90ad;
  /* bright teal accent */
  --brand-grey: #82817C;
  /* steel grey (secondary) */
  --brand-grey-d: #5f5e5a;
  /* dark grey */

  /* ---- NEUTRALS ---- */
  --ink: #16232a;
  /* near-black text */
  --muted: #5c6b72;
  /* muted body text */
  --line: #e4e9eb;
  /* borders */
  --bg: #ffffff;
  /* base white */
  --bg-tint: #f2f7f9;
  /* soft teal tint section bg */
  --bg-soft: #f6f8f9;
  /* light grey wash */

  /* ---- TYPE ---- */
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* ---- SHAPE ---- */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px -18px rgba(18, 68, 83, 0.28);
  --shadow-sm: 0 8px 22px -12px rgba(18, 68, 83, 0.30);
  --trans: all .35s cubic-bezier(.2, .7, .3, 1);
}

/* =====================================================================
   BASE
   ===================================================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.brand-text strong {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
}

p {
  color: var(--muted);
}

a {
  text-decoration: none;
  transition: var(--trans);
}

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

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

/* section rhythm */
.section {
  padding: 92px 0;
  position: relative;
}

.section-tint {
  background: var(--bg-tint);
}

.section-soft {
  background: var(--bg-soft);
}

.section-head {
  max-width: 680px;
  margin: 0 auto 54px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 6px 14px;
  border: 1px solid rgba(28, 106, 129, .25);
  border-radius: 40px;
  background: rgba(28, 106, 129, .06);
  margin-bottom: 18px;
}

.eyebrow-light {
  color: #bfe6f0;
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .08);
}

.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
}

.desc-light {
  color: rgba(255, 255, 255, .8);
}

.lead-text {
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 500;
}

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: 40px;
  padding: 12px 26px;
  transition: var(--trans);
}

.btn-brand {
  background: var(--brand);
  color: #fff;
  border: none;
  box-shadow: 0 10px 24px -10px rgba(28, 106, 129, .7);
}

.btn-brand:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -10px rgba(28, 106, 129, .85);
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, .7);
  border-radius: 40px;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--brand-dark);
  transform: translateY(-3px);
}

/* =====================================================================
   1. TOP BAR
   ===================================================================== */
.topbar {
  background: var(--brand-dark);
  color: #d7eef4;
  font-size: .86rem;
  padding: 8px 0;
}

.topbar-link {
  color: #d7eef4;
}

.topbar-link:hover {
  color: #fff;
}

.topbar-link i {
  color: var(--brand-light);
  margin-right: 4px;
}

.topbar-divider {
  color: rgba(255, 255, 255, .25);
}

.topbar-badge {
  font-size: .8rem;
  color: #bfe6f0;
}

.topbar-badge i {
  color: var(--brand-light);
}

.topbar-socials a {
  color: #d7eef4;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.topbar-socials a:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

/* =====================================================================
   2. STICKY HEADER
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: white;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, padding .3s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px -18px rgba(18, 68, 83, .4);
}

.brand-mark {
  display: inline-flex;
}

.brand-text strong {
  font-size: 1.05rem;
  color: var(--brand-dark);
  display: block;
  line-height: 1.1;
  letter-spacing: .01em;
}

.brand-text .brand-and {
  color: var(--brand-grey);
  font-weight: 600;
}

.brand-text small {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand-grey);
}

.navbar-nav .nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  margin: 0 4px;
  position: relative;
  font-size: .95rem;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--brand);
}

.navbar-toggler {
  border: none;
  font-size: 1.6rem;
  color: var(--brand);
  box-shadow: none;
}

/* =====================================================================
   3. HERO CAROUSEL (content aligned to the side)
   ===================================================================== */
.hero {
  position: relative;
}

.hero-carousel .carousel-item {
  height: 88vh;
  min-height: 560px;
  background-size: cover;
  background-position: center;
  background-color: var(--brand-dark);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.5) 42%, rgba(0, 0, 0, 0.205) 100%);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 620px;
  color: #fff;
}

/* text on the side (left) */

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  padding: 8px 16px;
  border-radius: 40px;
  color: #cdeaf2;
  margin-bottom: 22px;
  animation: softGlow 3s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-title .txt-accent {
  color: #6fd0e8;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .86);
  margin-bottom: 30px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* carousel controls */
.hero-ctrl {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  transition: var(--trans);
}

.hero-ctrl:hover {
  background: var(--brand);
  border-color: var(--brand);
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  padding: 0 26px;
  opacity: 1;
}

.hero-dots {
  margin-bottom: 26px;
}

.hero-dots [data-bs-target] {
  width: 30px;
  height: 5px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .4);
  border: none;
}

.hero-dots .active {
  background: var(--brand-light);
  width: 44px;
}

/* =====================================================================
   4. MARQUEE (rAF driven)
   ===================================================================== */
.marquee {
  background: var(--brand);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
  border-top: 3px solid var(--brand-light);
  border-bottom: 3px solid var(--brand-dark);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}

.marquee-item {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .02em;
}

.marquee-item i {
  color: #9fe0f0;
  font-size: 1.15rem;
}

/* =====================================================================
   5. ABOUT US
   ===================================================================== */
.about-media {
  position: relative;
  padding: 18px;
}

.about-img {
  border-radius: var(--radius);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.about-media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 62%;
  height: 62%;
  border: 3px solid var(--brand);
  border-radius: var(--radius);
  z-index: 1;
}

.about-float {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-float-exp {
  bottom: 30px;
  right: -6px;
  padding: 16px 22px;
  border-left: 5px solid var(--brand);
  animation: floatY 4s ease-in-out infinite;
}

.about-float-exp .num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}

.about-float-exp .plus {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand);
}

.about-float-exp small {
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.2;
}

.about-float-icon {
  top: 6px;
  right: 30px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  background: var(--brand-grey);
  animation: floatY 5s ease-in-out infinite reverse;
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}

.about-points li {
  padding: 6px 0;
  font-weight: 500;
  color: var(--ink);
}

.about-points i {
  color: var(--brand);
  margin-right: 8px;
}

/* =====================================================================
   6. SERVICES — single service showcase (image + detail + capabilities)
   ===================================================================== */
.service-feature {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.service-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(255, 255, 255, .92);
  color: var(--brand-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
}

.sf-media {
  position: relative;
  height: 100%;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-color: var(--brand-grey);
}

.sf-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(18, 68, 83, .35), transparent 60%);
}

.sf-badge {
  position: absolute;
  bottom: 22px;
  right: 22px;
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--brand);
  color: #fff;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  animation: floatY 4s ease-in-out infinite;
}

.sf-body {
  padding: 46px 44px;
}

.sf-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.sf-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--brand);
  border-radius: 4px;
  margin-top: 12px;
}

.sf-lead {
  font-size: 1.02rem;
  margin: 18px 0 26px;
}

.sf-caps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.sf-cap {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 16px;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}

.sf-cap:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.sf-cap-ic {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: var(--shadow-sm);
}

.sf-cap h4 {
  font-size: 1rem;
  margin: 2px 0 4px;
}

.sf-cap p {
  font-size: .85rem;
  margin: 0;
  line-height: 1.5;
}

/* sequential colour blink — one side to the other, capability by capability */
.sf-cap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--brand);
  transform: scaleY(0);
  transform-origin: top;
  animation: sweepBlinkY 5s ease-in-out infinite;
}

.sf-caps .sf-cap:nth-child(1)::before {
  animation-delay: 0s;
}

.sf-caps .sf-cap:nth-child(2)::before {
  animation-delay: .6s;
}

.sf-caps .sf-cap:nth-child(3)::before {
  animation-delay: 1.2s;
}

.sf-caps .sf-cap:nth-child(4)::before {
  animation-delay: 1.8s;
}

/* =====================================================================
   7. WHY CHOOSE US — asymmetric numbered list
   ===================================================================== */
.why-cta-box {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  background: var(--brand-dark);
  color: #fff;
  padding: 22px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.why-cta-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 2px solid transparent;
  animation: borderBlink 2.4s ease-in-out infinite;
  pointer-events: none;
}

.why-count {
  display: flex;
  align-items: baseline;
  font-family: var(--font-head);
}

.why-count .num {
  font-size: 2.6rem;
  font-weight: 800;
  color: #6fd0e8;
}

.why-count .plus {
  font-size: 1.6rem;
  font-weight: 800;
  color: #6fd0e8;
}

.why-cta-box small {
  display: block;
  color: rgba(255, 255, 255, .75);
  font-size: .85rem;
}

.why-list {
  display: grid;
  gap: 18px;
}

.why-item {
  display: flex;
  gap: 18px;
  background: #fff;
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}

.why-item:hover {
  transform: translateX(8px);
  border-color: rgba(28, 106, 129, .4);
  box-shadow: var(--shadow);
}

.why-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--brand);
  background: rgba(28, 106, 129, .09);
  width: 54px;
  height: 54px;
  border-radius: 12px;
  flex: 0 0 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item:hover .why-num {
  background: var(--brand);
  color: #fff;
}

.why-item h3 {
  font-size: 1.14rem;
  margin-bottom: 4px;
}

.why-item p {
  font-size: .93rem;
  margin: 0;
}

/* =====================================================================
   8. HOW IT WORKS — dark step timeline
   ===================================================================== */
.section-dark {
  background: var(--brand-dark);
}

.section-dark .section-title {
  color: #fff;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .35) 0 10px, transparent 10px 20px);
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-dot {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--brand);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(28, 106, 129, .22);
  transition: var(--trans);
}

.process-step:hover .process-dot {
  background: #6fd0e8;
  color: var(--brand-dark);
  transform: scale(1.08);
}

.process-no {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6fd0e8;
}

.process-step h3 {
  color: #fff;
  font-size: 1.2rem;
  margin: 6px 0 8px;
}

.process-step p {
  color: rgba(255, 255, 255, .72);
  font-size: .92rem;
}

/* =====================================================================
   10. GALLERY  (3/row desktop, 2/row mobile)
   ===================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(18, 68, 83, .8));
  opacity: .55;
  transition: opacity .4s ease;
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  transform: translateY(6px);
  opacity: .9;
  transition: var(--trans);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover::after {
  opacity: .75;
}

.gallery-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

/* =====================================================================
   STATS STRIP — blink band
   ===================================================================== */
.stats-strip {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-dark) 100%);
  padding: 54px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 3px rgba(111, 208, 232, 0);
  animation: insetBlink 2.6s ease-in-out infinite;
}

.stat .num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
}

.stat .plus {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: #9fe0f0;
}

.stat p {
  color: rgba(255, 255, 255, .82);
  font-weight: 500;
  margin: 4px 0 0;
  letter-spacing: .02em;
}

/* =====================================================================
   11. FAQs
   ===================================================================== */
.faq-illus {
  font-size: 5rem;
  color: rgba(28, 106, 129, .16);
  margin-top: 24px;
}

.faq-accordion .accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
}

.faq-accordion .accordion-button {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  font-size: 1.02rem;
  padding: 20px 22px;
  box-shadow: none;
  background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--brand);
  background: rgba(28, 106, 129, .05);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.faq-accordion .accordion-button::after {
  background-image: none;
  content: "\F64D";
  font-family: "bootstrap-icons";
  font-size: 1rem;
  transform: none;
  width: auto;
  height: auto;
  transition: transform .3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "\F63B";
  color: var(--brand);
}

.faq-accordion .accordion-body {
  color: var(--muted);
  padding: 0 22px 22px;
}

/* =====================================================================
   12. TESTIMONIALS
   ===================================================================== */
.testimonials {
  background: var(--bg-soft);
}

#testiCarousel {
  max-width: 760px;
  margin: 0 auto;
}

.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 46px 44px 40px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  margin: 10px;
  border-top: 4px solid var(--brand);
}

.testi-quote {
  position: absolute;
  top: 22px;
  left: 30px;
  font-size: 3rem;
  color: rgba(28, 106, 129, .12);
}

.testi-stars {
  color: #f5b301;
  font-size: 1rem;
  margin-bottom: 16px;
}

.testi-card p {
  font-size: 1.12rem;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-author strong {
  display: block;
  font-family: var(--font-head);
  color: var(--ink);
}

.testi-author small {
  color: var(--muted);
}

.testi-dots {
  position: static;
  margin-top: 26px;
}

.testi-dots [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-grey);
  opacity: .4;
  border: none;
}

.testi-dots .active {
  background: var(--brand);
  opacity: 1;
  width: 30px;
  border-radius: 8px;
}

/* =====================================================================
   14. CONTACT
   ===================================================================== */
.contact-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #fff;
}

.contact-info {
  background: linear-gradient(155deg, var(--brand-dark), var(--brand));
  color: #fff;
  padding: 52px 44px;
}

.contact-info p {
  color: rgba(255, 255, 255, .82);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 20px;
}

.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex: 0 0 44px;
  background: rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9fe0f0;
  font-size: 1.1rem;
}

.contact-list small {
  display: block;
  color: rgba(255, 255, 255, .6);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.contact-list a,
.contact-list span {
  color: #fff;
}

.contact-list a:hover {
  color: #9fe0f0;
}

.contact-form-col {
  padding: 52px 44px;
}

.form-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-control,
.form-select {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  font-size: .95rem;
  transition: var(--trans);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(28, 106, 129, .12);
}

.form-note {
  margin-top: 12px;
  font-weight: 600;
  font-family: var(--font-head);
  font-size: .92rem;
}

.form-note.ok {
  color: #1a8f4c;
}

.form-note.err {
  color: #c0392b;
}

/* =====================================================================
   15. FOOTER
   ===================================================================== */
.site-footer {
  background: #0e2e39;
  color: rgba(255, 255, 255, .75);
  padding: 64px 0 0;
}

.footer-brand strong {
  color: #fff;
  font-family: var(--font-head);
  display: block;
  font-size: 1.05rem;
}

.footer-brand small {
  color: var(--brand-grey);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.footer-about {
  margin: 18px 0;
  font-size: .95rem;
}

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

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.footer-socials a:hover {
  background: var(--brand);
  transform: translateY(-3px);
}

.footer-head {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 11px;
  font-size: .93rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, .75);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #9fe0f0;
  padding-left: 4px;
}

.footer-contact i {
  color: var(--brand-light);
  margin-right: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 46px;
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

.footer-bottom p {
  margin: 0;
  font-size: .86rem;
  color: rgba(255, 255, 255, .55);
}

.footer-credit {
  color: var(--brand-light) !important;
}

/* =====================================================================
   13. FLOATING BUTTONS + BACK TO TOP
   ===================================================================== */
.float-btn {
  position: fixed;
  bottom: 26px;
  z-index: 1040;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 10px 26px -8px rgba(0, 0, 0, .45);
}

.float-whatsapp {
  left: 26px;
  background: #25d366;
  animation: pulseGreen 2s infinite;
}

.float-call {
  right: 26px;
  background: var(--brand);
  animation: pulseBrand 2s infinite;
}

.float-btn:hover {
  color: #fff;
  transform: scale(1.12);
}

.back-to-top {
  position: fixed;
  bottom: 94px;
  right: 26px;
  z-index: 1039;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--brand-dark);
  color: #fff;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--brand);
  transform: translateY(-4px);
}

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================================
   KEYFRAMES
   ===================================================================== */
@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes softGlow {

  0%,
  100% {
    box-shadow: 0 0 0 rgba(111, 208, 232, 0);
  }

  50% {
    box-shadow: 0 0 18px rgba(111, 208, 232, .5);
  }
}

@keyframes sweepBlink {

  0%,
  12% {
    transform: scaleX(0);
  }

  20%,
  40% {
    transform: scaleX(1);
  }

  55%,
  100% {
    transform: scaleX(0);
  }
}

@keyframes sweepBlinkY {

  0%,
  12% {
    transform: scaleY(0);
  }

  20%,
  45% {
    transform: scaleY(1);
  }

  60%,
  100% {
    transform: scaleY(0);
  }
}

@keyframes borderBlink {

  0%,
  100% {
    border-color: rgba(111, 208, 232, 0);
  }

  50% {
    border-color: rgba(111, 208, 232, .9);
  }
}

@keyframes insetBlink {

  0%,
  100% {
    box-shadow: inset 0 0 0 3px rgba(111, 208, 232, 0);
  }

  50% {
    box-shadow: inset 0 0 0 3px rgba(111, 208, 232, .55);
  }
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .55);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes pulseBrand {
  0% {
    box-shadow: 0 0 0 0 rgba(28, 106, 129, .55);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(28, 106, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(28, 106, 129, 0);
  }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 991px) {
  .site-header {
    background: #fff;
  }

  .navbar-collapse {
    background: #fff;
    padding: 18px;
    border-radius: var(--radius);
    margin-top: 12px;
    box-shadow: var(--shadow);
  }

  .navbar-nav .nav-link {
    margin: 4px 0;
  }

  .btn-brand {
    width: 100%;
    margin-top: 8px;
  }

  .process-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .process-track::before {
    display: none;
  }

  .hero-carousel .carousel-item {
    height: auto;
    min-height: 620px;
    padding: 90px 0;
  }

  .contact-info,
  .contact-form-col {
    padding: 40px 30px;
  }

  .about-img {
    height: 400px;
  }
}

@media (max-width: 767px) {
	.cu-ds-snn{
		display:none!important;
	}
	.cu-jf-cnt{
		justify-content:center!important
	}
  .section {
    padding: 64px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* 2 per row on mobile */
  .gallery-item img {
    height: 180px;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    text-align: left;
  }

  .about-float-exp {
    right: 10px;
    bottom: 10px;
    padding: 12px 16px;
  }

  .testi-card {
    padding: 40px 26px 34px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .sf-body {
    padding: 34px 26px;
  }

  .sf-caps {
    grid-template-columns: 1fr;
  }

  .sf-media {
    min-height: 260px;
  }
}

@media (max-width: 400px) {
  .hero-cta .btn {
    width: 100%;
  }

  .about-media::before {
    display: none;
  }
}

/* =====================================================================
   ACCESSIBILITY — respect reduced motion
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}