/* =============== RESET & BASE =============== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #111827;
  background: #f5f5f5;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* Containers & helpers */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6b7280;
  margin-bottom: 1rem;
}

.section-label.center {
  text-align: center;
}

.section-title.center {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background-color: #ffd500;
  color: #111827;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  background-color: #f2c400;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: #ffffff;
  color: #111827;
  border: 1px solid #e5e7eb;
}

.btn-outline:hover {
  background-color: #f3f4f6;
}

.btn-small {
  padding: 0.75rem 1.4rem;
}

.btn-nav {
  background-color: #ffd500;
  color: #111827;
  font-size: 0.86rem;
  padding: 0.6rem 1.4rem;
}

/* =============== HEADER =============== */

.header {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.07);
}

.small-cont {
  width: 100%;
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.2rem;
}

.logo img {
  height: 40px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 1.6rem;
  font-size: 0.9rem;
}

.nav a {
  color: #4b5563;
  text-decoration: none;
  padding-bottom: 0.2rem;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 2px;
  background-color: #ffd500;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav a:hover {
  color: #111827;
}

.nav a:hover::after {
  transform: scaleX(1);
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background-color: #111827;
  margin-bottom: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* =============== HERO SLIDER =============== */

.hero {
  background-color: #f3f4f6;
  
}

.hero-slider-wrapper {
  position: relative;
  overflow: hidden;
  height: 800px;
  background: #000;
}

/* SLIDER TRACK */
.hero-slider {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

/* INDIVIDUAL SLIDES */
.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* CONTENT */
.hero-content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 5rem 3rem;
  max-width: 70rem;
  color: #fff;
  z-index: 2;
  margin-left: 4em;
}

.hero-content h1 {
  font-size: 5rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 42rem;
  margin-bottom: 1.4rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

/* ARROWS */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  color: #111;
  font-size: 1.4rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.hero-arrow:hover {
  background: #ffd500;
}

.hero-arrow-prev {
  left: 1rem;
}

.hero-arrow-next {
  right: 1rem;
}

/* DOTS */
.hero-dots {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: 0.2s ease;
}

.hero-dot.active {
  background: #ffd500;
  transform: scale(1.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-slider-wrapper {
    height: 420px;
  }

  .hero-content {
    padding: 1.8rem 1.6rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-actions {
    gap: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-slider-wrapper {
    height: 380px;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .hero-content p {
    font-size: 0.92rem;
  }
}



/* =============== ABOUT =============== */

.about {
  background-color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: stretch;
}

.about-card {
  background-color: #f9fafb;
  border-radius: 18px;
  padding: 2rem 1.8rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.about-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  line-height: 2rem;
}

.about-card p {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 0.7rem;
}

.about-image img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.mission-card {
  background-color: #ffd500;
  border-radius: 18px;
  padding: 2rem 1.7rem;
  color: #111827;
}

.mission-card h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.8rem;
}

.mission-card h4 {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.8rem;
  font-weight: lighter;
}

.mission-card p {
  font-size: 0.96rem;
}

/* =============== SERVICES =============== */

.services {
  background-color: #f5f3ef;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2.2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 2rem 1.6rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.service-dot {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background-color: #ffd500;
  margin-bottom: 0.9rem;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  font-weight: 400;
}

.service-card h3 span {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  font-weight: 900;
}

.service-card p {
  font-size: 0.95rem;
  color: #4b5563;
}

/* =============== PROJECTS =============== */

.projects {
  background-color: #ffffff;
}

.projects-grid {
  display: grid;
  grid-template-areas:
    "large text small1"
    "large small2 small3";
  grid-template-columns: 1.3fr 1.1fr 1fr;
  grid-auto-rows: 220px;
  gap: 1.2rem;
}

.project-large {
  grid-area: large;
}

.project-large img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.project-text {
  grid-area: text;
  background-color: #f9fafb;
  border-radius: 18px;
  padding-top: 1rem;
  padding-right: 1rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.project-text h2 {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
  line-height: 1.8rem;
}

.project-text p {
  font-size: 0.96rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.project-small:nth-of-type(1) {
  grid-area: small1;
}
.project-small:nth-of-type(2) {
  grid-area: small2;
}
.project-small:nth-of-type(3) {
  grid-area: small3;
}

.project-small img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}

/* =============== CTA =============== */

.cta {
  background-color: #f5f3ef;
}

.cta-box {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.cta-box h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.cta-box h2 span {
  color: #ffd500;
}

/* =============== FOOTER =============== */

.footer {
  background-color: #ffd500;
  padding-top: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.3fr;
  gap: 2rem;
  align-items: flex-start;
  padding-bottom: 2rem;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 0.9rem;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-socials a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #111827;
  color: #ffd500;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  text-decoration: none;
}

.footer-links h4,
.footer-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.footer-links a {
  display: block;
  text-decoration: none;
  font-size: 0.9rem;
  color: #111827;
  margin-bottom: 0.15rem;
}

.footer-info p {
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(17, 24, 39, 0.18);
  padding: 0.9rem 0;
  text-align: center;
  font-size: 0.85rem;
}

/* =============== RESPONSIVE =============== */

@media (max-width: 1024px) {
  .hero-content {
    padding: 2.2rem 2.4rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
    grid-template-rows: auto auto;
  }

  .mission-card {
    grid-column: 1 / -1;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .projects-grid {
    grid-template-areas:
      "large large"
      "text text"
      "small1 small2"
      "small3 small3";
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .header-inner {
    gap: 0.75rem;
  }

  .nav {
    position: absolute;
    top: 4.2rem;
    left: 0;
    right: 0;
    padding: 0.75rem 1.5rem 1rem;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.15);
    display: none;
  }

  .nav.nav-open {
    display: flex;
  }

  .btn-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-content {
    position: static;
    background: #111827;
    color: #ffffff;
    padding: 1.7rem 1.5rem 2rem;
  }

  .hero-wrapper {
    border-radius: 0;
  }

  .hero {
    padding-top: 3rem;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .projects-grid {
    grid-template-areas:
      "large"
      "text"
      "small1"
      "small2"
      "small3";
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-box h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-content {
    padding: 1.5rem 1.3rem 1.9rem;
  }

  .about-card,
  .mission-card,
  .service-card,
  .project-text,
  .cta-box {
    padding: 1.6rem 1.4rem;
  }
}



/* =============== ABOUT HERO =============== */

.about-hero {
  background-color: #ffffff;
  padding-top: 4.5rem;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.75rem;
  align-items: center;
}

.about-hero-text h1 {
  font-size: 2.4rem;
  margin-bottom: 0.4rem;
}

.about-hero-subtitle {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 1.1rem;
}

.about-hero-text p {
  font-size: 0.98rem;
  color: #4b5563;
  margin-bottom: 0.7rem;
}

.about-hero-image img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
}

/* =============== PHILOSOPHY / MISSION / VISION =============== */

.about-values {
  background-color: #ffffff;
  padding-top: 2.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 1.2rem;
}

.value-card {
  background-color: #f8f3e9;
  border-radius: 22px;
  padding: 1.8rem 1.6rem;
  font-size: 0.96rem;
  color: #4b5563;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  color: #111827;
}

.value-card-primary {
  background-color: #ffd500;
  color: #111827;
}

/* =============== WHY CHOOSE US =============== */

.about-why {
  background-color: #f5f3ef;
}

.about-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2.7rem;
  align-items: center;
}

.about-why-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-why-text ul {
  list-style: disc;
  margin-left: 1.1rem;
}

.about-why-text li {
  font-size: 0.96rem;
  color: #4b5563;
  margin-bottom: 0.4rem;
}

.about-why-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  
}

/* =============== ABOUT RESPONSIVE =============== */

@media (max-width: 1024px) {
  .about-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-hero-image {
    order: -1;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-why-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero-text h1 {
    font-size: 2rem;
  }

  .about-hero-subtitle {
    font-size: 1.05rem;
  }

  .values-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .value-card,
  .about-why-text,
  .about-why-image img {
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding-top: 3.5rem;
  }

  .about-hero-text h1 {
    font-size: 1.8rem;
  }
}


/* =============== SERVICES PAGE =============== */

.services-heading {
  background-color: #ffffff;
  padding-top: 4.5rem;
  padding-bottom: 1.5rem;
}

.services-heading h1 {
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Layout for rows */

.services-page {
  background-color: #ffffff;
  padding-top: 2rem;
  padding-bottom: 4.5rem;
}

.services-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.services-row:last-of-type {
  margin-bottom: 0;
}

/* Reverse layout for middle row */

.services-row-reverse {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
}

.services-row-reverse .services-text {
  order: 2;
}
.services-row-reverse .services-image {
  order: 1;
}

/* Text styles */

.services-text h2 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.services-text p {
  font-size: 0.96rem;
  color: #4b5563;
  margin-bottom: 1rem;
  max-width: 32rem;
}

.services-text h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.services-text ul {
  list-style: disc;
  margin-left: 1.1rem;
}

.services-text li {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 0.3rem;
}

/* Image styles */

.services-image img {
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
}

/* =============== SERVICES RESPONSIVE =============== */

@media (max-width: 1024px) {
  .services-row,
  .services-row-reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-row-reverse .services-text,
  .services-row-reverse .services-image {
    order: initial;
  }

  .services-heading {
    padding-top: 4rem;
  }
}

@media (max-width: 768px) {
  .services-heading h1 {
    font-size: 2rem;
  }

  .services-row {
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 480px) {
  .services-heading {
    padding-top: 3.5rem;
  }

  .services-heading h1 {
    font-size: 1.8rem;
  }
}


/* =========================
   TEAM PAGE – SECTION ONLY
   ========================= */

/* Constrain width for exact 488 + 20 + 751 layout on desktop */
.team-heading .container,
.team-leadership .container,
.consulting-heading .container,
.consulting-team .container,
.legal-consult .container {
  max-width: 1259px; /* 488 + 20 + 751 */
}

/* ---------- Page title ---------- */

.team-heading {
  padding-top: 4.5rem;
  padding-bottom: 1.5rem;
  text-align: center;
}

.team-heading h1 {
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Leadership / each team member ---------- */

.team-leadership {
  background-color: #ffffff;
}

.team-member {
  margin-bottom: 1.25rem;
}

/* main flex row for each person */
.member-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;           /* gap between image and text */
}

/* reverse order for alternating layout */
.member-row.row-reverse {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}

/* Image block: 488 x 395 on desktop */
.member-photo {
  flex: 0 0 488px;
  height: 395px;
  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* optional slight grayscale for first hero image */
.photo-blue img {
  filter: grayscale(0.1);
}

/* Text card: 751 x 395 on desktop */
.member-content {
  flex: 0 0 751px;
  height: 395px;
  padding: 1.8rem 1.9rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* card backgrounds */
.member-dark {
  background-color: #000000;
  color: #ffffff;
}

.member-yellow {
  background-color: #ffd500;
  color: #111827;
}

.member-light {
  background-color: #f5f5f5;
  color: #111827;
}

/* text styles inside card */
.member-name {
  font-size: 2.5rem;
  margin-bottom: 0.1rem;
}

.highlight-yellow {
  color: #ffd500;
}

.member-role {
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.7rem;
  font-weight: 100;
}

.member-bio {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ---------- Consulting team heading ---------- */

.consulting-heading {
  background-color: #ffffff;
  padding-top: 2rem;
  padding-bottom: 1rem;
  text-align: center;
}

.consulting-heading h2 {
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.consulting-heading h2 span {
  font-weight: 700;
}

/* consulting team list shares .team-member / .member-row styles */
.consulting-team {
  background-color: #ffffff;
}

/* ---------- Legal consultant band ---------- */

.legal-consult {
  background-color: #f8f3e9;
  padding-top: 3rem;
  padding-bottom: 3.2rem;
}

.legal-heading {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

/* flex row for logo + text */
.legal-row {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
}

.legal-logo img {
  max-width: 160px;
}

.legal-text p {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

/* =========================
   RESPONSIVE – TEAM ONLY
   ========================= */

@media (max-width: 1024px) {
  /* allow full width container on tablet/mobile */
  .team-heading .container,
  .team-leadership .container,
  .consulting-heading .container,
  .consulting-team .container,
  .legal-consult .container {
    max-width: 100%;
  }

  /* stack image and text */
  .member-row,
  .member-row.row-reverse {
    flex-direction: column;
  }

  .member-photo,
  .member-content {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
  }

  .member-photo {
    height: 260px; /* nice height on tablet */
  }

  .legal-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .team-heading {
    padding-top: 4rem;
  }

  .team-heading h1 {
    font-size: 2rem;
  }

  .member-content {
    padding: 1.6rem 1.4rem;
  }
}

@media (max-width: 480px) {
  .team-heading {
    padding-top: 3.5rem;
  }

  .team-heading h1 {
    font-size: 1.8rem;
  }

  .member-name {
    font-size: 1.15rem;
  }
}



/* =========================
   CONTACT PAGE ONLY
   ========================= */

/* ---------- Page heading ---------- */

.contact-heading {
  padding-top: 4.5rem;
  padding-bottom: 1.5rem;
  text-align: center;
}

.contact-heading h1 {
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-heading p {
  max-width: 36rem;
  margin: 0.5rem auto 0;
  font-size: 0.98rem;
  color: #4b5563;
}

/* ---------- Main contact layout ---------- */

.contact-main {
  background-color: #ffffff;
  padding-bottom: 3.5rem;
}

.contact-grid {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}

/* Left: info block */

.contact-info {
  flex: 1 1 45%;
}

.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.contact-info p {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 0.6rem;
}

/* small “tags” like USA | Africa | UK */

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.8rem 0 1.2rem;
}

.contact-badge {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background-color: #f9fafb;
}

/* contact details list */

.contact-details {
  margin-top: 0.5rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.7rem;
}

.contact-detail-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
  margin-bottom: 0.1rem;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: #111827;
}

/* Optional subtle note */

.contact-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Right: form card */

.contact-form-wrapper {
  flex: 1 1 55%;
}

.contact-form-card {
  background-color: #f9fafb;
  border-radius: 20px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.contact-form-title {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.contact-form-subtitle {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1.1rem;
}

/* form fields */

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.4rem;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.25rem;
  color: #6b7280;
}

.contact-input,
.contact-textarea {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 0.7rem 0.85rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  background-color: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-textarea {
  border-radius: 18px;
  min-height: 120px;
  resize: vertical;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #fbbf24;
  box-shadow: 0 0 0 1px #facc15;
}

/* submit area */

.contact-actions {
  margin-top: 0.6rem;
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

/* use your global .btn + .btn-primary if you have it;
   otherwise, you can uncomment and adjust below:

.btn-primary {
  background-color: #ffd500;
  color: #111827;
  padding-inline: 1.6rem;
  padding-block: 0.7rem;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.btn-primary:hover {
  filter: brightness(0.96);
}
*/

.contact-meta {
  font-size: 0.8rem;
  color: #6b7280;
}

/* =========================
   RESPONSIVE – CONTACT ONLY
   ========================= */

@media (max-width: 1024px) {
  .contact-grid {
    flex-direction: column;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 1.6rem 1.4rem;
  }
}

@media (max-width: 768px) {
  .contact-heading {
    padding-top: 4rem;
  }

  .contact-heading h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-heading {
    padding-top: 3.5rem;
  }

  .contact-heading h1 {
    font-size: 1.8rem;
  }

  .contact-form-card {
    padding: 1.4rem 1.2rem;
  }
}
