 :root {
     --saffron: #E8722A;
     --saffron-light: #F5924A;
     --saffron-pale: #FDF0E8;
     --brown: #7A4A28;
     --brown-dark: #5C3418;
     --ivory: #FAF6F0;
     --cream: #F5EFE6;
     --beige: #EDE4D8;
     --charcoal: #2D2016;
     --text-warm: #4A3020;
     --sage: #7A9B76;
     --sage-light: #A8C5A4;
     --gold: #C9963A;
     --gold-light: #E8C070;
     --white: #FFFFFF;
     --shadow-warm: 0 8px 40px rgba(120, 70, 30, 0.12);
     --shadow-card: 0 4px 24px rgba(120, 70, 30, 0.09);
     --radius: 20px;
     --radius-lg: 32px;
     --gdl: #E8C070;
     --iv: #FAF6F0;
     /* ===================================
       Compatibility Variables
    =================================== */
     --sf: var(--saffron);
     --sfl: var(--saffron-light);
     --sfp: var(--saffron-pale);
     --br: var(--brown);
     --brd: var(--brown-dark);
     --iv: var(--ivory);
     --cr: var(--cream);
     --be: var(--beige);
     --ch: var(--charcoal);
     --tw: var(--text-warm);
     --gd: var(--gold);
     --gdl: var(--gold-light);
     --sg: var(--sage);
     --sgl: var(--sage-light);
     --wh: var(--white);
     --sw: var(--shadow-warm);
     --sc: var(--shadow-card);
     /* Stronger hover shadow */
     --sh: 0 12px 40px rgba(120, 70, 30, .18);
     --r: var(--radius);
     --rl: var(--radius-lg);
     --tr: all .3s ease;
     /* Light saffron background */
     --sfm: rgba(232, 114, 42, .08);
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Poppins', sans-serif;
     background: var(--ivory);
     color: var(--charcoal);
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4,
 .serif {
     font-family: 'Cormorant Garamond', serif;
 }
a{
    text-decoration: none;
}
 /* ─── SCROLL REVEAL ─── */
 .reveal {
     opacity: 0;
     transform: translateY(32px);
     transition: opacity 0.7s ease, transform 0.7s ease;
 }

 .reveal.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .reveal-left {
     opacity: 0;
     transform: translateX(-40px);
     transition: opacity 0.7s ease, transform 0.7s ease;
 }

 .reveal-left.visible {
     opacity: 1;
     transform: translateX(0);
 }

 .reveal-right {
     opacity: 0;
     transform: translateX(40px);
     transition: opacity 0.7s ease, transform 0.7s ease;
 }

 .reveal-right.visible {
     opacity: 1;
     transform: translateX(0);
 }

 /* ─── NAVBAR ─── */
 .navbar-vedika {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
     padding: 14px 0;
     background: rgba(250, 246, 240, 0.95);
     backdrop-filter: blur(16px);
     border-bottom: 1px solid rgba(232, 114, 42, 0.12);
     transition: all 0.3s ease;
     width: 100%;
 }

 .navbar-vedika.scrolled {
     padding: 10px 0;
     box-shadow: 0 4px 24px rgba(120, 70, 30, 0.1);
 }

 .nav-brand {
     display: flex;
     align-items: center;
     gap: 12px;
     text-decoration: none;
 }

 .nav-logo-circle {
     width: 72px;
     height: 75px;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     flex-shrink: 0;
 }

 .nav-logo-circle svg {
     width: 28px;
     height: 28px;
     fill: white;
 }

 .nav-brand-text {
     line-height: 1;
 }

 .nav-brand-name {
     font-family: 'Cormorant Garamond', serif;
     font-size: 1.3rem;
     font-weight: 600;
     color: var(--saffron);
     display: block;
 }

 .nav-brand-sub {
     font-size: 0.6rem;
     font-weight: 400;
     color: var(--brown);
     letter-spacing: 0.12em;
     text-transform: uppercase;
     display: block;
 }

 .nav-link-item {
     font-size: 0.78rem;
     font-weight: 500;
     color: var(--text-warm);
     text-decoration: none;
     letter-spacing: 0.04em;
     padding: 6px 14px;
     transition: color 0.2s;
     position: relative;
 }

 .nav-link-item::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 14px;
     right: 14px;
     height: 1.5px;
     background: var(--saffron);
     transform: scaleX(0);
     transition: transform 0.3s;
 }

 .nav-link-item:hover {
     color: var(--saffron);
 }

 .nav-link-item:hover::after {
     transform: scaleX(1);
 }

 .nav-cta {
     background: var(--saffron);
     color: white;
     border: none;
     border-radius: 50px;
     padding: 9px 22px;
     font-family: 'Poppins', sans-serif;
     font-size: 0.78rem;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.3s;
     text-decoration: none;
     display: inline-block;
 }

 .nav-cta:hover {
     background: var(--brown);
     color: white;
     transform: translateY(-1px);
 }

 .hamburger {
     display: none;
     flex-direction: column;
     gap: 5px;
     cursor: pointer;
     padding: 4px;
 }

 .hamburger span {
     width: 24px;
     height: 2px;
     background: var(--saffron);
     border-radius: 2px;
     transition: all 0.3s;
 }

 /* ─── FOOTER ─── */
 .footer {
     background: var(--charcoal);
     padding: 64px 0 0;
 }

 .footer-brand h3 {
     font-family: 'Cormorant Garamond', serif;
     font-size: 1.8rem;
     color: var(--saffron);
     margin-bottom: 8px;
 }

 .footer-brand p {
     font-size: 0.78rem;
     color: rgba(255, 255, 255, 0.5);
     line-height: 1.7;
     max-width: 280px;
 }

 .footer-heading {
     font-size: 0.72rem;
     font-weight: 600;
     letter-spacing: 0.14em;
     text-transform: uppercase;
     color: var(--saffron);
     margin-bottom: 18px;
 }

 .footer-link {
     display: block;
     font-size: 0.8rem;
     color: rgba(255, 255, 255, 0.55);
     text-decoration: none;
     margin-bottom: 10px;
     transition: color 0.2s;
 }

 .footer-link:hover {
     color: var(--saffron-light);
 }

 .footer-contact-item {
     display: flex;
     gap: 10px;
     align-items: flex-start;
     margin-bottom: 14px;
 }

 .footer-contact-item i {
     color: var(--saffron);
     font-size: 0.9rem;
     margin-top: 2px;
     flex-shrink: 0;
 }

 .footer-contact-item span {
     font-size: 0.78rem;
     color: rgba(255, 255, 255, 0.6);
     line-height: 1.5;
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.08);
     padding: 20px 0;
     margin-top: 48px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: gap;
 }

 .footer-bottom p {
     font-size: 0.72rem;
     color: rgba(255, 255, 255, 0.3);
     margin: 0;
 }

 .social-icons {
     display: flex;
     gap: 10px;
 }

 .social-icon {
     width: 36px;
     height: 36px;
     border-radius: 10px;
     background: rgba(255, 255, 255, 0.07);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background 0.3s;
     text-decoration: none;
 }

 .social-icon:hover {
     background: var(--saffron);
 }

 .social-icon i {
     color: rgba(255, 255, 255, 0.6);
     font-size: 0.85rem;
     transition: color 0.3s;
 }

 .social-icon:hover i {
     color: white;
 }

 /* ─── FLOATING BUTTONS ─── */
 .floating-btns {
     position: fixed;
     bottom: 28px;
     right: 24px;
     display: flex;
     flex-direction: column;
     gap: 10px;
     z-index: 999;
 }

 .float-btn {
     width: 52px;
     height: 52px;
     border-radius: 50%;
     border: none;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     transition: all 0.3s;
     text-decoration: none;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
 }

 .float-wa {
     background: #25D366;
     color: white;
 }

 .float-wa:hover {
     background: #20b957;
     color: white;
     transform: scale(1.1);
 }

 .float-call {
     background: var(--saffron);
     color: white;
 }

 .float-call:hover {
     background: var(--brown);
     color: white;
     transform: scale(1.1);
 }

 /* ─── SWIPER OVERRIDES ─── */
 .swiper-pagination-bullet {
     background: var(--saffron);
 }

 .swiper-pagination-bullet-active {
     background: var(--brown);
 }



 /* ─── RESPONSIVE ─── */
 @media (max-width: 991px) {
     .hero-float-card {
         right: 10px;
     }

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

     .gallery-item.big {
         grid-column: span 2;
     }
 }

 @media (max-width: 767px) {
     section {
         padding: 55px 0 !important;
     }

     .hero-image-side {
         margin-top: 32px;
         padding-top: 0;
     }

     .hero-img-wrap img {
         height: 380px;
     }

     .hero-float-card {
         display: none;
     }

     .gallery-grid {
         grid-template-columns: 1fr 1fr !important;
     }

     .gallery-item.big {
         grid-column: span 2;
     }

     .gallery-item.big img {
         min-height: 240px;
     }

     .donation-inner {
         padding: 36px 24px;
     }

     .footer-bottom {
         flex-direction: column;
         gap: 12px;
         text-align: center;
     }

     .hamburger {
         display: flex;
     }

     .nav-links-desktop {
         display: none !important;
     }

     .mobile-menu {
         position: fixed;
         top: 0;
         left: 0;
         right: 0;
         bottom: 0;
         background: var(--ivory);
         z-index: 999;
         display: flex;
         flex-direction: column;
         align-items: center;
         justify-content: center;
         gap: 5px;
         transform: translateX(100%);
         transition: transform 0.35s ease;
     }

     .mobile-menu.open {
         transform: translateX(0);
     }

     .mobile-menu .nav-link-item {
         font-size: 1rem;
     }

     .mobile-close {
         position: absolute;
         top: 24px;
         right: 24px;
         background: none;
         border: none;
         cursor: pointer;
         font-size: 1.4rem;
         color: var(--charcoal);
     }
     .page-hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
}
.section-sub {
    font-size: .8rem !important;
}
.footer-brand {
    text-align: center;
}
.page-hero p {
    font-size: .8rem !important;
    color: rgba(255, 255, 255, .78);
    line-height: 1.7 !important;
}
.cta-band p {
    font-size: .75rem;
}

.footer-link {
    display: inline-block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
    padding-right: .6rem;
}

 }