/*=====================================================
    HERO SECTION
=====================================================*/

.hero-banner {
    background: #fff8f0;
    background-image: url("../image/ChatGPT Image Jul 21, 2026, 09_25_00 PM.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* padding: 60px 0 40px; */
    position: relative;
}

/*=========================================
DESKTOP / TABLET layout — simple 2-column flex,
no row-spanning, so heading/text/buttons only take
exactly the height their own content needs.
=========================================*/

.hero-desktop-layout {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-desktop-left {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
}

.hero-desktop-image {
    flex: 1 1 50%;
    text-align: center;
}

.hero-desktop-image img {
    width: 100%;
    max-width: 650px;
    height: auto;
    display: block;
    margin: auto;
}

/* Mobile layout hidden by default */
.hero-mobile-layout {
    display: none;
}

/*=========================================
Shared text styles
=========================================*/

.hero-badge {
    display: inline-block;
    background: #fcecd2;
    color: #f17833;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 20px;
}

h1 {
    margin: 0 0 8px;
}

.hero-desktop-left h1,
.hero-mobile-heading h1 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    color: #111827;
    margin: 0 0 8px;
}

.hero-desktop-left h1 span,
.hero-mobile-heading h1 span {
    color: #f17833;
}

.hero-subtitle {
    font-size: 26px;
    font-weight: 700;
    color: #374151;
    margin: 0 0 10px;
    text-align: left;
}

.hero-subtitle span {
    color: #f17833;
}

.hero-description {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.8;
    max-width: 520px;
    margin: 0 0 30px;
    text-align: left;
}

/*=========================================
Buttons
=========================================*/

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.btn1 {
    background: #f17833 !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 15px 34px !important;
    border: none !important;
    transition: .3s;
}

.btn1:hover {
    background: #db6827 !important;
    transform: translateY(-2px);
}

.btn2 {
    background: #fff !important;
    color: #111 !important;
    border: 1px solid #ddd !important;
    border-radius: 50px !important;
    padding: 15px 34px !important;
    transition: .3s;
}

.btn2:hover {
    background: #f17833 !important;
    color: #fff !important;
}

.hero-buttons .btn i {
    margin-right: 8px;
}

/*=========================================
Impact Stats
=========================================*/

.impact-stats-section {
    position: relative;
    margin-top: -90px;
    z-index: 10;
}

.stats-minimal-grid {
    background: #fff7f1;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    overflow: hidden;
    border: 1px solid #ececec;
}

.stats-minimal-grid .col-lg-3,
.stats-minimal-grid .col-md-6,
.stats-minimal-grid .col-6 {
    padding: 0;
}

.stat-minimal-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 20px;
    text-align: center;
    height: 100%;
    transition: all .3s ease;
    position: relative;
    background: #fff;
}

.stat-minimal-item:hover {
    background: #fff7f1;
    transform: translateY(-5px);
}

.stats-minimal-grid .col-lg-3:not(:last-child) .stat-minimal-item {
    border-right: 1px solid #eeeeee;
}

.stat-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff3ea;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
    transition: .3s;
}

.stat-icon i {
    color: #f17833;
    font-size: 30px;
}

.stat-minimal-item:hover .stat-icon {
    background: #f17833;
    transform: scale(1.08);
}

.stat-minimal-item:hover .stat-icon i {
    color: #fff;
}

.stat-minimal-number {
    display: block;
    font-size: 34px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 8px;
}

.stat-minimal-label {
    display: block;
    color: #6b7280;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.stat-minimal-item:hover .stat-minimal-number {
    color: #f17833;
}

/*=====================================================
    RESPONSIVE
======================================================*/

/* Laptop — still desktop layout, just smaller */
@media (max-width: 1200px) {
    .hero-desktop-left h1 {
        font-size: 50px;
    }
    .hero-subtitle {
        font-size: 24px;
    }
    .hero-description {
        font-size: 17px;
    }
    .hero-desktop-image img {
        max-width: 560px;
    }
}

/* Tablet — still desktop layout */
@media (max-width: 991.98px) {
    .hero-banner {
        padding: 40px 0 30px;
    }
    .hero-desktop-left h1 {
        font-size: 38px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    .hero-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    .hero-buttons .btn {
        padding: 11px 20px !important;
        font-size: 14px;
    }
    .hero-desktop-image img {
        max-width: 100%;
    }
    .stats-minimal-grid {
        margin-top: 40px;
    }
    .stats-minimal-grid .col-md-6:nth-child(1),
    .stats-minimal-grid .col-md-6:nth-child(2) {
        border-bottom: 1px solid #eeeeee;
    }
    .stats-minimal-grid .col-md-6:nth-child(odd) {
        border-right: 1px solid #eeeeee;
    }
    .stat-minimal-item {
        padding: 30px 20px;
    }
}

/* Mobile — switch layouts: hide desktop version, show mobile version */
@media (max-width: 767.98px) {
    .hero-banner {
        padding: 30px 0 25px;
    }

    .hero-desktop-layout {
        display: none;
    }

    .hero-mobile-layout {
        display: block;
    }

    .hero-mobile-heading {
        text-align: left;
        margin-bottom: 10px;
    }

    .hero-mobile-heading h1 {
        font-size: 22px;
        line-height: 1.2;
        margin: 0;
    }

    .hero-mobile-heading .hero-badge {
        font-size: 10px;
        padding: 4px 10px;
        margin: 0 0 8px;
    }

    .hero-mobile-row {
        display: flex;
        align-items: flex-start;
        gap: 14px;
    }

    .hero-mobile-text {
        flex: 1 1 50%;
    }

    .hero-mobile-text .hero-subtitle {
        font-size: 13px;
        margin: 0 0 6px;
    }

    .hero-mobile-text .hero-description {
        font-size: 11px;
        line-height: 1.5;
        margin: 0;
    }

    .hero-mobile-visual {
        flex: 1 1 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-mobile-visual img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
    }

    .hero-mobile-visual .hero-buttons {
        flex-direction: column;
        gap: 8px;
        margin-top: 10px;
        width: 100%;
    }

    .hero-mobile-visual .hero-buttons .btn {
        width: 100%;
        padding: 8px 12px !important;
        font-size: 11px;
        text-align: center;
    }

    .stats-minimal-grid {
        margin-top: 30px;
    }
    .stat-minimal-item {
        padding: 25px 15px;
    }
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    .stat-icon i {
        font-size: 24px;
    }
    .stat-minimal-number {
        font-size: 26px;
    }
    .stat-minimal-label {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .hero-mobile-heading h1 {
        font-size: 18px;
    }
    .hero-mobile-text .hero-subtitle {
        font-size: 11px;
    }
    .hero-mobile-text .hero-description {
        font-size: 10px;
    }
    .hero-mobile-heading .hero-badge {
        font-size: 10px;
        padding: 4px 10px;
    }
    .hero-mobile-visual .hero-buttons .btn {
        padding: 7px 10px !important;
        font-size: 10px;
    }
    .stats-minimal-grid .col-6 {
        width: 50%;
    }
    .stats-minimal-grid .col-6:nth-child(odd) {
        border-right: 1px solid #eeeeee;
    }
    .stats-minimal-grid .col-6:nth-child(1),
    .stats-minimal-grid .col-6:nth-child(2) {
        border-bottom: 1px solid #eeeeee;
    }
    .stat-minimal-item {
        padding: 20px 10px;
    }
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    .stat-icon i {
        font-size: 20px;
    }
    .stat-minimal-number {
        font-size: 22px;
    }
    .stat-minimal-label {
        font-size: 12px;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .hero-desktop-left h1 {
        font-size: 65px;
    }
    .hero-description {
        font-size: 20px;
    }
    .hero-desktop-image img {
        max-width: 720px;
    }
}

/* ============================================================ */
/* EMERGENCY RESCUE                                             */
/* ============================================================ */
.emergency-section {
  padding: 100px 0 80px;
 
}
.emergency-content{
      padding: 20px 10px !important;
     background: #fff8f0;
}
.emergency-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 40px;
  align-items: center;
}
.emergency-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d64545;
  background: rgba(214, 69, 69, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.emergency-content .section-title {
  text-align: left;
  margin-bottom: 8px;
}
.section-subtitle-left {
  font-size: 1.05rem;
  color: #475569;
  max-width: 480px;
  margin-bottom: 28px;
}
.emergency-progress {
  max-width: 420px;
  margin-bottom: 28px;
}
.progress-bar-track {
  width: 100%;
  height: 12px;
  background: #f1e4d3;
  border-radius: 50px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #f17833, #fbbf6d);
  border-radius: 50px;
}
.progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #475569;
}
.progress-labels strong {
  color: #0f172a;
}
.progress-percent {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f17833;
}
.btn-help-now {
  box-shadow: 0 8px 20px rgba(241, 120, 51, 0.3);
}
.emergency-photos {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title span{
  color: #f17833 !important;
}
.emergency-photo {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
.emergency-photo img {
  width: 100%;
  height: 364px;
  object-fit: cover;
  display: block;
}
.emergency-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f17833;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.emergency-quote {
  align-self: center;
  text-align: center;
  max-width: 140px;
}
.emergency-quote i {
  color: #f17833;
  opacity: 0.5;
  font-size: 1.2rem;
}
.emergency-quote p {
  font-weight: 700;
  font-size: 1.2rem;
  color: #0f172a;
  line-height: 1.3;
}
.support-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 columns */
    gap: 24px;
}

/* ============================================================ */
/* WHY YOUR SUPPORT MATTERS                                     */
/* ============================================================ */
.values-section {
    background: #ffffff;
    /* padding: 80px 0; */
}

.section-header-simple {
    margin-bottom: 36px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 columns total */
    gap: 24px;
}

/* Value cards – each takes 1 column */
.value-card {
    grid-column: span 1;
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid #e9edf2;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.value-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.value-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.value-card p {
    font-size: 0.9rem;
    color: #64748b;
}

/* ============================================================ */
/* STORY CARD – Image Left, Text Right                          */
/* ============================================================ */
.story-card {
    grid-column: span 2; /* Takes 2 columns */
    background: #fff8f0;
    border: 1px solid #f3e2c8;
    border-radius: 16px;
    padding: 0; /* Remove padding, let inner elements handle it */
    display: grid;
    grid-template-columns: 180px 1fr; /* Image width: 180px, text takes rest */
    align-items: stretch; /* Stretch both columns to full height */
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* Story Tag – positioned inside the text area */
.story-tag {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #f17833;
    z-index: 2;
}

/* Story Image – fills the left column, full height */
.story-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 0; /* No border-radius – rectangular */
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area without distortion */
    display: block;
}

/* Story Text – right side with padding */
.story-text {
    padding: 24px 28px 24px 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.story-text h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.story-text p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.6;
}

.program-link {
    color: #f17833;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.program-link:hover {
    color: #d96a2a;
}

/* ============================================================ */
/* RESPONSIVE — Bootstrap breakpoints (lg: <992, md: <768, sm: <576) */
/* ============================================================ */
@media (max-width: 991.98px) {
    .support-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .story-card {
        grid-column: span 1;
        grid-template-columns: 1fr; /* Stack vertically on tablet */
        grid-template-rows: auto 1fr;
    }
    .story-image {
        height: 200px;
        width: 100%;
        border-radius: 0;
    }
    .story-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .story-text {
        padding: 20px 24px;
        text-align: center;
    }
    .story-tag {
        right: 16px;
        top: 12px;
    }
}

@media (max-width: 767.98px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .story-card {
        grid-column: span 2;
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    .story-image {
        height: 200px;
        width: 100%;
    }
    .story-text {
        padding: 20px 24px;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
    .story-card {
        grid-column: span 1;
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    .story-image {
        height: 180px;
        width: 100%;
    }
    .story-text {
        padding: 16px 20px;
        text-align: center;
    }
    .story-tag {
        right: 12px;
        top: 10px;
        font-size: 0.6rem;
    }
}
/* ============================================================ */
/* TRUSTED BY KIND HEARTS                                       */
/* ============================================================ */
.trust-section {
  padding: 40px 0;
  background: #ffffff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.1fr;
  gap: 24px;
  align-items: stretch;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e9edf2;
}
.testimonial-content i {
  color: #f17833;
  opacity: 0.3;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.testimonial-content p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}
.author-info span {
  font-size: 0.8rem;
  color: #94a3b8;
}
.transparency-card {
  background: #fff8f0;
  border-radius: 16px;
  padding: 28px;
  color: #f17833;
  text-align: center;
}
.transparency-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.transparency-card p {
  color: #000;
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.transparency-bars {
  text-align: left;
  margin-bottom: 22px;
}
.transparency-bar-row + .transparency-bar-row {
  margin-top: 16px;
}
.transparency-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #000;
  margin-bottom: 6px;
}
.transparency-bar-label span:last-child {
  color: #000;
  font-weight: 700;
}
.transparency-bar-track {
  width: 100%;
  height: 8px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.transparency-bar-fill {
  height: 100%;
  border-radius: 50px;
}
.bar-1 {
  background: #f17833;
}
.bar-2 {
  background: #f17833;
}
.bar-3 {
  background: #f17833;
}
.bar-4 {
  background: #f17833;
}
.transparency-card .program-link {
  color: #f17833;
  justify-content: center;
}

/* ============================================================ */
/* MEET SOME OF OUR HAPPY TAILS                                 */
/* ============================================================ */
.tails-section {
  padding: 80px 0;
  background: #f8fafc;
}
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-header-row .section-title {
  text-align: left;
}
.tails-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.tail-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 12px;
  text-align: center;
  border: 1px solid #e9edf2;
  transition: all 0.3s ease;
}
.tail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}
.tail-image {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 10px;
}
.tail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tail-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 8px;
}
.tail-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}
.tail-card span {
  font-size: 0.78rem;
  color: #94a3b8;
}
.tail-favorite {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fdf1e4;
  border: none;
  color: #e11d48;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

/* ============================================================ */
/* YOU CAN BE THEIR HERO                                        */
/* ============================================================ */
.hero-cta-section {
  padding: 40px 0;
  background: #ffffff;
}
.hero-cta-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  /* gap: 24px; */
  align-items: stretch;
}
.hero-cta-main {
  background: #fff8f0;
  border: 1px solid #f3e2c8;
  border-radius: 24px;
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero-cta-illustration {
  flex: 0 0 160px;
  border-radius: 16px;
  overflow: hidden;
}
.hero-cta-illustration img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.hero-cta-main-content {
  flex: 1;
}
.hero-cta-main-content .section-title {
  text-align: left;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.hero-cta-items {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-cta-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  flex: 1;
  min-width: 200px;
}
.hero-cta-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  color: #f17833;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-cta-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.hero-cta-item p {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 12px;
}
.btn-sm {
  padding: 9px 22px;
  font-size: 0.85rem;
}
/* ============================================================ */
/* DONATE CTA – Left Text, Right Image                          */
/* ============================================================ */
.hero-cta-donate {
    background: linear-gradient(135deg, #f17833, #e8632a);
    border-radius: 24px;
    padding: 32px 40px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 180px;
    position: relative;
    overflow: hidden;
}

/* Left side content */
.hero-cta-donate-content {
    flex: 1;
    max-width: 60%;
}

.hero-cta-donate-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    max-width: 100%;
}

.hero-cta-donate-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    max-width: 100%;
}

.hero-cta-donate-content .btn-light {
    background: #fff;
    color: #0f172a;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta-donate-content .btn-light:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Right side image */
.hero-cta-donate-photo {
    flex: 0 0 160px;
    width: 160px;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.hero-cta-donate-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================================ */
/* RESPONSIVE — Bootstrap breakpoints (md: <768, sm: <576)      */
/* ============================================================ */
@media (max-width: 767.98px) {
    .hero-cta-donate {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
        min-height: auto;
    }

    .hero-cta-donate-content {
        max-width: 100%;
    }

    .hero-cta-donate-content h4 {
        font-size: 1.1rem;
    }

    .hero-cta-donate-content p {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .hero-cta-donate-photo {
        flex: 0 0 140px;
        width: 140px;
        height: 140px;
        margin: 0 auto;
        order: -1; /* Image goes to top on mobile */
    }
}

@media (max-width: 575.98px) {
    .hero-cta-donate {
        padding: 24px 16px;
    }

    .hero-cta-donate-photo {
        flex: 0 0 120px;
        width: 120px;
        height: 120px;
    }

    .hero-cta-donate-content h4 {
        font-size: 1rem;
    }

    .hero-cta-donate-content .btn-light {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* ============================================================ */
/* RECENT SUPPORTERS TICKER                                     */
/* ============================================================ */
.supporters-ticker {
  /* padding: 24px 0 60px; */
  background: #ffffff;
}
.ticker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 700;
  color: #0f172a;
}
.ticker-header i {
  color: #f17833;
  margin-right: 6px;
}
.live-dot {
  font-size: 0.8rem;
  font-weight: 600;
  color: #16a34a;
}
.live-dot i {
  font-size: 0.5rem;
  color: #16a34a;
  margin-right: 4px;
}
.ticker-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0;
}
.ticker-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid #e9edf2;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #475569;
}
.ticker-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fdf1e4;
  color: #f17833;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.ticker-text {
  flex: 1;
  line-height: 1.5;
}
.ticker-list strong {
  color: #0f172a;
}
.ticker-list time {
  font-size: 0.75rem;
  color: #94a3b8;
  white-space: nowrap;
}

/* ============================================================ */
/* RESPONSIVE — Bootstrap breakpoints                            */
/* xl: <1200  lg: <992  md: <768  sm: <576                      */
/* ============================================================ */
@media (max-width: 1199.98px) {
  .tails-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991.98px) {
  .support-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tails-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ticker-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-cta-layout {
    grid-template-columns: 1fr;
  }
  .hero-cta-main {
    flex-direction: column;
    text-align: center;
  }
  .hero-cta-main-content .section-title {
    text-align: center;
  }
  .hero-cta-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .emergency-grid {
    grid-template-columns: 1fr 1fr;
  }
  .emergency-quote {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-image {
    order: -1;
  }
  .stats-row {
    justify-content: center;
    gap: 16px;
  }
  .stat-item-simple {
    align-items: center;
    text-align: center;
    flex: 1 1 40%;
  }
  .stat-item-simple .stat-number {
    font-size: 1.4rem;
  }
  .stat-item-simple .stat-label {
    font-size: 0.8rem;
  }
  .emergency-grid {
    grid-template-columns: 1fr;
  }
  .emergency-content .section-title,
  .section-subtitle-left {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .emergency-progress {
    margin-left: auto;
    margin-right: auto;
  }
  .section-header-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .section-header-row .section-title {
    text-align: center;
  }
  .support-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .tails-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .support-grid,
  .tails-grid,
  .ticker-list {
    grid-template-columns: 1fr 1fr;
  }
  .stats-row {
    flex-direction: column;
    align-items: center;
  }
  .stat-item-simple {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .story-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .story-image {
    margin: 0 auto;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .emergency-photos {
    flex-direction: column;
  }
  .emergency-arrow {
    transform: rotate(90deg);
  }
  .hero-cta-items {
    flex-direction: column;
    gap: 20px;
  }
  .hero-cta-donate h4,
  .hero-cta-donate p {
    max-width: 100%;
  }
  .hero-cta-donate-photo {
    display: none;
  }
}
/* ============================================================ */
/* ABOUT US PAGE                                                */
/* ============================================================ */

/* ----- About Hero ----- */
.about-hero {
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid #f3e2c8;
}

.about-badge {
    display: inline-block;
    background: #fcecd2;
    color: #f17833;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.about-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-hero h1 span {
    color: #f17833;
}

.about-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ----- Mission Section ----- */
.mission-section {
    padding: 60px 0;
    background: #ffffff;
}

.mission-card {
    background: #fff8f0;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid #f3e2c8;
    transition: all 0.3s ease;
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.mission-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f17833;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 16px;
}

.mission-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.mission-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
}

/* ----- Story Section ----- */
.story-section {
    padding: 80px 0;
    background: #f8fafc;
}

.story-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.story-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.story-content {
    padding: 20px 0;
}

.story-tag-badge {
    display: inline-block;
    background: #fcecd2;
    color: #f17833;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.story-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.story-content h2 span {
    color: #f17833;
}

.story-content p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ----- Why Started Section ----- */
.why-started-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-tag {
    display: inline-block;
    color: #f17833;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.section-title span {
    color: #f17833;
}

.why-description {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.why-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    border: 1px solid #e9edf2;
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.why-icon {
    font-size: 2.8rem;
    color: #f17833;
    margin-bottom: 12px;
}

.why-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* ----- Registration Section ----- */
.registration-section {
    padding: 80px 0;
    background: #fff8f0;
}

.reg-description {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 40px;
}

.reg-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid #e9edf2;
    transition: all 0.3s ease;
    height: 100%;
}

.reg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.reg-icon {
    font-size: 2.2rem;
    color: #f17833;
    margin-bottom: 10px;
}

.reg-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.reg-number {
    font-size: 0.85rem;
    color: #475569;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.reg-status {
    display: inline-block;
    background: #dcfce7;
    color: #16a34a;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
}

.reg-footer {
    font-size: 0.95rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

/* ============================================================ */
/* RESPONSIVE – About Us                                        */
/* ============================================================ */
@media (max-width: 991.98px) {
    .about-hero h1 {
        font-size: 2.6rem;
    }
    .story-content h2 {
        font-size: 2rem;
    }
    .story-image-wrapper img {
        height: 300px;
    }
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        padding: 60px 0 40px;
    }
    .about-hero h1 {
        font-size: 2.2rem;
    }
    .about-subtitle {
        font-size: 1rem;
    }
    .mission-card {
        padding: 28px 20px;
    }
    .story-section {
        padding: 60px 0;
    }
    .story-content {
        text-align: center;
    }
    .story-content h2 {
        font-size: 1.8rem;
    }
    .story-content p {
        font-size: 0.95rem;
    }
    .why-started-section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .registration-section {
        padding: 60px 0;
    }
    .reg-card {
        padding: 20px 16px;
    }
    .reg-icon {
        font-size: 1.8rem;
    }
    .reg-number {
        font-size: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }
    .story-image-wrapper img {
        height: 220px;
    }
    .why-card {
        padding: 24px 16px;
    }
    .reg-card {
        padding: 16px 12px;
    }
    .reg-number {
        font-size: 0.65rem;
    }
    .reg-footer {
        font-size: 0.85rem;
    }
}


/* ============================================================ */
/* MEET THE FOUNDER PAGE                                        */
/* ============================================================ */

/* ----- Founder Hero ----- */
.founder-hero {
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    padding: 80px 0 60px;
    border-bottom: 1px solid #f3e2c8;
}

.founder-badge {
    display: inline-block;
    background: #fcecd2;
    color: #f17833;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.founder-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.founder-hero-content h1 span {
    color: #f17833;
}

.founder-quote {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f17833;
    font-style: italic;
    margin-bottom: 16px;
    padding-left: 20px;
    border-left: 4px solid #f17833;
}

.founder-intro {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
}

.founder-intro strong {
    color: #0f172a;
    font-weight: 700;
}

.founder-social {
    display: flex;
    gap: 12px;
}

.founder-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e9edf2;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.founder-social-link:hover {
    background: #f17833;
    color: #fff;
    border-color: #f17833;
    transform: translateY(-2px);
}

/* Founder Image */
.founder-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.founder-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.founder-image-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: #f17833;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(241, 120, 51, 0.3);
}

.founder-image-badge i {
    font-size: 1rem;
}

/* ----- Founder Story – Timeline ----- */
.founder-story {
    padding: 80px 0;
    background: #ffffff;
}

.story-timeline {
    margin-top: 40px;
}

.timeline-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #e9edf2;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.timeline-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.timeline-number {
    font-size: 3rem;
    font-weight: 800;
    color: #f17833;
    opacity: 0.15;
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
}

.timeline-icon {
    font-size: 2.4rem;
    color: #f17833;
    margin-bottom: 12px;
}

.timeline-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.timeline-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* ----- Founder's Why ----- */
.founder-why {
    padding: 80px 0;
    background: #fff8f0;
}

.founder-why-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.founder-why-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.founder-why-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.founder-why-content h2 span {
    color: #f17833;
}

.founder-why-content p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.founder-mission-statement {
    background: #ffffff;
    padding: 24px 28px;
    border-radius: 16px;
    border-left: 4px solid #f17833;
    margin-top: 20px;
}

.founder-mission-statement i {
    color: #f17833;
    font-size: 1.2rem;
    opacity: 0.4;
    margin-bottom: 8px;
}

.founder-mission-statement p {
    font-size: 1.05rem;
    font-style: italic;
    color: #0f172a;
    font-weight: 500;
    margin-bottom: 8px;
}

.founder-mission-statement span {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

/* ----- Philosophy ----- */
.founder-philosophy {
    padding: 80px 0;
    background: #ffffff;
}

.philosophy-grid {
    margin-top: 20px;
}

.philosophy-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid #e9edf2;
    transition: all 0.3s ease;
    height: 100%;
}

.philosophy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    background: #fff8f0;
}

.philosophy-icon {
    font-size: 2.4rem;
    color: #f17833;
    margin-bottom: 12px;
}

.philosophy-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.philosophy-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

/* ----- Founder CTA ----- */
.founder-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f17833, #e8632a);
    color: #fff;
    text-align: center;
}

.founder-cta h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.founder-cta h2 span {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
}

.founder-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.founder-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.founder-cta-buttons .btn1 {
    background: #fff !important;
    color: #f17833 !important;
}

.founder-cta-buttons .btn1:hover {
    background: #f1f5f9 !important;
}

.founder-cta-buttons .btn2 {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
}

.founder-cta-buttons .btn2:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #fff !important;
}

.founder-cta-buttons .btn3 {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
}

.founder-cta-buttons .btn3:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #fff !important;
}

/* ============================================================ */
/* RESPONSIVE – Meet the Founder                                */
/* ============================================================ */

@media (max-width: 991.98px) {
    .founder-hero {
        padding: 60px 0 40px;
        text-align: center;
    }
    .founder-hero-content h1 {
        font-size: 2.6rem;
    }
    .founder-quote {
        border-left: none;
        padding-left: 0;
        text-align: center;
    }
    .founder-social {
        justify-content: center;
    }
    .founder-image-wrapper img {
        height: 350px;
        margin-top: 30px;
    }
    .founder-image-badge {
        bottom: 40px;
        right: 50%;
        transform: translateX(50%);
    }
    .founder-why {
        text-align: center;
    }
    .founder-why-image img {
        height: 300px;
    }
    .founder-mission-statement {
        text-align: left;
    }
    .founder-cta h2 {
        font-size: 2.2rem;
    }
    .founder-cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .founder-hero-content h1 {
        font-size: 2.2rem;
    }
    .founder-quote {
        font-size: 1.05rem;
    }
    .founder-intro {
        font-size: 0.95rem;
    }
    .founder-image-wrapper img {
        height: 280px;
    }
    .founder-image-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
        bottom: 30px;
    }
    .founder-story {
        padding: 60px 0;
    }
    .timeline-card {
        padding: 24px 20px;
    }
    .founder-why {
        padding: 60px 0;
    }
    .founder-why-content h2 {
        font-size: 1.8rem;
    }
    .founder-why-content p {
        font-size: 0.95rem;
    }
    .founder-why-image img {
        height: 240px;
    }
    .founder-mission-statement {
        padding: 20px;
    }
    .founder-philosophy {
        padding: 60px 0;
    }
    .founder-cta {
        padding: 60px 0;
    }
    .founder-cta h2 {
        font-size: 1.8rem;
    }
    .founder-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .founder-hero-content h1 {
        font-size: 1.8rem;
    }
    .founder-image-wrapper img {
        height: 220px;
    }
    .founder-image-badge {
        font-size: 0.65rem;
        padding: 6px 12px;
        bottom: 20px;
    }
    .timeline-number {
        font-size: 2.2rem;
    }
    .philosophy-card {
        padding: 20px 12px;
    }
    .philosophy-icon {
        font-size: 1.8rem;
    }
    .philosophy-card h4 {
        font-size: 0.85rem;
    }
    .founder-cta h2 {
        font-size: 1.5rem;
    }
}

/* ============================================================ */
/* OUR CENTERS PAGE                                             */
/* ============================================================ */

/* ----- Centers Hero ----- */
.centers-hero {
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    padding: 80px 0 60px;
    border-bottom: 1px solid #f3e2c8;
}

.centers-badge {
    display: inline-block;
    background: #fcecd2;
    color: #f17833;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.centers-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.centers-hero h1 span {
    color: #f17833;
}

.centers-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ----- Center Detail ----- */
.center-detail {
    padding: 80px 0;
    background: #ffffff;
}

.center-detail-alt {
    background: #f8fafc;
}

.center-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.center-image-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.center-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.center-location {
    display: inline-block;
    color: #f17833;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.center-location i {
    margin-right: 6px;
}

.center-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.center-content h2 span {
    color: #f17833;
}

.center-description {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
}

.center-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.center-stat {
    background: #f8fafc;
    padding: 16px 12px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9edf2;
}

.center-stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
}

.center-stat-label {
    display: block;
    font-size: 0.7rem;
    color: #64748b;
}

.center-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.feature-tag {
    background: #fff8f0;
    color: #f17833;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #f3e2c8;
}

.feature-tag i {
    margin-right: 4px;
    font-size: 0.7rem;
}

/* ----- Daily Activities ----- */
.daily-activities {
    padding: 80px 0;
    background: #fff8f0;
}

.activities-description {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 40px;
}

.activity-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid #e9edf2;
    transition: all 0.3s ease;
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.activity-icon {
    font-size: 2rem;
    color: #f17833;
    margin-bottom: 10px;
}

.activity-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.activity-card p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}

/* ----- Gallery ----- */
.gallery-section {
    padding: 80px 0;
    background: #ffffff;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(241, 120, 51, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
}

/* ----- Visit Section ----- */
.visit-section {
    padding: 80px 0;
    background: #f8fafc;
}

.visit-badge {
    display: inline-block;
    background: #fcecd2;
    color: #f17833;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.visit-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.visit-content h2 span {
    color: #f17833;
}

.visit-content p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
}

.visit-info {
    margin-bottom: 24px;
}

.visit-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #e9edf2;
}

.visit-info-item:last-child {
    border-bottom: none;
}

.visit-info-item i {
    color: #f17833;
    font-size: 1.2rem;
    margin-top: 2px;
    width: 24px;
}

.visit-info-item strong {
    display: block;
    font-size: 0.9rem;
    color: #0f172a;
}

.visit-info-item span {
    font-size: 0.9rem;
    color: #64748b;
}

.visit-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.visit-map {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.visit-map img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.map-overlay i {
    font-size: 2rem;
    color: #f17833;
    display: block;
    margin-bottom: 4px;
}

.map-overlay p {
    margin: 0;
    font-size: 0.9rem;
}

/* ============================================================ */
/* RESPONSIVE – Our Centers                                      */
/* ============================================================ */

@media (max-width: 991.98px) {
    .centers-hero h1 {
        font-size: 2.6rem;
    }
    .center-image-wrapper img {
        height: 300px;
    }
    .center-content h2 {
        font-size: 2rem;
    }
    .center-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .visit-content h2 {
        font-size: 2rem;
    }
    .visit-map img {
        height: 300px;
    }
    .map-overlay {
        bottom: 20px;
        padding: 12px 20px;
    }
}

@media (max-width: 767.98px) {
    .centers-hero {
        padding: 60px 0 40px;
    }
    .centers-hero h1 {
        font-size: 2.2rem;
    }
    .centers-subtitle {
        font-size: 1rem;
    }
    .center-detail {
        padding: 60px 0;
    }
    .center-content {
        text-align: center;
    }
    .center-content h2 {
        font-size: 1.8rem;
    }
    .center-description {
        font-size: 0.95rem;
    }
    .center-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .center-features {
        justify-content: center;
    }
    .daily-activities {
        padding: 60px 0;
    }
    .activity-card {
        padding: 20px 12px;
    }
    .gallery-section {
        padding: 60px 0;
    }
    .visit-section {
        padding: 60px 0;
        text-align: center;
    }
    .visit-buttons {
        justify-content: center;
    }
    .visit-info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .visit-map img {
        height: 220px;
    }
    .map-overlay {
        bottom: 16px;
        padding: 10px 16px;
        width: 90%;
    }
    .map-overlay p {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .centers-hero h1 {
        font-size: 1.8rem;
    }
    .center-image-wrapper img {
        height: 220px;
    }
    .center-content h2 {
        font-size: 1.5rem;
    }
    .center-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .center-stat {
        padding: 12px 8px;
    }
    .center-stat-number {
        font-size: 1rem;
    }
    .center-stat-label {
        font-size: 0.65rem;
    }
    .feature-tag {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    .activity-card h4 {
        font-size: 0.85rem;
    }
    .activity-card p {
        font-size: 0.7rem;
    }
    .visit-content h2 {
        font-size: 1.5rem;
    }
    .visit-buttons .btn {
        width: 100%;
    }
}


/* ============================================================ */
/* CONTACT US PAGE                                              */
/* ============================================================ */

/* ----- Contact Hero ----- */
.contact-hero {
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    padding: 80px 0 60px;
    border-bottom: 1px solid #f3e2c8;
}

.contact-badge {
    display: inline-block;
    background: #fcecd2;
    color: #f17833;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.contact-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.contact-hero h1 span {
    color: #f17833;
}

.contact-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ----- Contact Information Cards ----- */
.contact-info-section {
    padding: 60px 0;
    background: #ffffff;
}

.contact-info-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 32px 24px;
    border: 1px solid #e9edf2;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff3ea;
    color: #f17833;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.contact-info-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-info-card p strong {
    color: #0f172a;
}

.contact-info-card a {
    color: #f17833;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #d96a2a;
}

.contact-info-card a .fa-whatsapp {
    color: #25D366;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 8px;
}

/* Office Hours */
.office-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.office-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9edf2;
    font-size: 0.9rem;
    color: #475569;
}

.office-hours li:last-child {
    border-bottom: none;
}

.office-hours .closed {
    color: #e11d48;
    font-weight: 600;
}

.hours-note {
    font-size: 0.8rem !important;
    color: #94a3b8 !important;
    margin-top: 12px !important;
}

.hours-note i {
    color: #f17833;
    margin-right: 4px;
}

/* ----- Map Section ----- */
.map-section {
    padding: 0;
    background: #ffffff;
}

.map-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.map-wrapper iframe {
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-overlay-content i {
    color: #f17833;
    font-size: 1.6rem;
    display: block;
    margin-bottom: 4px;
}

.map-overlay-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ----- Contact Form Section ----- */
.contact-form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.form-badge {
    display: inline-block;
    background: #fcecd2;
    color: #f17833;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.form-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.form-content h2 span {
    color: #f17833;
}

.form-content p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.form-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.form-trust-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #475569;
}

.form-trust-badges i {
    color: #16a34a;
}

.form-alternative {
    background: #fff8f0;
    border: 1px solid #f3e2c8;
    border-radius: 12px;
    padding: 16px 20px;
}

.form-alternative p {
    font-size: 0.95rem !important;
    margin-bottom: 4px !important;
}

.form-alternative a {
    color: #f17833;
    font-weight: 600;
    text-decoration: none;
}

.form-alternative a:hover {
    color: #d96a2a;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9edf2;
}

.form-header {
    margin-bottom: 24px;
}

.form-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.form-header p {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Form Styles */
.contact-form label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #0f172a;
    margin-bottom: 4px;
}

.contact-form .form-control {
    border-radius: 12px;
    border: 1px solid #e9edf2;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #f17833;
    box-shadow: 0 0 0 4px rgba(241, 120, 51, 0.1);
}

.contact-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364758b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn1 {
    width: 100%;
    justify-content: center;
}

/* ----- Social Connect ----- */
.social-connect {
    padding: 80px 0;
    background: #ffffff;
}

.social-description {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 550px;
    margin: 0 auto 40px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    border-radius: 16px;
    border: 1px solid #e9edf2;
    text-decoration: none;
    color: #0f172a;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.social-card i {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.social-card span {
    font-size: 0.75rem;
    font-weight: 600;
}

.social-card.facebook i { color: #1877F2; }
.social-card.facebook:hover { border-color: #1877F2; }

.social-card.instagram i { color: #E4405F; }
.social-card.instagram:hover { border-color: #E4405F; }

.social-card.youtube i { color: #FF0000; }
.social-card.youtube:hover { border-color: #FF0000; }

.social-card.twitter i { color: #1DA1F2; }
.social-card.twitter:hover { border-color: #1DA1F2; }

.social-card.linkedin i { color: #0A66C2; }
.social-card.linkedin:hover { border-color: #0A66C2; }

/* ----- Quick Links ----- */
.contact-quick-links {
    padding: 40px 0 80px;
    background: #f8fafc;
}

.quick-link-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e9edf2;
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    color: #f17833;
    border-color: #f17833;
}

.quick-link-card i {
    font-size: 1.2rem;
    color: #f17833;
}

/* ============================================================ */
/* RESPONSIVE – Contact Us                                      */
/* ============================================================ */

@media (max-width: 991.98px) {
    .contact-hero h1 {
        font-size: 2.6rem;
    }
    .contact-info-card {
        padding: 24px 20px;
    }
    .form-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .contact-hero {
        padding: 60px 0 40px;
    }
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    .contact-subtitle {
        font-size: 1rem;
    }
    .contact-info-section {
        padding: 40px 0;
    }
    .contact-info-card {
        padding: 24px 16px;
        text-align: center;
    }
    .contact-icon {
        margin: 0 auto 16px;
    }
    .office-hours li {
        font-size: 0.85rem;
    }
    .map-overlay {
        bottom: 16px;
        padding: 12px 20px;
        width: 90%;
    }
    .map-overlay-content p {
        font-size: 0.8rem;
    }
    .contact-form-section {
        padding: 60px 0;
    }
    .form-content {
        text-align: center;
    }
    .form-trust-badges {
        justify-content: center;
    }
    .form-content h2 {
        font-size: 1.8rem;
    }
    .form-content p {
        font-size: 0.95rem;
    }
    .contact-form-wrapper {
        padding: 24px 16px;
    }
    .social-connect {
        padding: 60px 0;
    }
    .social-card {
        padding: 16px 12px;
    }
    .social-card i {
        font-size: 1.6rem;
    }
    .contact-quick-links {
        padding: 30px 0 60px;
    }
    .quick-link-card {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {

  
    .contact-hero h1 {
        font-size: 1.8rem;
    }
    .contact-info-card p {
        font-size: 0.85rem;
    }
    .form-content h2 {
        font-size: 1.5rem;
    }
    .form-trust-badges {
        flex-direction: column;
        align-items: center;
    }
    .social-card span {
        font-size: 0.65rem;
    }
    .quick-link-card {
        padding: 10px 12px;
        font-size: 0.8rem;
        gap: 8px;
    }
    .quick-link-card i {
        font-size: 1rem;
    }
}
