@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800&display=swap");

:root {
  --primary: #ce2945;
  --secondary: #4a95c7;
  --thirdary: #37748c;
  --dark: #0d0d0d;
  --light: #f0f0f0;
  --white: #ffffff;
  --heading-font: "Montserrat", sans-serif;
  --body-font: "Inter", sans-serif;
  --transition: all 0.4s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body-font);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

.nav-spacer {
  height: 88px;
  background: var(--white);
  width: 100%;
}

/* ============================
   NAVBAR
============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-top: 18px;
  background: #ffffff; /* CHANGE: transparent → #ffffff */
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08); /* light shadow */
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-family: var(--body-font);
  font-size: 0.92rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  padding: 7px 16px;
  transition: color 0.25s ease;
}
.nav-link:hover {
  color: var(--secondary);
}
/* active = primary (red/pink) */
.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-contact {
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  background: var(--secondary);
  padding: 10px 26px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--secondary);
  transition: var(--transition);
  white-space: nowrap;
  display: inline-block;
  line-height: 1.2;
}
.btn-contact:hover {
  background: transparent;
  color: var(--secondary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
}
.hamburger:hover {
  background: rgba(0, 0, 0, 0.05);
}
.bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}
.mobile-menu.open {
  max-height: 400px;
  padding: 12px 0 20px;
}
.mobile-link {
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  padding: 14px 32px;
  transition:
    color 0.2s,
    background 0.2s;
}
.mobile-link:hover {
  color: var(--secondary);
  background: rgba(74, 149, 199, 0.05);
}
.mobile-link.active {
  color: var(--primary);
  font-weight: 600;
}
.mobile-cta {
  margin: 12px 32px 0;
  text-align: center;
  padding: 12px 24px;
}

/* ============================
   HERO — full-bleed bg image
   Navbar transparent on top
============================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero {
  padding-top: 20px;
}

/* Full-bleed background image */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  display: block;
}
.hero {
  padding-top: 20px;
}
/* Left gradient overlay — makes text readable */
.hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, var(--light) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Text content — above the bg */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 60px 80px; /* 120px → 140px */
  width: 48%;
  max-width: 680px;
}

.hero-title span {
  white-space: nowrap;
}
/* ---- TITLE: exactly 3 lines, big font ---- */
.hero-title {
  font-family: var(--heading-font);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 20px;
}
.title-red {
  color: var(--primary);
  display: block;
}
.title-blue {
  color: var(--secondary);
  display: block;
}

.hero-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  background: var(--secondary);
  padding: 13px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--secondary);
  transition: var(--transition);
  display: inline-block;
}
.btn-primary:hover {
  background: transparent;
  color: var(--secondary);
}

.btn-outline {
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  background: transparent;
  padding: 13px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #bbb;
  transition: var(--transition);
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
}

.title-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.inline-blue {
  white-space: nowrap;
}

.title-blue-block {
  display: block;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1280px) {
  .hero-content {
    padding: 100px 0 50px 60px;
  }
  .hero-bg::after {
    width: 65%;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 0;
  }
  .nav-link {
    padding: 7px 10px;
    font-size: 0.84rem;
  }
  .hero-content {
    padding: 100px 0 44px 48px;
  }
  .hero-bg::after {
    width: 70%;
  }
}

/* ---- TABLET ---- */
@media (max-width: 768px) {
  .hero-bg {
    padding-top: 72px;
  }
  /* Navbar: solid white on mobile always */
  .navbar {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }
  .nav-links {
    display: none;
  }
  .nav-right .btn-contact {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
  .nav-container {
    padding: 0 24px;
  }

  /* Hero: image is full background, content overlays */
  .hero {
    min-height: 100svh;
    align-items: center;
  }

  /* On mobile the gradient covers more of the image */
  .hero-bg::after {
    width: 100%;

    background: linear-gradient(
      to bottom,
      rgba(240, 240, 240, 0.92) 0%,
      rgba(240, 240, 240, 0.82) 35%,
      rgba(240, 240, 240, 0.3) 70%,
      rgba(240, 240, 240, 0.08) 100%
    );
  }

  .hero-bg img {
    object-fit: cover;
    object-position: center bottom;
    transform: scale(1.15);
  }

  .hero-content {
    padding: 120px 24px 60px;
    max-width: 100%;
    width: 100%;
  }

  .hero-title {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }
  .hero-desc {
    max-width: 100%;
    font-size: 0.875rem;
  }
}

/* ---- MOBILE ---- */
@media (max-width: 480px) {
  .nav-logo img {
    height: 42px;
  }
  .nav-container {
    padding: 0 20px;
  }

  .hero-content {
    padding: 80px 20px 36px;
  }
  .hero-title {
    font-size: clamp(1.5rem, 7vw, 1.85rem);
  }
  .hero-desc {
    font-size: 0.83rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 11px 22px;
    font-size: 0.85rem;
  }
  .hero-actions {
    gap: 10px;
  }

  .hero-bg img {
    object-position: 80% bottom;
  }
  .hero-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(240, 240, 240, 0.9) 0%,
      rgba(240, 240, 240, 0.75) 50%,
      rgba(240, 240, 240, 0.1) 100%
    );
  }
}

/* 1 */
/* ============================================================
   ABOUT PAGE
============================================================ */

/* 8 */
/* ============================================================
   READY TO START YOUR JOURNEY SECTION — add to style.css
============================================================ */

.journey {
  width: 100%;
  padding: 54px 72px;
  background: #fff;
  overflow: hidden;
}

.journey-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ---- LEFT: Text ---- */
.journey-content {
  flex: 1;
  max-width: 440px;
  will-change: transform, opacity;
}

.journey-title {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 18px;
}

.journey-desc {
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 420px;
}

.journey-pick {
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 22px;
}

/* ---- Buttons ---- */
.journey-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.journey-btn {
  font-family: var(--body-font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--secondary);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--secondary);
  transition: var(--transition);
  display: inline-block;
  white-space: nowrap;
}

.journey-btn:hover {
  background: transparent;
  color: var(--secondary);
}

/* ---- RIGHT: Red card ---- */
.journey-card {
  flex-shrink: 0;
  width: 480px;
  height: 236px;
  background: var(--primary);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(206, 41, 69, 0.1);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  will-change: transform, opacity;
}

.journey-card {
  margin-top: 6px;
}

.journey-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(206, 41, 69, 0.24);
}

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

@media (max-width: 1280px) {
  .journey {
    padding: 60px 60px;
  }
  .journey-card {
    width: 420px;
    height: 220px;
  }
}

@media (max-width: 1024px) {
  .journey {
    padding: 52px 40px;
  }
  .journey-inner {
    gap: 40px;
  }
  .journey-card {
    width: 360px;
    height: 200px;
  }
  .journey-title {
    font-size: 2rem;
  }
}

/* Tablet — stack */
@media (max-width: 768px) {
  .journey {
    padding: 48px 24px;
  }

  .journey-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .journey-content {
    max-width: 100%;
  }
  .journey-desc {
    max-width: 100%;
  }

  .journey-card {
    width: 100%;
    height: 200px;
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .journey {
    padding: 40px 16px;
  }
  .journey-title {
    font-size: clamp(1.5rem, 6vw, 1.9rem);
  }
  .journey-desc {
    font-size: 0.85rem;
  }
  .journey-pick {
    font-size: 0.85rem;
  }
  .journey-btn {
    padding: 11px 22px;
    font-size: 0.84rem;
  }
  .journey-card {
    height: 170px;
    border-radius: 12px;
  }
}

/* ============================
   FOOTER
============================ */
.footer {
  background: #fdf0f2;
  padding: 60px 0 0;
  font-family: var(--body-font);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

/* --- Brand Column --- */
.footer-brand {
}

.footer-logo-wrap {
  margin-bottom: 4px;
}
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(206, 41, 69, 0.2);
  margin-bottom: 22px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-icon {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
}

.footer-contact-val {
  display: block;
  font-size: 0.8rem;
  color: #555;
  line-height: 1.65;
}

/* --- Link Columns --- */
.footer-col {
}

.footer-col-title {
  font-family: var(--heading-font);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-link {
  font-size: 0.82rem;
  color: #555;
  text-decoration: none;
  transition: color 0.22s ease;
}
.footer-link:hover {
  color: var(--primary);
}

/* --- Right Column (Social + Salesforce) --- */
.footer-col-right {
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}
.footer-social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.footer-partner {
}

.footer-partner-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.footer-salesforce-logo {
  height: 72px;
  width: auto;
  display: block;
}

/* --- Bottom Bar --- */
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 16px 40px;
  text-align: center;
  max-width: 100%;
}

.footer-copy {
  font-size: 0.78rem;
  color: #777;
}

/* ============================
   FOOTER RESPONSIVE
============================ */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 32px;
  }
  /* Move right col (social+salesforce) to a new row spanning full width */
  .footer-col-right {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  .footer-social {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 0 24px 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-col-right {
    grid-column: 1 / -1;
    gap: 32px;
  }
  .footer-bottom {
    padding: 16px 24px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 44px 0 0;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px 36px;
    gap: 24px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-col-right {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-bottom {
    padding: 14px 20px;
  }
}

/* ============================================================
   CONTACT HERO SECTION
============================================================ */

.contact-hero {
  background: var(--white);
  padding: 60px 72px 80px;
  overflow: hidden;
}

.contact-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ---- Left: Text ---- */
.contact-hero-content {
  flex: 1.1;
}

.contact-hero-subtitle {
  display: none;
}

.contact-hero-title {
  font-family: var(--heading-font);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 24px;
}

.contact-hero-desc {
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
  max-width: 420px;
}

/* ---- Right: Image ---- */
.contact-hero-image {
  flex: 1.3;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
}

.contact-hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.contact-hero-image:hover img {
  transform: scale(1.04);
}

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

@media (max-width: 1024px) {
  .contact-hero {
    padding: 55px 48px 70px;
  }
  .contact-hero-inner {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 40px 24px 56px;
  }
  .contact-hero-inner {
    flex-direction: column;
    gap: 32px;
  }
  .contact-hero-image img {
    height: 280px;
  }
  .contact-hero-desc {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 40px 16px 48px;
  }
  .contact-hero-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
  .contact-hero-image img {
    height: 220px;
  }
  .contact-hero-desc {
    font-size: 0.85rem;
  }
}

/*  */
/* ============================================================
   CONTACT FORM SECTION  —  paste into style.css
============================================================ */

/* Shared section heading style (reusable across all sections) */
.section-main-heading {
  font-family: var(--heading-font);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-heading-line {
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 32px;
}

/* ---- Section wrapper ---- */
.contact-form-section {
  background: var(--white);
  padding: 80px 40px;
  overflow: hidden;
}

.contact-form-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ============================================================
   LEFT — FORM
============================================================ */
.cfs-left {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
}

.cfs-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cfs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cfs-field {
  display: flex;
  flex-direction: column;
}

.cfs-field-full {
  width: 100%;
}

.cfs-input,
.cfs-textarea,
.cfs-select {
  font-family: var(--body-font);
  font-size: 0.88rem;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 13px 16px;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.cfs-input::placeholder,
.cfs-textarea::placeholder {
  color: #aaa;
}

.cfs-input:focus,
.cfs-textarea:focus,
.cfs-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(74, 149, 199, 0.12);
}

.cfs-textarea {
  resize: vertical;
  min-height: 130px;
}

/* Select with custom arrow */
.cfs-field-select {
  width: fit-content;
  min-width: 200px;
}

.cfs-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.cfs-select-wrap .cfs-select {
  padding-right: 40px;
  cursor: pointer;
}

.cfs-select-arrow {
  position: absolute;
  right: 14px;
  pointer-events: none;
  color: #888;
  display: flex;
  align-items: center;
}

/* Submit button */
.cfs-submit-btn {
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  background: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: 50px;
  padding: 13px 34px;
  cursor: pointer;
  width: fit-content;
  transition: var(--transition);
  margin-top: 4px;
}

.cfs-submit-btn:hover {
  background: transparent;
  color: var(--secondary);
}

/* ============================================================
   RIGHT — CONTACT INFO
============================================================ */
.cfs-right {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

/* Subtle red blob background */
.cfs-right::before {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(206, 41, 69, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  border-radius: 50%;
}

.cfs-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cfs-info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  position: relative;
}

.cfs-info-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.07);
}

.cfs-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cfs-info-item:hover .cfs-info-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(206, 41, 69, 0.3);
}

.cfs-info-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cfs-info-label {
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.cfs-info-val {
  font-family: var(--body-font);
  font-size: 0.83rem;
  color: #666;
  line-height: 1.5;
}

/* ============================================================
   ANIMATION — data-animate
============================================================ */
[data-animate] {
  opacity: 0;
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

[data-animate="fade-left"] {
  transform: translateX(-40px);
}
[data-animate="fade-right"] {
  transform: translateX(40px);
}
[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger delay for info items */
[data-delay="0"] {
  transition-delay: 0ms;
}
[data-delay="100"] {
  transition-delay: 100ms;
}
[data-delay="200"] {
  transition-delay: 200ms;
}
[data-delay="300"] {
  transition-delay: 300ms;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .contact-form-section {
    padding: 70px 32px;
  }
  .contact-form-container {
    gap: 40px;
  }
  .cfs-left,
  .cfs-right {
    padding: 36px 32px;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 24px;
  }
  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .section-main-heading {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
  .cfs-left,
  .cfs-right {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .contact-form-section {
    padding: 48px 16px;
  }
  .cfs-row {
    grid-template-columns: 1fr;
  }
  .cfs-left,
  .cfs-right {
    padding: 28px 18px;
  }
  .cfs-field-select {
    width: 100%;
  }
  .cfs-select-wrap {
    width: 100%;
  }
  .cfs-submit-btn {
    width: 100%;
    text-align: center;
  }
  .cfs-info-icon {
    width: 42px;
    height: 42px;
  }
}

/* 3 */
/* ============================================================
   WHERE WE ARE SECTION  —  paste into style.css
============================================================ */

.whereweare {
  background: var(--white);
  padding: 80px 40px;
  overflow: hidden;
}

.whereweare-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
}

/* ---- LEFT: Text ---- */
.whereweare-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.whereweare-label {
  font-family: var(--body-font);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Uses shared .section-main-heading from contact form CSS */

.whereweare-desc {
  font-family: var(--body-font);
  font-size: 0.875rem;
  color: #555;
  line-height: 1.85;
  margin-top: 14px;
  margin-bottom: 28px;
  max-width: 340px;
}

.whereweare-btn {
  font-family: var(--body-font);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  background: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: 50px;
  padding: 12px 28px;
  text-decoration: none;
  display: inline-block;
  width: fit-content;
  transition: var(--transition);
}
.whereweare-btn:hover {
  background: transparent;
  color: var(--secondary);
}

/* ---- RIGHT: Map + Card ---- */
.whereweare-map-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.whereweare-map {
  width: 100%;
  height: 340px;
  border: none;
  border-radius: 20px;
  display: block;
  filter: saturate(0.85) brightness(0.97);
  transition: filter 0.3s ease;
}

.whereweare-map-wrap:hover .whereweare-map {
  filter: saturate(1) brightness(1);
}

/* Floating address card */
.whereweare-card {
  position: absolute;
  bottom: 28px;
  right: 24px;
  background: var(--white);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  max-width: 260px;
  z-index: 10;
}

.whereweare-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--thirdary, #37748c);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whereweare-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.whereweare-card-name {
  font-family: var(--body-font);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.whereweare-card-addr {
  font-family: var(--body-font);
  font-size: 0.76rem;
  color: #666;
  line-height: 1.55;
}

/* ============================================================
   ANIMATION
============================================================ */
[data-animate] {
  opacity: 0;
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
[data-animate="fade-left"] {
  transform: translateX(-40px);
}
[data-animate="fade-right"] {
  transform: translateX(40px);
}
[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

[data-delay="0"] {
  transition-delay: 0ms;
}
[data-delay="100"] {
  transition-delay: 100ms;
}
[data-delay="200"] {
  transition-delay: 200ms;
}
[data-delay="300"] {
  transition-delay: 300ms;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .whereweare {
    padding: 70px 32px;
  }
  .whereweare-container {
    gap: 40px;
  }
  .whereweare-map {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .whereweare {
    padding: 60px 24px;
  }
  .whereweare-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .whereweare-desc {
    max-width: 100%;
  }
  .section-main-heading {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
  .whereweare-map {
    height: 300px;
  }
  .whereweare-card {
    bottom: 18px;
    right: 14px;
    max-width: 230px;
    padding: 12px 14px;
  }
}

@media (max-width: 480px) {
  .whereweare {
    padding: 48px 16px;
  }
  .whereweare-map {
    height: 250px;
  }
  .whereweare-card {
    bottom: 12px;
    right: 10px;
    max-width: 200px;
    gap: 10px;
    padding: 10px 12px;
  }
  .whereweare-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
  .whereweare-card-name {
    font-size: 0.74rem;
  }
  .whereweare-card-addr {
    font-size: 0.7rem;
  }
  .whereweare-btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   HOW CAN WE HELP YOU SECTION
============================================================ */

.howhelp {
  background: var(--white);
  padding: 80px 40px;
  overflow: hidden;
}

.howhelp-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

/* ---- Label above heading ---- */
.howhelp-label {
  font-family: var(--body-font);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: capitalize;
  margin-bottom: 10px;
}

/* ---- Main Heading ---- */
.howhelp-heading {
  font-family: var(--heading-font);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  text-align: center;
}

/* ---- Cards Grid ---- */
.howhelp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

/* ---- Single Card ---- */
.howhelp-card {
  background: var(--primary);
  border-radius: 18px;
  padding: 36px 28px 40px;
  text-align: left;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  cursor: default;
}

.howhelp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(206, 41, 69, 0.28);
}

/* ---- Card Header: icon + title inline ---- */
.howhelp-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

/* ---- Icon Circle ---- */
.howhelp-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.howhelp-card:hover .howhelp-icon-wrap {
  background: rgba(255, 255, 255, 0.32);
}

/* ---- Card Title ---- */
.howhelp-card-title {
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

/* ---- Card Description ---- */
.howhelp-card-desc {
  font-family: var(--body-font);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
}

/* ============================================================
   ANIMATION — uses existing [data-animate] system
============================================================ */
/* Already defined globally — no duplication needed.
   Just ensure your JS watches .howhelp [data-animate] elements. */

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

@media (max-width: 1024px) {
  .howhelp {
    padding: 70px 32px;
  }
  .howhelp-grid {
    gap: 22px;
  }
  .howhelp-card {
    padding: 30px 22px 34px;
  }
}

@media (max-width: 768px) {
  .howhelp {
    padding: 60px 24px;
  }

  /* Main heading mobile size */
  .howhelp-heading {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .howhelp-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 36px;
  }

  .howhelp-card {
    padding: 28px 24px 32px;
  }
}

@media (max-width: 480px) {
  .howhelp {
    padding: 48px 16px;
  }

  .howhelp-heading {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .howhelp-label {
    font-size: 0.78rem;
  }

  .howhelp-grid {
    gap: 14px;
    margin-top: 28px;
  }

  .howhelp-card {
    padding: 24px 18px 28px;
    border-radius: 14px;
  }

  .howhelp-card-title {
    font-size: 1rem;
  }

  .howhelp-card-desc {
    font-size: 0.84rem;
  }

  .howhelp-icon-wrap {
    width: 40px;
    height: 40px;
  }
}

/* ============================================================
   LET'S START CONVERSATION SECTION
============================================================ */

.letstart {
  background: var(--white);
  padding: 72px 40px;
  overflow: hidden;
}

.letstart-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* ---- LEFT: Text ---- */
.letstart-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Small label */
.letstart-label {
  font-family: var(--body-font);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

/* Main heading */
.letstart-heading {
  font-family: var(--heading-font);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

/* Description */
.letstart-desc {
  font-family: var(--body-font);
  font-size: 0.88rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 460px;
}

/* CTA Button */
.letstart-btn {
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  background: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: 50px;
  padding: 13px 34px;
  text-decoration: none;
  display: inline-block;
  width: fit-content;
  transition: var(--transition);
}

.letstart-btn:hover {
  background: transparent;
  color: var(--secondary);
}

/* ---- RIGHT: Image ---- */
.letstart-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.letstart-image-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
}

.letstart-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.letstart-image-wrap:hover .letstart-img {
  transform: scale(1.04);
}

/* ============================================================
   ANIMATION — [data-animate] system
============================================================ */
[data-animate] {
  opacity: 0;
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
[data-animate="fade-left"] {
  transform: translateX(-40px);
}
[data-animate="fade-right"] {
  transform: translateX(40px);
}
[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

[data-delay="0"] {
  transition-delay: 0ms;
}
[data-delay="100"] {
  transition-delay: 100ms;
}
[data-delay="150"] {
  transition-delay: 150ms;
}
[data-delay="200"] {
  transition-delay: 200ms;
}
[data-delay="300"] {
  transition-delay: 300ms;
}

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

@media (max-width: 1280px) {
  .letstart {
    padding: 64px 40px;
  }
  .letstart-container {
    gap: 48px;
  }
}

@media (max-width: 1024px) {
  .letstart {
    padding: 60px 32px;
  }
  .letstart-container {
    gap: 36px;
  }
  .letstart-img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .letstart {
    padding: 56px 24px;
  }
  .letstart-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .letstart-heading {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
  .letstart-desc {
    max-width: 100%;
    font-size: 0.875rem;
  }
  .letstart-img {
    height: 280px;
  }
  .letstart-image-wrap {
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .letstart {
    padding: 44px 16px;
  }
  .letstart-heading {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
  .letstart-label {
    font-size: 0.78rem;
  }
  .letstart-desc {
    font-size: 0.84rem;
    margin-bottom: 26px;
  }
  .letstart-btn {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
  }
  .letstart-img {
    height: 220px;
    object-position: center center;
  }
  .letstart-image-wrap {
    border-radius: 14px;
  }
}

/* email clickbale  */
.cfs-info-val {
  display: block;
  color: inherit;
  text-decoration: none;
}

.cfs-info-val:hover {
  color: var(--primary);
  text-decoration: underline;
}


/* phone number  */

