/* =========================================================
   KEERTHI CHARITABLE TRUST — starter site stylesheet
   Design tokens
   ========================================================= */
:root {
  --cream: #FAF6EE;
  --white: #FFFFFF;
  --navy: #1B2A4A;
  --navy-deep: #12213D;
  --gold: #B98D2F;
  --green: #4C7A3D;
  --ink: black;
  --ink-soft: black;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, Segoe UI, sans-serif;

  --radius: 16px;
  --radius-sm: 9px;
  --shadow: 0 14px 34px -16px rgba(27, 42, 74, 0.25);
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 18px;
}

button {
  font: inherit;
  cursor: pointer;
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  fill: none;
  stroke: currentColor;
  vertical-align: -0.15em;
}

.icon.filled {
  fill: currentColor;
  stroke: none;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 .5em;
  font-weight: 700;
  line-height: 1.18;
}

h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
  font-size: 1.25rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--green);
}

.care-divider {
  width: 110px;
  height: 22px;
  color: var(--gold);
  margin: .6em 0 1.2em;
}

.section-head {
  max-width: 660px;
  margin-bottom: 2.6rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .care-divider {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .9em 1.7em;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -10px rgba(185, 141, 47, .55);
}

.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .15);
}

.btn .icon {
  width: 1.05em;
  height: 1.05em;
}

/* =========================================================
   Header / Nav
   ========================================================= */
.topbar {
  background: var(--navy-deep);
  color: #CBD3E0;
  font-size: 1rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-links .icon {
  color: var(--gold);
}

/*==================================================
  HEADER
==================================================*/

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 150px;
  gap: 30px;
}

/* Logo */

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: auto;
  height: 150px;
  display: block;
}

/* Menu */

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  margin: 0;
  padding: 0;
  flex: 1;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: #1b2a4a;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  position: relative;
  padding: 8px 0;
  transition: .3s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #0c8b53;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: .3s;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

/* ISO */

.nav-cta {
  flex-shrink: 0;
}

.nav-cta img {
  height: 150px;
  width: auto;
  display: block;
}

/* Hamburger */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle .icon {
  width: 32px;
  height: 32px;
  color: #1b2a4a;
}

/*============================
Mobile
============================*/

@media(max-width:991px) {

  .nav {

    height: 80px;

  }

  .brand img {

    height: 55px;

  }

  .nav-cta {

    display: none;

  }

  .nav-toggle {

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;

  }

  .nav-links {

    position: fixed;

    top: 0;
    right: -100%;

    width: 280px;
    height: 100vh;

    background: #fff;

    flex-direction: column;

    justify-content: flex-start;
    align-items: flex-start;

    padding: 100px 30px;

    gap: 25px;

    transition: right .35s ease;

    box-shadow: -10px 0 30px rgba(0, 0, 0, .15);

    z-index: 1000;

  }

  .nav-links.open {

    right: 0;

  }

  .nav-links li {

    width: 100%;

  }

  .nav-links a {

    display: block;
    width: 100%;
    font-size: 18px;

  }

}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  padding: 60px 0 88px;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

/* Initial State */
.hero-copy {
  opacity: 0;
  transform: translateX(-60px);
  animation: fadeLeft 1s ease forwards;
}

.hero-visual {
  opacity: 0;
  transform: translateX(60px) scale(.9);
  animation: fadeRight 1.2s ease forwards;
  animation-delay: .3s;
}

/* Text Animation */
.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .lead,
.hero-actions,
.hero-stats {
  opacity: 0;
  transform: translateY(25px);
}

.hero-copy .eyebrow {
  animation: fadeUp .7s ease forwards;
  animation-delay: .2s;
}

.hero-copy h1 {
  animation: fadeUp .7s ease forwards;
  animation-delay: .4s;
}

.hero-copy .lead {
  animation: fadeUp .7s ease forwards;
  animation-delay: .6s;
}

.hero-actions {
  animation: fadeUp .7s ease forwards;
  animation-delay: .8s;
}

.hero-stats {
  animation: fadeUp .7s ease forwards;
  animation-delay: 1s;
}

/* Existing Styles */

.hero-copy .eyebrow {
  margin-bottom: .8em;
  display: inline-block;
}

.hero-copy p.lead {
  font-size: 1.25rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 1.6em;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 2.4em;
  flex-wrap: wrap;
}

.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
}

.hero-stats div span {
  font-size: 1.15rem;
  color: var(--ink-soft);
}

.hero-visual img {
  width: 100%;
  animation: floatImage 4s ease-in-out infinite;
}

/* ===========================
   Keyframes
=========================== */

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(60px) scale(.9);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatImage {
  0% {
    transform: translateY(0px);
  }

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

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

/* ===========================
   Responsive
=========================== */

@media (max-width:960px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy p.lead {
    margin: auto;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    max-width: 320px;
    margin: 0 auto 30px;
  }
}

/*==================================================
 Registration Strip - Modern
==================================================*/

.reg-strip {
  background: linear-gradient(135deg, #0d2d52, #123f73);
  padding: 70px 0;
}

.reg-strip .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.reg-card {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: .4s ease;
  position: relative;
  overflow: hidden;
}

.reg-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .15),
      transparent);
  transition: .7s;
}

.reg-card:hover::before {
  left: 100%;
}

.reg-card:hover {
  transform: translateY(-10px);
  border-color: #f4c542;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.reg-icon {
  width: 70px;
  height: 70px;
  margin: auto auto 20px;
  border-radius: 50%;
  background: #f4c542;
  color: #0d2d52;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(244, 197, 66, .4);
}

.reg-card strong {
  display: block;
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}

.reg-card span {
  color: #d9e3ef;
  font-size: 15px;
  line-height: 1.6;
}

/* Mobile */

@media(max-width:768px) {

  .reg-strip {
    padding: 50px 0;
  }

  .reg-card {
    padding: 28px 20px;
  }

  .reg-icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }

  .reg-card strong {
    font-size: 20px;
  }

}

/*==================================================
  Our Services - Modern Gradient Cards
==================================================*/

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 35px 28px;
  color: #fff;
  transition: .4s ease;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

/* Different Gradient for each card */

.service-card:nth-child(1) {
  background: linear-gradient(135deg, #0F9B8E, #38EF7D);
}

.service-card:nth-child(2) {
  background: linear-gradient(135deg, #FF9966, #FF5E62);
}

.service-card:nth-child(3) {
  background: linear-gradient(135deg, #667EEA, #764BA2);
}

.service-card:nth-child(4) {
  background: linear-gradient(135deg, #11998E, #38EF7D);
}

.service-card:nth-child(5) {
  background: linear-gradient(135deg, #FC6076, #FF9A44);
}

.service-card:nth-child(6) {
  background: linear-gradient(135deg, #396AFc, #2948ff);
}

/* Glow Circle */

.service-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  top: -70px;
  right: -70px;
  transition: .5s;
}

.service-card:hover::before {
  transform: scale(1.4);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, .25);
}

/* Icon */

.icon-badge {
  width: 75px;
  height: 75px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.icon-badge svg {
  width: 38px;
  height: 38px;
  fill: #fff;
}

/* Heading */

.service-card h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #fff;
}

/* Paragraph */

.service-card p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .92);
  margin: 0;
}

/* Animation */

.service-card {
  opacity: 0;
  transform: translateY(40px);
  animation: serviceFade .8s forwards;
}

.service-card:nth-child(1) {
  animation-delay: .1s;
}

.service-card:nth-child(2) {
  animation-delay: .2s;
}

.service-card:nth-child(3) {
  animation-delay: .3s;
}

.service-card:nth-child(4) {
  animation-delay: .4s;
}

.service-card:nth-child(5) {
  animation-delay: .5s;
}

.service-card:nth-child(6) {
  animation-delay: .6s;
}

@keyframes serviceFade {

  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

/* Responsive */

@media(max-width:768px) {

  .services-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-card {
    padding: 30px 24px;
  }

  .service-card h3 {
    font-size: 22px;
  }

  .icon-badge {
    width: 65px;
    height: 65px;
  }

  .icon-badge svg {
    width: 32px;
    height: 32px;
  }

}

/*==================================================
   SERVICE DETAILS
==================================================*/

.service-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  padding: 30px 0;
}

.service-detail>div {
  flex: 1;
}

/* Reverse Layout */

.service-detail.reverse {
  flex-direction: row-reverse;
}

/*----------------------------------
  Content
----------------------------------*/

.service-content h2 {
  font-size: 42px;
  color: var(--navy);
  margin: 20px 0;
  line-height: 1.2;
}

.service-content p {
  font-size: 17px;
  line-height: 1.9;
  color: black;
  margin-bottom: 30px;
}

/*----------------------------------
  Icon Badge
----------------------------------*/

.service-content .icon-badge {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;

  background: linear-gradient(135deg, #FFD54F, #FFB300);

  box-shadow: 0 12px 30px rgba(255, 193, 7, .35);

  margin-bottom: 20px;

  transition: .4s;
}

.service-content .icon-badge:hover {

  transform: rotate(10deg) scale(1.08);

}

.service-content .icon {

  width: 36px;
  height: 36px;
  color: var(--navy);

}

/*----------------------------------
  Image
----------------------------------*/

.service-media {

  position: relative;
  overflow: hidden;

  border-radius: 22px;

  height: 430px;

  box-shadow: 0 20px 45px rgba(0, 0, 0, .15);

}

.service-media img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: .6s;

}

.service-media:hover img {

  transform: scale(1.08);

}

/*----------------------------------
  Button
----------------------------------*/

.service-content .btn {

  margin-top: 10px;

}

/*----------------------------------
  Animation
----------------------------------*/

.service-detail {

  opacity: 0;
  transform: translateY(60px);

  animation: fadeService 1s ease forwards;

}

@keyframes fadeService {

  from {

    opacity: 0;
    transform: translateY(60px);

  }

  to {

    opacity: 1;
    transform: translateY(0);

  }

}

/*----------------------------------
  Responsive
----------------------------------*/

@media(max-width:992px) {

  .service-detail,
  .service-detail.reverse {

    flex-direction: column;

    gap: 35px;

    text-align: center;

  }

  .service-content {

    order: 2;

  }

  .service-media {

    order: 1;

    width: 100%;

    height: 350px;

  }

  .service-content h2 {

    font-size: 34px;

  }

  .service-content p {

    font-size: 16px;

  }

  .service-content .btn {

    margin: auto;

  }

  .service-content .icon-badge {

    margin: 0 auto 20px;

  }

}

@media(max-width:768px) {

  .service-media {

    height: 280px;

  }

  .service-content h2 {

    font-size: 28px;

  }

  .service-content p {

    font-size: 15px;

    line-height: 1.8;

  }

}

@media(max-width:480px) {

  .service-detail {

    gap: 25px;

  }

  .service-media {

    height: 230px;

    border-radius: 18px;

  }

  .service-content h2 {

    font-size: 24px;

  }

  .service-content p {

    font-size: 15px;

  }

  .service-content .icon-badge {

    width: 65px;
    height: 65px;

  }

  .service-content .icon {

    width: 30px;
    height: 30px;

  }

}

/* About / split content */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split.reverse .split-media {
  order: 2;
}

.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.checklist li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.checklist .icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex: none;
  margin-top: 2px;
}

@media (max-width:960px) {

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media {
    order: 0;
  }
}

/* Value / mission grid */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.value-card .icon {
  width: 32px;
  height: 32px;
  color: var(--green);
  margin-bottom: 14px;
}

@media (max-width:960px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
}

/*==========================
    Team Section
==========================*/

.team-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 50px;
}

.team-image {
  flex: 0 0 380px;
}

.team-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
  transition: .4s;
}

.team-image img:hover {
  transform: scale(1.03);
}

.team-content {
  flex: 1;
}

.team-member {
  margin-bottom: 35px;
}

.team-member h3 {
  font-size: 34px;
  color: var(--navy);
  margin-bottom: 8px;
}

.team-member .role {
  display: inline-block;
  background: #f4c542;
  color: #1f2d3d;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
}

.team-member p {
  font-size: 17px;
  line-height: 1.8;
  color: black;
  margin-bottom: 20px;
}

.phone-btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--navy);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: .3s;
}

.phone-btn:hover {
  background: #f4c542;
  color: #000;
}

.team-content hr {
  border: none;
  height: 1px;
  background: #ddd;
  margin: 35px 0;
}

/* Responsive */

@media(max-width:992px) {

  .team-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .team-image {
    max-width: 380px;
  }

}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.gallery-grid img {
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .3s ease;
  height: 150%
}

.gallery-grid a:hover img {
  transform: scale(1.05);
}

.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(18, 33, 61, .78), transparent);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}

.gallery-grid figure.wide {
  grid-column: span 2;
}

@media (max-width:760px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid figure.wide {
    grid-column: span 2;
  }
}

@media (max-width:520px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid figure.wide {
    grid-column: span 1;
  }
}

/* Impact stats */
.impact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.impact-strip div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--navy);
}

.impact-strip div span {
  font-size: 1rem;
  color: var(--ink-soft);
  letter-spacing: .02em;
}

@media (max-width:760px) {
  .impact-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* CTA band */
.cta-band {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 52px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 65px;
  margin-bottom: 65px;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: .25em;
}

.cta-band p {
  color: #C7CEDC;
  margin: 0;
}

@media (max-width:760px) {
  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 40px 26px;
  }
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.contact-card .icon {
  width: 26px;
  height: 26px;
  color: var(--gold);
  flex: none;
}

.contact-card h4 {
  margin-bottom: .2em;
  font-size: 1rem;
}

.contact-card p {
  margin: 0;
  font-size: 1rem;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

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

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .85em 1em;
  border-radius: var(--radius-sm);
  border: 1.5px solid #E3DAC4;
  font: inherit;
  background: var(--cream);
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.form-note {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-top: 10px;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 26px;
}

.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

@media (max-width:960px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Page hero */
.page-hero {
  background: var(--white);
  padding: 54px 0;
  text-align: center;
  border-bottom: 1px solid rgba(27, 42, 74, .06);
}

.page-hero .eyebrow {
  margin-bottom: .5em;
}

.breadcrumb {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-top: .6em;
}

.breadcrumb a {
  color: var(--green);
  font-weight: 700;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: #C7CEDC;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand p {
  color: #A9B2C4;
  font-size: 1.25rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}

.footer-social a:hover {
  background: var(--gold);
}

.footer-social .icon {
  width: 17px;
  height: 17px;
  color: var(--white);
}

.site-footer h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 1.1em;
}

.site-footer ul li {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.site-footer ul li a:hover {
  color: var(--white);
}

.footer-address li {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #A9B2C4;
}

.footer-address .icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex: none;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 0;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #8D97AC;
}

.footer-bottom a {
  color: #C7CEDC;
  font-weight: 700;
}

@media (max-width:960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Whatsapp float button */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, .4);
}

.whatsapp-float .icon {
  width: 28px;
  height: 28px;
  color: var(--white);
}

/* Utility */
.mt-0 {
  margin-top: 0;
}

.text-center {
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/*==============================
      Video Section
==============================*/

.video-section {
  background: #f8fafc;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.video-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
  transition: .35s;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
}

.video-card video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.video-content {
  padding: 22px;
}

.video-content h3 {
  margin: 0 0 10px;
  color: #1b2a4a;
  font-size: 22px;
}

.video-content p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Tablet */

@media(max-width:992px) {

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* Mobile */

@media(max-width:768px) {

  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-card video {
    height: 220px;
  }

}

.video-card video{
    width:100%;
    height:400px;
    object-fit:cover;
    border-radius:15px 15px 0 0;
}