/*
 * main.css
 * Global Styles for Shivsevak Pratishthan Hindusthan NGO
 * Premium design system with animations, page components, and interactive elements
 */

/* ========================================================================
   1. PAGE LOADER
   ======================================================================== */
.sf-page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #2D1412 0%, #120A09 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 99999;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.7s ease;
    overflow: hidden;
}

.sf-page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.sf-loader-backdrop-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.25) 0%, rgba(123, 30, 30, 0) 70%);
    border-radius: 50%;
    animation: loaderGlowPulse 3s ease-in-out infinite alternate;
    pointer-events: none;
}

.sf-loader-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 420px;
    padding: 20px;
}

.sf-loader-ring {
    position: absolute;
    top: -15px;
    width: 130px;
    height: 130px;
    border: 2px dashed rgba(212, 175, 55, 0.4);
    border-top: 2px solid var(--primary-color, #FF6B00);
    border-radius: 50%;
    animation: loaderRingSpin 6s linear infinite;
}

.sf-loader-shield {
    width: 100px;
    height: 100px;
    position: relative;
    z-index: 2;
    animation: loaderShieldFloat 2.5s ease-in-out infinite alternate;
}

.sf-loader-shield svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 25px rgba(255, 107, 0, 0.6));
}

.sf-loader-progress-wrap {
    width: 220px;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sf-loader-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}

.sf-loader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #FF6B00, #D4AF37, #FF9F43);
    border-radius: 20px;
    transition: width 0.15s ease-out;
    box-shadow: 0 0 12px rgba(255, 107, 0, 0.8);
}

.sf-loader-percent {
    color: #D4AF37;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
}

.sf-loader-quote-box {
    color: #FFFDD0;
    font-family: 'Yatra One', 'Outfit', sans-serif;
    font-size: 15px;
    margin-top: 18px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0.9;
    padding: 0 15px;
    line-height: 1.4;
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.sf-loader-skip-btn {
    margin-top: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.4);
    color: #FFFDD0;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.sf-loader-skip-btn:hover {
    background: var(--primary-color, #FF6B00);
    color: #FFFFFF;
    border-color: var(--primary-color, #FF6B00);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

@keyframes loaderGlowPulse {
    0% { transform: scale(0.9); opacity: 0.2; }
    100% { transform: scale(1.3); opacity: 0.4; }
}

@keyframes loaderRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes loaderShieldFloat {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-8px) scale(1.05); }
}

/* ========================================================================
   2. GOOGLE TRANSLATE — HIDE ALL VISUAL ARTIFACTS
   ======================================================================== */
#google_translate_element {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-te-gadget,
.goog-te-gadget-icon,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight {
    display: none !important;
    visibility: hidden !important;
}

.goog-te-gadget-simple {
    display: none !important;
}

.skiptranslate {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
}

html {
    background-color: var(--bg-dark, #1E120F) !important;
    height: 100%;
}

body {
    top: 0 !important;
    position: static !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-cream, #FDFBF7);
}

footer,
.sf-footer {
    margin-top: auto !important;
    margin-bottom: 0 !important;
    background-color: var(--bg-dark, #1E120F) !important;
    width: 100%;
}

iframe.goog-te-menu-frame,
iframe.skiptranslate,
body > iframe {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
}

/* Fix Google Translate body shift */
html.translated-ltr,
html.translated-rtl {
    margin-top: 0 !important;
}

html.translated-ltr body,
html.translated-rtl body {
    top: 0 !important;
}

/* ========================================================================
   2.5 GLOBAL NAV PILLS OVERRIDE — Eliminate Bootstrap Default Blue
   ======================================================================== */
.nav-pills .nav-link {
    color: var(--primary-color, #FF6B00);
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    color: var(--secondary-color, #7B1E1E);
}

.nav-pills .nav-link.active, 
.nav-pills .show > .nav-link {
    background-color: var(--primary-color, #FF6B00) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

/* Dark Background Section Tabs (e.g. #sf-home-impact-hub) */
#sf-home-impact-hub .nav-pills .nav-link,
#sfPillTabs .nav-link {
    color: rgba(255, 253, 240, 0.85) !important;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.3);
}

#sf-home-impact-hub .nav-pills .nav-link:hover,
#sfPillTabs .nav-link:hover {
    color: #FFFFFF !important;
    background: rgba(255, 107, 0, 0.3);
}

#sf-home-impact-hub .nav-pills .nav-link.active,
#sfPillTabs .nav-link.active {
    background: linear-gradient(135deg, #FF6B00 0%, #7B1E1E 100%) !important;
    color: #FFFFFF !important;
    border-color: #FF6B00 !important;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.5);
}

/* Light Background Section Tabs (e.g. #aboutNavTab) */
#aboutNavTab .nav-link {
    color: var(--secondary-color, #7B1E1E) !important;
    background: transparent;
}

#aboutNavTab .nav-link:hover {
    color: var(--primary-color, #FF6B00) !important;
}

#aboutNavTab .nav-link.active {
    background: var(--primary-color, #FF6B00) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

/* ========================================================================
   3. PAGE HERO BANNER (Shared across all pages)
   ======================================================================== */
.sf-page-hero {
    background: linear-gradient(135deg, rgba(123, 30, 30, 0.95) 0%, rgba(30, 18, 15, 0.98) 100%);
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 70px;
    color: #FFFDD0;
    text-align: center;
}

.sf-page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.sf-page-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.sf-page-hero .container {
    position: relative;
    z-index: 2;
}

.sf-page-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: 12px;
    color: #FFFFFF;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sf-page-hero .sf-hero-subtitle {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #FF6B00;
    margin-bottom: 15px;
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.sf-page-hero p {
    font-size: 16px;
    color: rgba(255, 253, 240, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.sf-page-hero .sf-breadcrumb {
    margin-top: 20px;
    font-size: 13px;
}

.sf-page-hero .sf-breadcrumb a {
    color: rgba(255, 253, 240, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.sf-page-hero .sf-breadcrumb a:hover {
    color: #FF6B00;
}

.sf-page-hero .sf-breadcrumb span {
    color: #FF6B00;
    margin: 0 8px;
}

/* Hero bottom curve */
.sf-hero-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: var(--bg-cream, #FDFBF7);
    clip-path: ellipse(60% 100% at 50% 100%);
}

/* ========================================================================
   4. SECTION HEADERS
   ======================================================================== */
.sf-section {
    padding: 80px 0;
    font-family: 'Outfit', sans-serif;
}

.sf-section-light {
    background: var(--bg-cream, #FDFBF7);
}

.sf-section-white {
    background: #FFFFFF;
}

.sf-section-dark {
    background: var(--secondary-color, #7B1E1E);
    color: #FFFFFF;
}

.sf-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sf-section-header .sf-tag {
    color: var(--primary-color, #FF6B00);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
}

.sf-section-header h2 {
    font-weight: 800;
    color: var(--secondary-color, #7B1E1E);
    font-size: clamp(26px, 4vw, 38px);
    margin-bottom: 15px;
}

.sf-section-dark .sf-section-header h2 {
    color: #FFFFFF;
}

.sf-section-header .sf-divider {
    width: 80px;
    height: 3px;
    background: var(--primary-color, #FF6B00);
    margin: 0 auto;
    border-radius: 2px;
}

/* ========================================================================
   5. PREMIUM CARDS
   ======================================================================== */
.sf-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 35px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border-bottom: 4px solid var(--primary-color, #FF6B00);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sf-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(123, 30, 30, 0.03) 100%);
    transition: height 0.4s ease;
}

.sf-card:hover::before {
    height: 100%;
}

.sf-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.12);
}

.sf-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color, #FF6B00);
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.sf-card:hover .sf-card-icon {
    background: var(--primary-color, #FF6B00);
    color: #FFFFFF;
    transform: scale(1.1) rotate(5deg);
}

.sf-card h3 {
    font-weight: 700;
    font-size: 20px;
    color: var(--secondary-color, #7B1E1E);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.sf-card p {
    color: #6A5B55;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Card variant with image */
.sf-card-img {
    padding: 0;
    overflow: hidden;
}

.sf-card-img .sf-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sf-card-img:hover .sf-card-image {
    transform: scale(1.05);
}

.sf-card-img .sf-card-body {
    padding: 25px 22px;
}

/* ========================================================================
   6. TEAM MEMBER CARDS
   ======================================================================== */
.sf-team-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    height: 100%;
}

.sf-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.12);
}

.sf-team-photo-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: linear-gradient(135deg, #7B1E1E 0%, #1E120F 100%);
}

.sf-team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sf-team-card:hover .sf-team-photo {
    transform: scale(1.08);
}

.sf-team-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: rgba(255, 107, 0, 0.3);
}

.sf-team-socials {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    transition: bottom 0.4s ease;
}

.sf-team-card:hover .sf-team-socials {
    bottom: 0;
}

.sf-team-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.sf-team-socials a:hover {
    background: #FF6B00;
    transform: translateY(-3px);
}

.sf-team-info {
    padding: 25px 20px;
}

.sf-team-name {
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary-color, #7B1E1E);
    margin-bottom: 5px;
}

.sf-team-designation {
    font-size: 13px;
    color: #FF6B00;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================================================
   7. TESTIMONIAL CARDS
   ======================================================================== */
.sf-testimonial-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 35px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    border-left: 4px solid var(--primary-color, #FF6B00);
}

.sf-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.1);
}

.sf-testimonial-card .sf-quote-icon {
    font-size: 40px;
    color: rgba(255, 107, 0, 0.15);
    margin-bottom: 15px;
}

.sf-testimonial-card .sf-testimonial-text {
    font-size: 15px;
    color: #6A5B55;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.sf-testimonial-card .sf-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sf-testimonial-card .sf-author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 107, 0, 0.2);
}

.sf-testimonial-card .sf-author-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B00, #7B1E1E);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.sf-testimonial-card .sf-author-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--secondary-color, #7B1E1E);
}

.sf-testimonial-card .sf-author-designation {
    font-size: 12px;
    color: #6A5B55;
}

.sf-testimonial-card .sf-stars {
    color: #FFB800;
    font-size: 13px;
    margin-bottom: 12px;
}

/* ========================================================================
   8. EVENT CARDS
   ======================================================================== */
.sf-event-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    height: 100%;
}

.sf-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.1);
}

.sf-event-image {
    height: 200px;
    background: linear-gradient(135deg, #7B1E1E, #FF6B00);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sf-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-event-image .sf-event-icon {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.3);
}

.sf-event-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF6B00;
    color: #FFFFFF;
    padding: 8px 14px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
}

.sf-event-date-badge .sf-day {
    font-size: 22px;
    display: block;
}

.sf-event-date-badge .sf-month {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sf-event-body {
    padding: 25px 22px;
}

.sf-event-body h3 {
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary-color, #7B1E1E);
    margin-bottom: 10px;
}

.sf-event-body p {
    font-size: 14px;
    color: #6A5B55;
    line-height: 1.6;
    margin-bottom: 15px;
}

.sf-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #6A5B55;
}

.sf-event-meta i {
    color: #FF6B00;
    margin-right: 5px;
}

/* ========================================================================
   9. BLOG POST CARDS
   ======================================================================== */
.sf-blog-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    height: 100%;
}

.sf-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.1);
}

.sf-blog-image {
    height: 220px;
    background: linear-gradient(135deg, #1E120F, #7B1E1E);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sf-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sf-blog-card:hover .sf-blog-image img {
    transform: scale(1.05);
}

.sf-blog-image .sf-blog-placeholder-icon {
    font-size: 48px;
    color: rgba(255, 107, 0, 0.3);
}

.sf-blog-body {
    padding: 25px 22px;
}

.sf-blog-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #FF6B00;
    margin-bottom: 10px;
    display: inline-block;
}

.sf-blog-body h3 {
    font-weight: 700;
    font-size: 19px;
    color: var(--secondary-color, #7B1E1E);
    margin-bottom: 10px;
    line-height: 1.3;
}

.sf-blog-body h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.sf-blog-body h3 a:hover {
    color: #FF6B00;
}

.sf-blog-excerpt {
    font-size: 14px;
    color: #6A5B55;
    line-height: 1.6;
    margin-bottom: 18px;
}

.sf-blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.sf-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #FF6B00;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}

.sf-read-more:hover {
    gap: 10px;
    color: #7B1E1E;
}

/* ========================================================================
   10. GALLERY MASONRY
   ======================================================================== */
.sf-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.sf-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 250px;
    background: #f0f0f0;
}

.sf-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sf-gallery-item:hover img {
    transform: scale(1.1);
}

.sf-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #FFFFFF;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sf-gallery-item:hover .sf-gallery-overlay {
    transform: translateY(0);
}

.sf-gallery-overlay h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

/* Gallery Filter Buttons */
.sf-gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}

.sf-filter-btn {
    padding: 8px 22px;
    border: 2px solid rgba(123, 30, 30, 0.2);
    border-radius: 50px;
    background: transparent;
    color: var(--text-color, #2D221E);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Outfit', sans-serif;
}

.sf-filter-btn:hover,
.sf-filter-btn.active {
    background: #FF6B00;
    color: #FFFFFF;
    border-color: #FF6B00;
}

/* ========================================================================
   11. CONTACT FORM
   ======================================================================== */
.sf-contact-form .form-control,
.sf-contact-form .form-select {
    border: 2px solid #e8e4df;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    transition: all 0.3s;
}

.sf-contact-form .form-control:focus,
.sf-contact-form .form-select:focus {
    border-color: #FF6B00;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.sf-contact-form label {
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary-color, #7B1E1E);
    margin-bottom: 6px;
}

.sf-contact-info-card {
    background: linear-gradient(135deg, #7B1E1E 0%, #1E120F 100%);
    border-radius: 12px;
    padding: 40px 30px;
    color: #FFFDD0;
    height: 100%;
}

.sf-contact-info-card h3 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 25px;
    color: #FFFFFF;
}

.sf-contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.sf-contact-info-item .sf-icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255, 107, 0, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B00;
    font-size: 18px;
    flex-shrink: 0;
}

.sf-contact-info-item h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #FFFFFF;
}

.sf-contact-info-item p {
    font-size: 13px;
    color: rgba(255, 253, 240, 0.7);
    margin: 0;
}

.sf-contact-info-item a {
    color: rgba(255, 253, 240, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.sf-contact-info-item a:hover {
    color: #FF6B00;
}

/* ========================================================================
   12. FORM & APPLICATION STYLES
   ======================================================================== */
.sf-form-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.sf-form-card h2 {
    font-weight: 700;
    font-size: 26px;
    color: var(--secondary-color, #7B1E1E);
    margin-bottom: 8px;
}

.sf-form-card p.sf-form-desc {
    font-size: 14px;
    color: #6A5B55;
    margin-bottom: 30px;
}

/* ========================================================================
   13. DONATION AMOUNT CARDS
   ======================================================================== */
.sf-donate-option {
    border: 2px solid #e8e4df;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #FFFFFF;
}

.sf-donate-option:hover,
.sf-donate-option.selected {
    border-color: #FF6B00;
    background: rgba(255, 107, 0, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.1);
}

.sf-donate-option .sf-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary-color, #7B1E1E);
    margin-bottom: 5px;
}

.sf-donate-option .sf-label {
    font-size: 12px;
    color: #6A5B55;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================================================
   14. COUNTER ANIMATION
   ======================================================================== */
.sf-counter {
    font-size: 42px;
    font-weight: 800;
    color: #FF6B00;
}

.sf-counter-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================================================
   15. CTA BUTTONS — GLOBAL
   ======================================================================== */
.sf-btn-primary {
    background: #FF6B00;
    color: #FFFFFF;
    border: 2px solid #FF6B00;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.sf-btn-primary:hover {
    background: transparent;
    color: #FF6B00;
}

.sf-btn-secondary {
    background: transparent;
    color: var(--secondary-color, #7B1E1E);
    border: 2px solid var(--secondary-color, #7B1E1E);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sf-btn-secondary:hover {
    background: var(--secondary-color, #7B1E1E);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(123, 30, 30, 0.3);
}

/* ========================================================================
   16. RESPONSIVE — PAGES
   ======================================================================== */
@media (max-width: 991px) {
    .sf-page-hero {
        min-height: 280px;
        padding: 120px 0 50px;
    }

    .sf-section {
        padding: 50px 0;
    }
}

@media (max-width: 575px) {
    .sf-page-hero {
        min-height: 240px;
        padding: 100px 0 40px;
    }

    .sf-page-hero h1 {
        font-size: 24px;
    }

    .sf-form-card {
        padding: 25px 18px;
    }

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

    .sf-gallery-item {
        height: 160px;
    }
}
