



:root {
  --accent: #ea4a34;
  --accent-dark: #d43e29;
  --navy: #1c2130;
  --dark-bg: #14171f;
  --dark-bg-2: #191d27;
  --blue: #3654d1;
  --blue-light: #4f6fe8;
  --text-dark: #1b1e27;
  --text-muted: #5c6270;
  --text-on-dark: #cfd3de;
  --card-bg: #ffffff;
  --section-tint: #eef2fb;
  --border-soft: #e6e9f2;
  --radius-lg: 16px;
  --radius-md: 3em;
  --radius-sm: 8px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Roboto, sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

.logo-image { width: clamp(110px, 16vw, 150px); height: auto; object-fit: contain; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 5em 16px;
  width: 100%;
}

.container2 {
  max-width: 1320px;
  margin: 0 auto;
  padding: 3em 0em 3em 0em;
  width: 100%;
}

h1, h2, h3, h4 { margin: 0 0 16px; font-weight: 700; color: var(--text-dark); }
p { margin: 0 0 16px; color: var(--text-muted); }

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

/*  Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--blue-light); outline-offset: 2px; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(234, 74, 52, 0.3);
}
.btn-primary:hover { background: var(--accent-dark); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}
.btn-outline-dark:hover { background: var(--text-dark); color: #fff; }

.btn-demo { padding: 12px 22px; font-size: 14px; }
.arrow { font-size: 15px; }

/* Header  */

.site-header {
   background: linear-gradient(158.11deg, #e4ecff 10.77%, #ffeae8d1 98.32%);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.main-nav {
  display: flex;
  gap: 32px;
}
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}


.nav-toggle-wrap {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  z-index: 200;
}
.nav-toggle-checkbox {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  pointer-events: none;
}
.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.header-inner:has(.nav-toggle-checkbox:checked) .nav-toggle .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header-inner:has(.nav-toggle-checkbox:checked) .nav-toggle .bar:nth-child(2) {
  opacity: 0;
}
.header-inner:has(.nav-toggle-checkbox:checked) .nav-toggle .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  display: none;
}
.header-inner:has(.nav-toggle-checkbox:checked) .nav-overlay {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: transparent;
  cursor: default;
}

/* Hero */

.hero {
  background: linear-gradient(158.11deg, #e4ecff 10.77%, #ffeae8d1 98.32%);
  color: #fff;
  padding: 0px 0 65px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 77px;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero h1 {
  color:black;
  font-size: 46px;
  line-height: 1.15;
  margin-bottom: 22px;
  margin-top: 10px;
}
.hero .accent { color: var(--accent); }
.hero-copy p {
  color: black;
  font-size: 15.5px;
  max-width: 560px;
  margin-bottom: 10px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap;margin-top: 3em; }
.btn-outline {
    background: transparent;
    color: #14171f;
    border-color: #ea4a34;
}

.hero-media { display: flex; max-width: 118%;width: 120%; align-items: flex-end; ;
}
.hero-graphic { width: 110%; max-width: 110; height: auto; 
clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);

}

@media (min-width: 993px) {
  .hero-media {
    position: absolute;
    top: 0px;
    left: 55%;
    right: 0;
    bottom: 0;
    width: auto;
    max-width: none;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: visible;
  }
  .hero-graphic {
    width: auto;
    height: 100%;
    max-width: none;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom right;
  }
}






/* Why choose us  */

.why-choose {
  background: var(--dark-bg-2);
  color: #fff;
  
}
.why-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.why-copy h2 { color: #fff; font-size: 30px; line-height: 1.3; }
.why-copy p { color: var(--text-on-dark); }
.placeholder-image {
  background: white;
  border-radius: var(--radius-lg);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.placeholder-image.dark {
  background: linear-gradient(135deg, #1e2333, #2b3355);
}
.about-image { width: 100%; max-width: 457px; height: auto; object-fit: cover; }
.about-media { display: flex; justify-content: flex-end; }
.abouts-image { width: 100%; height: auto; object-fit: cover; border-radius: var(--radius-md); display: block; }
.abouts-media { display: flex; justify-content: center; align-items: center; }

/* Feature cards  */

.features {
  background: rgba(240,247,255,1);;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: 0 10px 30px rgba(20,30,70,0.06);
  border: 1px solid rgba(85 ,132, 241, 1)
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}
.feature-icon img { width: 26px; height: 26px; object-fit: contain; }
.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; margin: 0; }
.feature-card:hover { box-shadow: 0 14px 40px rgba(20,30,70,0.12); transform: translateY(-4px); transition: transform 0.2s ease, box-shadow 0.2s ease; }

/* About */

.about { background: var(--dark-bg); color: #fff; padding: 70px 0 50px; }
.about-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
   border-radius: var(--radius-md);
  border: 1px solid rgba(234, 74, 52, 0.5);
  padding: 2em;
}
.about-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: left ; }

.about-copy h2 { color: #fff; font-size: clamp(24px, 4vw, 30px); }
.about-copy p { color: var(--text-on-dark); font-size: clamp(13.5px, 2vw, 14.5px); line-height: 1.7; }

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.mv-card {
  border: 1px solid rgba(234,74,52,0.5);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  text-align: center;
}
.mv-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 16px;
}
.mv-icon img { width: 28px; height: 28px; object-fit: contain; }
.mv-card h3 { color: var(--accent); font-size: 18px; }
.mv-card p { color: var(--text-on-dark); font-size: 14px; margin: 0; }

/* Services  */

.services { background: rgba(240,247,255,1); }
.section-title { text-align: left; font-size: 36px; color: #3654d1; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 30px 26px;
   border: 1px solid rgba(85 ,132, 241, 1)
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}
.service-icon img { width: 24px; height: 24px; object-fit: contain; }
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { font-size: 14px; margin: 0; }
.service-card:hover { box-shadow: 0 14px 40px rgba(20,30,70,0.12); transform: translateY(-4px); transition: transform 0.2s ease, box-shadow 0.2s ease; }









/* Tools  */

.tools { background: rgba(240,247,255,1); }
.tool-title { text-align: center; font-size: 36px; margin-bottom: 44px; color: var(--accent-dark); }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

 .tool-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border: 1px solid rgba(85, 132, 241, 1);
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}


.tool-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.tool-card h3 { font-size: 18px; margin-bottom: 10px; }
.tool-card p { font-size: 14px; margin: 0; }
.tool-card:hover { box-shadow: 0 14px 40px rgba(20,30,70,0.12); transform: translateY(-4px); transition: transform 0.2s ease, box-shadow 0.2s ease; }
























/*  Process  */

.process { background: var(--dark-bg); color: #fff;  }
.process .eyebrow { color: var(--accent); }
.process-title { color: #fff; font-size: 28px; margin-bottom: 40px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.process-card {
  background: #1c202c;
  border: 1px solid rgba(234,74,52,0.35);
  border-radius: var(--radius-md);
  padding: 26px 20px;
}
.process-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}
.process-card h3 { color: #fff; font-size: 17px; margin-bottom: 8px; }
.process-card p { color: var(--text-on-dark); font-size: 13.5px; margin: 0; }

/*  CTA Banner  */

.cta-banner {
  background: linear-gradient(180deg, #fbe1de, #fceeec);
  padding: 70px 0;
}
.cta-box {
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  text-align: center;
  padding: 50px 60px;
  max-width: 900px;
}
.cta-label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: black;
  margin-bottom: 8px;
}
.cta-box h2 { color: var(--accent); font-size: 30px; }
.cta-box p { max-width: 640px; margin-left: auto; margin-right: auto; font-weight: 800;   }
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 10px;
}
.btn-outline-dark { color: var(--text-dark); border-color: var(--text-dark); }

/* Contact  */

.contact { position: relative; background: #fff; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-copy h2 { font-size: 30px; }
.contact-info-cards {
  display: flex;
  gap: 20px;
  margin: 24px 0;
  flex-wrap: wrap;
}
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--section-tint);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  flex: 1 1 220px;
}
.contact-icon { font-size: 20px; }
.contact-label { font-size: 13px; color: var(--text-muted); }
.contact-value { font-size: 14.5px; font-weight: 600; color: var(--text-dark); }
.business-hours { font-size: 14px; }
.map-wrap { margin-top: 20px; }
.map-placeholder {
  background: linear-gradient(135deg, #d7e6d2, #e9f3e5);
  border-radius: var(--radius-md);
  min-height: 143px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4c6b47;
  font-size: 13px;
  font-weight: 600;
  width: 100%;
      border: 2px solid rgba(85, 132, 241, 1);
}

.contact-form {
  background: var(--section-tint);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.contact-form label {
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.contact-form input,
.contact-form textarea {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  margin-bottom: 18px;
  font-family: inherit;
  resize: vertical;
  background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(54,84,209,0.15);
}
.contact-form input.invalid,
.contact-form textarea.invalid {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(234,74,52,0.12);
}
.btn-send { align-self: flex-start; }
.form-status {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 600;
  min-height: 20px;
}
.form-status.success { color: #1c8a4b; }
.form-status.error { color: var(--accent); }

.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
 
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
 
  z-index: 50;
  transition: transform 0.2s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* Footer  */

.site-footer { background: var(--navy); color: var(--text-on-dark); }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: end;
}
.footer-brand p { font-size: 13.5px; color: var(--text-on-dark); }
.footer-brand .logo-summ { color: var(--accent); }
.footer-brand .logo-sub { color: #fff; }
.social-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-transform: uppercase;
  transition: background 0.2s ease;
}
.social-icons a:hover { background: var(--accent); }

.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 18px; }
.footer-col a, .footer-col p {
  display: block;
  font-size: 13.5px;
  color: var(--text-on-dark);
  margin-bottom: 12px;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: var(--text-on-dark);
}

/*mobile */

@media (max-width: 1200px) {
  .container { padding: 16px 0 14px; }
  .hero h1 { font-size: 38px; }
  .aboutcontent {
    padding: 1em;
  }
}

@media (max-width: 992px) {
  .header-inner { flex-wrap: nowrap; position: relative; gap: 14px; }

  /* Hamburger menu for tablets + mobile */
  .nav-toggle-wrap { display: flex; order: 3; }

  .main-nav {
    order: 4;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgb(252, 242, 242);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 12px 20px -12px rgba(0, 0, 0, 0.15);
    z-index: 100;

    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.35s ease;
  }
  .header-inner:has(.nav-toggle-checkbox:checked) .main-nav {
    max-height: 500px;
    visibility: visible;
  }
  .main-nav .nav-link {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-soft);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .header-inner:has(.nav-toggle-checkbox:checked) .main-nav .nav-link {
    opacity: 1;
    transform: translateY(0);
  }
  .header-inner:has(.nav-toggle-checkbox:checked) .main-nav .nav-link:nth-child(1) { transition-delay: 0.05s; }
  .header-inner:has(.nav-toggle-checkbox:checked) .main-nav .nav-link:nth-child(2) { transition-delay: 0.1s; }
  .header-inner:has(.nav-toggle-checkbox:checked) .main-nav .nav-link:nth-child(3) { transition-delay: 0.15s; }
  .header-inner:has(.nav-toggle-checkbox:checked) .main-nav .nav-link:nth-child(4) { transition-delay: 0.2s; }
  .header-inner:has(.nav-toggle-checkbox:checked) .main-nav .nav-link:nth-child(5) { transition-delay: 0.25s; }

  .hero-inner,
  .why-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .about-inner {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .hero-media {
    width: 100%;
    max-width: 100%;
  }
  .hero-graphic {
    width: 100%;
    max-width: 100%;
    clip-path: none;
  }
  
  .why-media {
    display: flex;
    justify-content: center;
  }
  .about-media {
    justify-content: center;
  }
  .features-grid,
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { padding: 16px 0 10px; }
  .hero { padding: 0px 0 60px; }
  .hero h1 { font-size: 30px; }
  .tools-grid ,
  .features-grid,
  .services-grid,
  .process-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 34px 22px; }
  .footer-inner { grid-template-columns: 1fr; }
  .btn-demo { display: none; }

  .aboutcontent {
    padding: 1em;
  }
}

@media (max-width: 420px) {
  .container { padding: 16px 6px 8px;}
  .hero h1 { font-size: 26px; }
  .hero-buttons { gap: 10px; }
  .hero-buttons .btn { padding: 12px 18px; font-size: 14px; }
  .aboutcontent {
    padding: 1em;
  }
}
/* Mobile left/right spacing fix */

@media (max-width: 640px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
  .container2 {
    width: 100%;
    max-width: 100%;
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  section {
    overflow-x: hidden;
  }

  .hero-inner,
  .why-inner,
  .about-inner,
  .abouts-inner,
  .contact-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-copy,
  .why-copy,
  .about-copy,
  .abouts-copy {
    width: 100%;
  }

  .hero h1,
  .why-copy h2,
  .about-copy h2,
  .abouts-copy h2 {
    font-size: 28px;
    line-height: 1.35;
  }

  .hero-copy p,
  .why-copy p,
  .about-copy p,
  .abouts-copy p {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-media,
  .why-media,
  .about-media,
  .abouts-media {
    width: 100%;
    max-width: 100%;
  }

  .hero-graphic,
  .about-image,
  .abouts-image {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  .container2 {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}









.eyebrow-light { color: rgba(255,255,255,0.85); }

/*  Page hero  */
.life-hero {
  background:
    linear-gradient(180deg, rgba(10,14,30,0.72), rgba(10,14,30,0.62)),
    radial-gradient(1200px 500px at 15% -10%, rgba(234,74,52,0.35), transparent 60%),
    radial-gradient(1200px 500px at 100% 0%, rgba(54,84,209,0.45), transparent 60%),
    url('images/abstract-background-with-low-poly-design_1048-8478.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 0 80px;
  text-align: center;
}
.life-hero-inner { max-width: 720px; margin: 0 auto; }
.life-hero h1 {
  color: #fff;
  font-size: clamp(30px, 5vw, 48px);
  margin-bottom: 18px;
}
.life-hero .accent { color: var(--accent); }
.life-hero p {
  color: var(--text-on-dark);
  font-size: 16px;
  margin: 0;
}


.team, .memories { padding: 80px 0; }
.memories { background: var(--section-tint); }
.team .section-title,
.memories .section-title { text-align: center; margin-bottom: 10px; }
.team .eyebrow,
.memories .eyebrow { display: block; text-align: center; }
.section-sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 15px;
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.member-card {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(20,30,70,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(20,30,70,0.14);
}
.member-avatar {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.avatar-1 { background: linear-gradient(135deg, #ea4a34, #d43e29); }
.avatar-2 { background: linear-gradient(135deg, #3654d1, #4f6fe8); }
.avatar-3 { background: linear-gradient(135deg, #1c2130, #3654d1); }
.avatar-4 { background: linear-gradient(135deg, #ea4a34, #4f6fe8); }
.avatar-5 { background: linear-gradient(135deg, #4f6fe8, #1c2130); }
.avatar-6 { background: linear-gradient(135deg, #d43e29, #3654d1); }
.avatar-7 { background: linear-gradient(135deg, #3654d1, #ea4a34); }
.avatar-8 { background: linear-gradient(135deg, #1c2130, #ea4a34); }

.member-card h3 { font-size: 17px; margin-bottom: 4px; }
.member-role {
  display: block;
  color: var(--accent);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.member-quote {
  font-size: 13.5px;
  font-style: italic;
  margin: 0;
  color: var(--text-muted);
}

.team-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin: 40px auto 0;
  max-width: 560px;
}

/*  Memories grid */
.memories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 22px;
}
.memory-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(20,30,70,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.memory-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 44px rgba(20,30,70,0.16);
}
.memory-tall { grid-row: span 2; }
.memory-media {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
}
.memory-grad-1 { background: linear-gradient(135deg, #ea4a34, #4f6fe8); }
.memory-grad-2 { background: linear-gradient(135deg, #3654d1, #1c2130); }
.memory-grad-3 { background: linear-gradient(135deg, #d43e29, #3654d1); }
.memory-grad-4 { background: linear-gradient(135deg, #1c2130, #ea4a34); }
.memory-grad-5 { background: linear-gradient(135deg, #4f6fe8, #ea4a34); }
.memory-grad-6 { background: linear-gradient(135deg, #ea4a34, #1c2130); }

.memory-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.55));
}

/*  Lightbox  */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 18, 0.82);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-content {
  width: 100%;
  max-width: 560px;
  background: var(--dark-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
}
.lightbox-media {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}
.lightbox-caption {
  padding: 18px 20px;
  color: #fff;
  font-weight: 600;
  margin: 0;
}
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.24); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .memories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .life-hero { padding: 70px 0 60px; }
  .team, .memories { padding: 56px 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .member-card { padding: 24px 14px; }
  .memories-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .memory-tall { grid-row: span 1; }
  .lightbox-media { height: 220px; font-size: 56px; }
}
@media (max-width: 420px) {
  .team-grid { grid-template-columns: 1fr; }
}






/* about page  */

.abouts { background: #fff; color: var(--dark-bg); padding: 70px 0 50px; }
.abouts-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(234, 74, 52, 0.5);
}
.abouts-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: left ; }

.abouts-copy h2 { color: black; font-size: clamp(24px, 4vw, 30px); }
.abouts-copy p { color: black; font-size: clamp(13.5px, 2vw, 14.5px); line-height: 1.7; }

.mission-visions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.mvs-card {
  border: 1px solid rgba(234,74,52,0.5);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  text-align: center;
}
.mvs-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 16px;
}
.mvs-icon img { width: 28px; height: 28px; object-fit: contain; }
.mvs-card h3 { color: var(--accent); font-size: 18px; }
.mvs-card p { color: black; font-size: 14px; margin: 0; }


@media (max-width: 900px) {
  .abouts-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

}
@media (max-width: 640px) {
  .abouts { padding: 50px 0 40px; }
  .abouts-inner { padding: 22px; margin-bottom: 40px; }
  .mission-visions-grid { grid-template-columns: 1fr; gap: 18px; }
  .mvs-card { padding: 26px 20px; }
}













.gallery-tabs{
    display:flex;
    justify-content:center;
    flex-wrap: wrap;
    gap:25px;
    margin:40px 0;
    border-bottom:1px solid #ddd;
}


.tab-radio {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.tab-btn{
    background:none;
    border:none;
    padding:12px 0;
    font-size:18px;
    font-weight:600;
    color:var(--accent-dark);
    cursor:pointer;
    position:relative;
    transition:0.3s;
}


.tab-btn:hover{
    color:var(--accent-dark);
}


.tab-radio:checked + .tab-btn{
    color:var(--accent-dark);
}


.tab-radio:checked + .tab-btn::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-2px;
    width:100%;
    height:3px;
    background:var(--accent-dark);
    border-radius:5px;
}

.gallery-section{
    display:none;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:25px;
}

/* Show the gallery section matching the checked tab */
.team:has(#tab-activities:checked) .gallery-section.activities,
.team:has(#tab-celebrations:checked) .gallery-section.celebrations,
.team:has(#tab-events:checked) .gallery-section.events,
.team:has(#tab-meetups:checked) .gallery-section.meetups {
    display:grid;
}

.gallery-card{
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.gallery-card img{
    width:100%;
    height:420px;
    object-fit:cover;
    cursor:pointer;
    transition:.4s;
}

.gallery-card img:hover{
    transform:scale(1.05);
}


.modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.modal:target{
    display:flex;
}

.modal img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}

.close{
    position:absolute;
    top:20px;
    right:35px;
    font-size:40px;
    color:#fff;
    cursor:pointer;
    text-decoration: none;
    line-height: 1;
}
/* 
   Sub-page hero banner (About / Services / Contact)
   Full-width background image + breadcrumb, per reference design
 */
.page-hero {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 28, 0.55), rgba(8, 12, 28, 0.75));
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-breadcrumb {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0;
}
.page-hero-breadcrumb a { color: #fff; text-decoration: none; transition: opacity 0.15s ease; }
.page-hero-breadcrumb a:hover { opacity: 0.75; text-decoration: underline; }
.page-hero-breadcrumb .sep { margin: 0 12px; opacity: 0.55; }

@media (max-width: 640px) {
  .page-hero { min-height: 150px; }
  .page-hero-breadcrumb { font-size: 14px; }
  .page-hero-breadcrumb .sep { margin: 0 8px; }
}

/* 
   About page — "Who We Are" section (stats + image + copy)
 */




/* 
   Contact page redesign — cards, form card, live map
 */
.contact-page { padding: 70px 0 80px; background: #fff; }
.contact-page .section-heading { max-width: 620px; margin: 0 auto 50px; text-align: center; }
.contact-page .section-heading h2 { font-size: clamp(26px, 4vw, 34px); margin: 6px 0 14px; }
.contact-page .section-heading p { font-size: 14.5px; color: var(--text-muted); margin: 0; }

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(20, 30, 70, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(20, 30, 70, 0.12); }
.contact-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.contact-card-label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.contact-card-value {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  word-break: break-word;
}
a.contact-card-value:hover { color: var(--accent); }

.contact-form-card {
  max-width: 720px;
  margin: 0 auto 56px;
  background: var(--section-tint);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.contact-form-card h3 { font-size: 22px; margin-bottom: 6px; }
.contact-form-card .business-hours { margin-bottom: 24px; color: var(--text-muted); }
.contact-form-card .contact-form { background: transparent; padding: 0; border-radius: 0; }

.live-map-wrap {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(20, 30, 70, 0.08);
  border: 1px solid var(--border-soft);
}
.live-map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .contact-cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .contact-cards-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 26px; }
  .live-map-wrap iframe { height: 280px; }
}

/* 
   Homepage — About Us button reposition/resize (responsive)
*/
.about-buttons { margin-top: 28px; }
.about-buttons .btn {
  padding: 10px 24px;
  font-size: 13px;
}
@media (max-width: 640px) {
  .about-buttons { margin-top: 22px; width: 100%; }
  .about-buttons .btn {
    width: 50%;
    justify-content: center;
    padding: 10px 20px;
    font-size: 15px;
  }
}


.accent-text { color: var(--accent); }

/* 
   Innovation / feature cards section (dark background + cards)
   Used on About.html, styled after reference design
 */
.innovation-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(10, 14, 26, 0.9), rgba(10, 14, 26, 0.94)),
    url('images/bgover.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 90px;
  color: #fff;
  margin-top: 70px;
      margin-bottom: 80px
}
.innovation-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 50px;
}
.innovation-intro { max-width: 560px; }
.innovation-intro .eyebrow { color:var(--accent); display: block; }
.innovation-intro h2 {
  color: #fff;
  font-size: clamp(24px, 4vw, 32px);
  margin: 10px 0 0;
  line-height: 1.25;
}
.innovation-desc {
  max-width: 420px;
  color: var(--text-on-dark);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

.innovation-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.innovation-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: transform 0.2s ease;
}
.innovation-card.highlight {
  background: #fff;
  transform: translateY(-20px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
}
.innovation-card.highlight h3,
.innovation-card.highlight p { color: var(--text-dark); }
.innovation-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
}
.innovation-card.highlight .innovation-icon { background: var(--accent); color: #fff; }
.innovation-card h3 { font-size: 19px; margin-bottom: 12px; color: #fff; }
.innovation-card p { font-size: 14px; line-height: 1.75; color: var(--text-on-dark); margin: 0; }

@media (max-width: 992px) {
  .innovation-cards { grid-template-columns: 1fr; }
  .innovation-card.highlight { transform: none; }
  .innovation-top { flex-direction: column; }
}
@media (max-width: 640px) {
  .innovation-section { padding: 60px 0 70px; margin-top: 50px; }
  .innovation-card { padding: 26px 22px; }
}

.service-link {
  color: #ffffff;
    background: #3654d1;
    padding: 1em;
    border-radius: 1em;
}


.footer-contact-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(234, 74, 52, 0.16);
  border: 1px solid rgba(234, 74, 52, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

/* Footer Corrected */

.site-footer {
  background: var(--navy);
  color: var(--text-on-dark);
  padding: 60px 0 0;
}

.site-footer .container {
  padding-top: 0;
  padding-bottom: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1.4fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  max-width: 160px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 13.5px;
  color: var(--text-on-dark);
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 13.5px;
  color: var(--text-on-dark);
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-col a:hover {
  color: var(--accent);
}

.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.social-icons a:hover {
  background: var(--accent);
}

.footer-contact-item {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px !important;
}

.footer-contact-item span:last-child {
  display: block;
}

.footer-contact-item strong {
  display: block;
  color: #fff;
  font-size: 13.5px;
  margin-bottom: 4px;
}

.footer-contact-item a {
  margin-bottom: 0;
  word-break: break-word;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(234, 74, 52, 0.16);
  border: 1px solid rgba(234, 74, 52, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: var(--text-on-dark);
}

/* Tablet */
@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .site-footer {
    padding-top: 45px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand p {
    max-width: 100%;
  }
}.social-icons a svg {
  width: 17px;
  height: 17px;
  fill: #ffffff;
}

.social-icons a:hover svg {
  fill: #ffffff;


 /* Working robotic background animation */

/* Working robotic background animation */

.process {
  position: relative !important;
  overflow: hidden !important;
  background: #14171f !important;
}

.process .container {
  position: relative;
  z-index: 2;
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 45px 45px;
  animation: moveGrid 8s linear infinite;
  z-index: 0;
}

.robot-animation {
  position: absolute;
  right: 8%;
  top: 50%;
  width: 180px;
  height: 180px;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.45;
  pointer-events: none;
  animation: robotFloat 3s ease-in-out infinite;
}

.robot-animation::before {
  content: "🤖";
  position: absolute;
  inset: 0;
  font-size: 150px;
  line-height: 180px;
  text-align: center;
  filter: drop-shadow(0 0 25px #ea4a34);
  z-index: 2;
}

.robot-animation::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(234,74,52,0.35), transparent 65%);
  border-radius: 50%;
  animation: robotGlow 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes robotFloat {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
  }

  50% {
    transform: translateY(-60%) translateX(-12px);
  }
}

@keyframes robotGlow {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

@keyframes moveGrid {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 45px 45px;
  }
}

.process-card {
  position: relative;
  z-index: 3;
}

@media (max-width: 640px) {
  .robot-animation {
    right: -40px;
    top: 22%;
    width: 120px;
    height: 120px;
    opacity: 0.18;
  }

  .robot-animation::before {
    font-size: 100px;
    line-height: 120px;
  }
}
}

.contact-page {
  padding: 70px 0 80px;
  background: #ffffff;
  position: relative;
}

.contact-page .section-heading {
  max-width: 680px;
  margin: 0 auto 55px;
  text-align: center;
}

.contact-page .section-heading h2 {
  font-size: clamp(28px, 4vw, 38px);
  margin: 8px 0 14px;
  color: var(--text-dark);
}

.contact-page .section-heading p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 60px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  padding: 38px 24px;
  text-align: center;
  box-shadow: 0 14px 35px rgba(20, 30, 70, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(20, 30, 70, 0.14);
}

.contact-card-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.contact-card-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.contact-card-label {
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.contact-card-value {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #000000;
  word-break: break-word;
}

a.contact-card-value:hover {
  color: var(--accent);
}

.contact-form-card {
  max-width: 760px;
  margin: 0 auto 60px;
  background: var(--section-tint);
  border-radius: 18px;
  padding: 44px 48px;
}

.contact-form-card h3 {
  font-size: 26px;
  color: #000000;
  margin-bottom: 10px;
}

.contact-form-card .business-hours {
  margin-bottom: 28px;
  color: var(--text-muted);
  font-size: 15px;
}

.contact-form {
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 13px 15px;
  font-size: 14px;
  font-family: inherit;
  background: #ffffff;
  margin-bottom: 18px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(234, 74, 52, 0.12);
}

.btn-send {
  margin-top: 4px;
}

.form-status {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.live-map-wrap {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: 0 14px 35px rgba(20, 30, 70, 0.08);
}

.live-map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.whatsapp-fab {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 56px;
  height: 56px;
  object-fit: contain;
  z-index: 99;
  transition: transform 0.2s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-form-card {
    padding: 34px 28px;
  }
}

@media (max-width: 640px) {
  .contact-page {
    padding: 50px 0 60px;
  }

  .contact-card {
    padding: 32px 18px;
  }

  .contact-card-value {
    font-size: 15px;
  }

  .contact-form-card {
    padding: 28px 20px;
  }

  .live-map-wrap iframe {
    height: 280px;
  }

  .whatsapp-fab {
    width: 50px;
    height: 50px;
    right: 18px;
    bottom: 18px;
  }
}