/* =========================================================
   DEEPAM TRUST
   Main Stylesheet
========================================================= */
/* =========================================================
   RESET
========================================================= */


:root{
  --text-primary:#111111;
  --text-secondary:#333333;
  --text-muted:#666666;
  --white:#FFFFFF;
  --black:#111111;
  --primary:#C11923;
  --primary-dark:#8F1018;
  --primary-light:#F9E6E7;
  --secondary:#6F151B;
  --secondary-light:#FBEDEE;
  --background:#FFFFFF;
  --background-soft:#FAF8F5;
  --background-light:#FFF7F7;
  --border:rgba(193,25,35,0.14);
  --border-light:#EDE1E2;
  --accent:#C11923;
  --accent-light:#F9E6E7;
  --radius:24px;
  --shadow-sm:0 6px 20px rgba(193,25,35,0.06);
  --shadow-md:0 14px 40px rgba(193,25,35,0.10);
  --shadow-lg:0 24px 70px rgba(193,25,35,0.14);
  --font-head:'Manrope', sans-serif;
  --font-body:'Inter', sans-serif;
}

/* ==========================================================================
   0. SHARED / RESET (scoped to header + footer elements only)
   ========================================================================== */
.topbar, .topbar *,
#site-header, #site-header *,
.mobile-nav, .mobile-nav *,
footer, footer *{
  box-sizing:border-box;
  font-family:var(--font-body);
}

.site-fixed{
  position:sticky;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  width:100%;
}

/* ==========================================================================
   1. TOP CONTACT BAR
   ========================================================================== */
.topbar{
  background:linear-gradient(100deg, var(--secondary) 0%, var(--primary-dark) 55%, var(--primary) 130%);
  color:var(--white);
  padding:9px 0;
  font-size:13px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.topbar-inner{
  max-width:1240px;
  margin:0 auto;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.topbar-contacts{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}

.topbar-contacts a{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:var(--white);
  text-decoration:none;
  opacity:0.92;
  font-weight:500;
  letter-spacing:0.1px;
  transition:opacity .2s ease;
  white-space:nowrap;
}

.topbar-contacts a:hover{
  opacity:1;
  text-decoration:underline;
  text-underline-offset:3px;
}

.topbar-contacts a svg{
  width:14px;
  height:14px;
  fill:none;
  stroke:var(--white);
  flex-shrink:0;
}

/* subtle divider dots between contact items */
.topbar-contacts a:not(:last-child){
  position:relative;
  padding-right:22px;
}
.topbar-contacts a:not(:last-child)::after{
  content:"";
  position:absolute;
  right:-11px;
  top:50%;
  transform:translateY(-50%);
  width:3px;
  height:3px;
  border-radius:50%;
  background:rgba(255,255,255,0.5);
}

.topbar-social{
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink:0;
}

.topbar-social a{
  width:26px;
  height:26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:7px;
  background:rgba(255,255,255,0.14);
  color:var(--white);
  transition:background .2s ease, transform .2s ease;
}

.topbar-social a:hover{
  background:var(--white);
  transform:translateY(-2px);
}

.topbar-social a svg{
  width:13px;
  height:13px;
  stroke:var(--white);
  fill:none;
  transition:stroke .2s ease;
}

.topbar-social a:hover svg{
  stroke:var(--primary);
}

/* ==========================================================================
   2. MAIN HEADER / NAV
   ========================================================================== */
#site-header{
  background:var(--white);
  border-bottom:1px solid var(--border-light);
  box-shadow:var(--shadow-sm);
}

.nav-wrap{
  max-width:1240px;
  margin:0 auto;
  padding:14px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

/* Brand / logo */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  flex-shrink:0;
}

.brand img{
  width:56px;
  height:56px;
  border-radius:50%;
  background:var(--white);
  border:2px solid var(--primary-light);
  box-shadow:var(--shadow-sm);
  object-fit:contain;
  padding:4px;
  transition:transform .25s ease, border-color .25s ease;
}

.brand:hover img{
  transform:scale(1.05) rotate(-3deg);
  border-color:var(--primary);
}

.brand-name{
  font-family:var(--font-head);
  font-weight:700;
  font-size:19px;
  line-height:1.15;
  color:var(--primary-dark);
  display:flex;
  flex-direction:column;
  letter-spacing:-0.2px;
}

.brand-name span{
  font-family:var(--font-body);
  font-weight:500;
  font-size:11.5px;
  color:var(--text-muted);
  letter-spacing:0.3px;
  margin-top:2px;
}

/* Primary nav links */
.main-nav{
  display:flex;
  align-items:center;
  gap:34px;
}

.main-nav a{
  position:relative;
  color:var(--text-secondary);
  text-decoration:none;
  font-weight:600;
  font-size:15px;
  padding:6px 0;
  transition:color .2s ease;
}

.main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:var(--primary);
  border-radius:2px;
  transition:width .25s ease;
}

.main-nav a:hover{
  color:var(--primary);
}

.main-nav a:hover::after{
  width:100%;
}

/* Header actions: donate button + mobile toggle */
.header-actions{
  display:flex;
  align-items:center;
  gap:16px;
  flex-shrink:0;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:11px 24px;
  border-radius:999px;
  font-weight:700;
  font-size:14.5px;
  text-decoration:none;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space:nowrap;
  font-family:var(--font-body);
}

.btn-primary{
  background:var(--primary);
  color:var(--white);
  box-shadow:var(--shadow-sm);
}

.btn-primary:hover{
  background:var(--primary-dark);
  transform:translateY(-2px);
  box-shadow:var(--shadow-md);
}

.btn-secondary{
  background:var(--white);
  color:var(--primary);
  border-color:var(--primary);
}

.btn-secondary:hover{
  background:var(--primary-light);
  transform:translateY(-2px);
}

.header-actions .btn{
  padding:10px 22px;
}

/* Mobile menu toggle (hamburger) */
.menu-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:42px;
  height:42px;
  border-radius:10px;
  border:1px solid var(--border-light);
  background:var(--white);
  cursor:pointer;
}

.menu-toggle span{
  width:20px;
  height:2px;
  border-radius:2px;
  background:var(--primary-dark);
  transition:transform .25s ease, opacity .25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2){
  opacity:0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   3. MOBILE NAV DRAWER
   ========================================================================== */
.mobile-overlay{
  position:fixed;
  inset:0;
  background:rgba(17,17,17,0.5);
  backdrop-filter:blur(2px);
  opacity:0;
  visibility:hidden;
  transition:opacity .25s ease, visibility .25s ease;
  z-index:1100;
}

.mobile-overlay.active{
  opacity:1;
  visibility:visible;
}

.mobile-nav{
  position:fixed;
  top:0;
  right:-320px;
  width:290px;
  max-width:82vw;
  height:100vh;
  background:var(--white);
  box-shadow:var(--shadow-lg);
  z-index:1200;
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:70px 26px 30px;
  transition:right .3s ease;
}

.mobile-nav.active{
  right:0;
}

.mobile-nav a{
  color:var(--text-secondary);
  text-decoration:none;
  font-weight:600;
  font-size:16px;
  padding:12px 4px;
  border-bottom:1px solid var(--border-light);
}

.mobile-nav a:hover{
  color:var(--primary);
}

.mobile-nav .btn{
  margin-top:14px;
  width:100%;
}

.mobile-close{
  position:absolute;
  top:18px;
  right:20px;
  width:38px;
  height:38px;
  border-radius:50%;
  border:none;
  background:var(--primary-light);
  color:var(--primary-dark);
  font-size:22px;
  line-height:1;
  cursor:pointer;
}

@media (max-width:900px){
  .main-nav{ display:none; }
  .menu-toggle{ display:flex; }
  .header-actions .btn-primary{ display:none; }
  .topbar-contacts a:nth-child(2){ display:none; }
}

@media (max-width:600px){
  .topbar-contacts a span{ display:none; }
  .brand-name span{ display:none; }
}
/*--- Header Css End --*/


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


html {
  scroll-behavior: smooth;
}


body {
  font-family: "Poppins", sans-serif;

  color: #241F20;

  background: #FFFFFF;

  -webkit-font-smoothing: antialiased;

  line-height: 1.6;

  overflow-x: hidden;
}


img {
  max-width: 100%;
  display: block;
}


a {
  text-decoration: none;
  color: inherit;
}


ul {
  list-style: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.wrap {

  max-width: 1240px;

  margin: 0 auto;

  padding: 0 32px;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */



@media (prefers-reduced-motion: reduce) {

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {

opacity: 1;
  transform: translateY(0);

  transition:
    opacity 0.8s cubic-bezier(.22, .61, .36, 1),
    transform 0.8s cubic-bezier(.22, .61, .36, 1);
}


.reveal.in {

  opacity: 1;

  transform: translateY(0);
}


.reveal-delay-1 {
  transition-delay: 0.08s;
}


.reveal-delay-2 {
  transition-delay: 0.16s;
}


.reveal-delay-3 {
  transition-delay: 0.24s;
}


.reveal-delay-4 {
  transition-delay: 0.32s;
}


/* =========================================================
   IMAGE PLACEHOLDERS
========================================================= */

.img-placeholder {

  position: relative;

  width: 100%;

  background:

    linear-gradient(
      135deg,
      #EFEAE8 25%,
      transparent 25%
    ) -12px 0 / 24px 24px,

    linear-gradient(
      225deg,
      #EFEAE8 25%,
      transparent 25%
    ) -12px 0 / 24px 24px,

    linear-gradient(
      315deg,
      #EFEAE8 25%,
      transparent 25%
    ) 0 0 / 24px 24px,

    linear-gradient(
      45deg,
      #EFEAE8 25%,
      transparent 25%
    ) 0 0 / 24px 24px,

    #F7F4F2;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

  color: #938C8E;
}


.img-placeholder .ph-inner {

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 8px;

  background: rgba(255, 255, 255, 0.82);

  padding: 14px 22px;

  border-radius: 12px;

  backdrop-filter: blur(2px);
}





.img-placeholder .ph-label {

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 0.06em;

  text-transform: uppercase;

  color: #938C8E;
}


.hero-image {
  aspect-ratio: 16 / 8;
}


.card-image {

  aspect-ratio: 4 / 3;

  border-radius:
    16px
    16px
    0
    0;
}


.impact-image {

  aspect-ratio: 4 / 3;

  border-radius: 22px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 60px;
    color: #ffffff;
    overflow: hidden;
    isolation: isolate;
}


.hero .hero-image {

  position: absolute;

  inset: 0;

  aspect-ratio: auto;

  z-index: -2;
}


.hero::after {

  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(20, 14, 14, 0.35) 0%,
      rgba(20, 14, 14, 0.55) 55%,
      rgba(15, 10, 10, 0.86) 100%
    );

  z-index: -1;
}

.hero-eyebrow {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: 0.14em;

  text-transform: uppercase;

  color: #F4C7CC;

  margin-bottom: 22px;
}


.hero-eyebrow::before {

  content: "";

  width: 34px;

  height: 2px;

  background: #F4C7CC;

  display: inline-block;
}


.hero h1 {

  font-size: clamp(
    34px,
    5.4vw,
    48px
  );

  font-weight: 800;

  line-height: 1.1;

  letter-spacing: -0.01em;

  max-width: 820px;

  margin-bottom: 22px;
}


.hero h1 .accent {

  display: block;

  color: #F2B9BF;

  font-weight: 700;
}


.hero p {

  font-size: clamp(
    15px,
    1.6vw,
    18px
  );

  max-width: 600px;

  color: rgba(
    255,
    255,
    255,
    0.88
  );

  margin-bottom: 36px;

  font-weight: 400;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.btn-primary {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  background: #A81F2D;

  color: #FFFFFF;

  font-weight: 600;

  font-size: 15px;

  padding: 17px 34px;

  border-radius: 100px;

  box-shadow:
    0 14px 30px
    rgba(168, 31, 45, 0.4);

  transition:
    transform 0.35s cubic-bezier(.22, .61, .36, 1),
    box-shadow 0.35s cubic-bezier(.22, .61, .36, 1),
    background 0.35s cubic-bezier(.22, .61, .36, 1);

  border: none;

  cursor: pointer;
}


.btn-primary:hover {

  background: #7E1521;

  transform: translateY(-3px);

  box-shadow:
    0 18px 38px
    rgba(168, 31, 45, 0.5);
}


.btn-primary svg {

  width: 16px;

  height: 16px;

  transition:
    transform 0.35s cubic-bezier(.22, .61, .36, 1);
}


.btn-primary:hover svg {

  transform: translateX(4px);
}


/* =========================================================
   SECTION
========================================================= */

.section {

  padding: 40px 0;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.section-header {

  text-align: center;

  max-width: 680px;

  margin: 0 auto 60px;
}


.section-tag {

  display: inline-block;

  font-size: 12.5px;

  font-weight: 700;

  letter-spacing: 0.14em;

  text-transform: uppercase;

  color: #A81F2D;

  margin-bottom: 14px;

  position: relative;

  padding-bottom: 10px;
}


.section-tag::after {

  content: "";

  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  width: 46px;

  height: 2.5px;

  background: #A81F2D;

  border-radius: 2px;
}


.section-header h2 {

  font-size: clamp(
    26px,
    3.4vw,
    36px
  );

  font-weight: 700;

  letter-spacing: -0.01em;

  color: #241F20;

  margin-bottom: 14px;
}


.section-header p {

  color: #6D6668;

  font-size: 16px;
}


/* =========================================================
   COMMUNITY CARDS
========================================================= */

.cards-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 32px;
}


.info-card {

  background: #F7F5F3;

  border-radius: 22px;

  overflow: hidden;

  box-shadow: 0 2px 10px rgba(36, 31, 32, 0.06);

  transition:
    transform 0.5s cubic-bezier(.22, .61, .36, 1),
    box-shadow 0.5s cubic-bezier(.22, .61, .36, 1);

  display: flex;

  flex-direction: column;

  height: 100%;
}


.info-card:hover {

  transform: translateY(-10px);

  box-shadow: 0 26px 60px rgba(36, 31, 32, 0.16);
}


.info-card .card-image-wrap {

  overflow: hidden;

  border-radius:
    16px
    16px
    0
    0;
}


.info-card .card-image-wrap
.card-image {

  transition:
    transform 0.7s cubic-bezier(.22, .61, .36, 1);
}


.info-card:hover
.card-image-wrap
.card-image {

  transform: scale(1.06);
}


.info-card-body {

  padding:
    28px
    26px
    32px;

  display: flex;

  flex-direction: column;

  flex: 1;
}


.info-card-body .card-bar {

  width: 36px;

  height: 3px;

  background: #A81F2D;

  border-radius: 3px;

  margin-bottom: 16px;
}


.info-card-body h3 {

  font-size: 19px;

  font-weight: 600;

  margin-bottom: 12px;

  letter-spacing: -0.005em;
}


.info-card-body p {

  font-size: 14.5px;

  color: #6D6668;

  flex: 1;
}


.info-card-body p strong {

  color: #241F20;

  font-weight: 600;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {

  background: #F7F5F3;
}


.services-grid {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 26px;
}


.service-card {

  background: #FFFFFF;

  border:
    1.5px solid
    #F0D7DA;

  border-radius: 22px;

  padding: 40px 26px;

  text-align: center;

  box-shadow: 0 2px 10px rgba(36, 31, 32, 0.06);

  transition:
    transform 0.45s cubic-bezier(.22, .61, .36, 1),
    box-shadow 0.45s cubic-bezier(.22, .61, .36, 1),
    border-color 0.45s cubic-bezier(.22, .61, .36, 1);

  display: flex;

  flex-direction: column;

  align-items: center;

  height: 100%;
}


.service-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 14px 34px rgba(36, 31, 32, 0.10);

  border-color: #C43244;
}


/* =========================================================
   SERVICE ICON
========================================================= */

.service-icon {

  width: 66px;

  height: 66px;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      #FBE8EA,
      #F6D4D8
    );

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 22px;

  transition:
    transform 0.45s cubic-bezier(.22, .61, .36, 1);
}


.service-card:hover
.service-icon {

  transform:
    scale(1.08)
    rotate(-4deg);
}


.service-icon svg {

  width: 28px;

  height: 28px;

  stroke: #A81F2D;

  fill: none;
}


.service-card h3 {

  font-size: 16.5px;

  font-weight: 600;

  margin-bottom: 10px;

  line-height: 1.35;
}


.service-card p {

  font-size: 13.5px;

  color: #6D6668;
}


/* =========================================================
   IMPACT SECTIONS
========================================================= */

.impact-section {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 70px;

  align-items: center;
}


.impact-section.reverse
.impact-text {

  order: 2;
}


.impact-section.reverse
.impact-media {

  order: 1;
}


.impact-text .section-tag {

  margin-bottom: 16px;
}


.impact-text h2 {

  font-size: clamp(
    26px,
    3.2vw,
    36px
  );

  font-weight: 700;

  letter-spacing: -0.01em;

  margin-bottom: 18px;

  line-height: 1.22;
}


.impact-text > p {

  color: #6D6668;

  font-size: 15.5px;

  margin-bottom: 34px;

  max-width: 480px;
}


/* =========================================================
   POINT LIST
========================================================= */

.point-list {

  display: flex;

  flex-direction: column;

  gap: 22px;
}


.point-item {

  display: flex;

  align-items: flex-start;

  gap: 18px;
}


.point-badge {

  flex-shrink: 0;

  width: 40px;

  height: 40px;

  border-radius: 50%;

  background: #241F20;

  color: #FFFFFF;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 14px;

  font-weight: 700;

  transition:
    background 0.35s cubic-bezier(.22, .61, .36, 1),
    transform 0.35s cubic-bezier(.22, .61, .36, 1);
}


.point-item:hover
.point-badge {

  background: #A81F2D;

  transform: scale(1.08);
}


.point-text {

  font-size: 15.5px;

  font-weight: 500;

  color: #241F20;

  padding-top: 8px;
}


/* =========================================================
   IMPACT IMAGE
========================================================= */

.impact-media {

  position: relative;
}


.impact-media
.impact-image {

  box-shadow: 0 26px 60px rgba(36, 31, 32, 0.16);
}


.impact-media::before {

  content: "";

  position: absolute;

  inset:
    18px
    -18px
    -18px
    18px;

  border:
    2.5px solid
    #F0D7DA;

  border-radius: 22px;

  z-index: -1;
}


.impact-section.reverse
.impact-media::before {

  inset:
    18px
    18px
    -18px
    -18px;
}


/* =========================================================
   IMPACT BLOCK SPACING
========================================================= */

.impact-block + .impact-block {

  margin-top: 80px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

  .cards-grid {

    grid-template-columns:
      repeat(2, 1fr);
  }


  .services-grid {

    grid-template-columns:
      repeat(2, 1fr);
  }


  .impact-section {

    grid-template-columns: 1fr;

    gap: 44px;
  }


  .impact-section.reverse
  .impact-text,

  .impact-section.reverse
  .impact-media {

    order: initial;
  }


  .impact-media::before {

    display: none;
  }


  .impact-block + .impact-block {

    margin-top: 90px;
  }


  .section {

    padding: 80px 0;
  }

}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 768px) {

  .wrap {

    padding:
      0 22px;
  }


  .hero-content {

    padding:
     80px 0px
  }


  .cards-grid {

    grid-template-columns: 1fr;

    gap: 24px;
  }


  .services-grid {

    grid-template-columns: 1fr;

    gap: 20px;
  }


  .section-header {

    margin-bottom: 44px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .hero {

    min-height: 520px;
  }


  .btn-primary {

    width: 100%;

    justify-content: center;

    padding:
      16px
      24px;
  }


  .info-card-body {

    padding:
      22px
      20px
      26px;
  }


  .service-card {

    padding:
      32px
      20px;
  }


  .point-item {

    gap: 14px;
  }

}


/* ==========================================================================
   4. FOOTER
   ========================================================================== */
footer {
  background: linear-gradient(160deg, var(--secondary) 0%, var(--primary-dark) 100%);
  color: rgba(255, 255, 255, 0.82);
  padding-top: 64px;
  position: relative;
}

.footer-top {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.1fr 1fr;
  gap: 36px;
}

.footer-col h5 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin: 0 0 18px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 18px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
  position: relative;
  padding-left: 14px;
  transition: color .2s ease, padding-left .2s ease;
}

.footer-col ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1.5px;
  background: var(--primary-light);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 18px;
}

/* Brand column */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  padding: 4px;
  object-fit: contain;
}

.footer-brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 19px;
  color: var(--white);
}

/* social row */
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  transition: background .2s ease, transform .2s ease;
}

.footer-social a:hover {
  background: var(--white);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

/* Contact Info column icons */
.footer-col .contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-col .contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.footer-col .contact-list li a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-col .contact-list li a:hover {
  color: var(--white);
}

.footer-col .contact-list svg {
  width: 15px;
  height: 15px;
  stroke: var(--primary-light);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Image column */
.footer-image {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-image figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255, 255, 255, 0.12);
}

.footer-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.footer-image figcaption {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  text-align: center;
}

/* Bottom bar */
.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.footer-bottom span:not(:last-child)::after {
  content: "•";
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width:980px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
}

@media (max-width:600px) {
  .footer-top {
    grid-template-columns: 1fr;
    padding-bottom: 30px;
  }

  footer {
    padding-top: 48px;
  }
}