/* ============================================
   CARE WELFARE - Professional Theme Layer
   Inspired by modern charity / NGO layouts
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
    --pro-primary: #e85d04;
    --pro-primary-dark: #dc2f02;
    --pro-secondary: #003049;
    --pro-accent: #2a9d8f;
    --pro-gold: #f4a261;
    --pro-dark: #1a1a2e;
    --pro-light: #faf8f5;
    --pro-muted: #6b7280;
    --pro-radius: 16px;
    --pro-radius-lg: 24px;
    --pro-shadow: 0 20px 60px rgba(0, 48, 73, 0.12);
    --pro-shadow-hover: 0 30px 80px rgba(232, 93, 4, 0.18);
    --pro-font: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    --pro-heading: 'DM Serif Display', Georgia, serif;
}

body {
    font-family: var(--pro-font);
    background: #fff;
}

/* ---- Preloader ---- */
#page-preloader {
    position: fixed;
    inset: 0;
    background: var(--pro-secondary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
    animation: preloaderPulse 1.5s ease infinite;
}

.preloader-bar {
    width: 160px;
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 99px;
    overflow: hidden;
}

.preloader-bar span {
    display: block;
    height: 100%;
    width: 40%;
    background: var(--pro-primary);
    border-radius: 99px;
    animation: preloaderSlide 1.2s ease infinite;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes preloaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ---- Top Bar ---- */
.top-bar {
    background: var(--pro-secondary);
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    padding: 10px 0;
    position: relative;
    z-index: 999;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.top-bar a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.top-bar a:hover { color: var(--pro-gold); }

.top-bar-social {
    display: flex;
    gap: 12px;
}

.top-bar-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.top-bar-social a:hover {
    background: var(--pro-primary);
    color: #fff;
}

/* ---- Navbar upgrade ---- */
.navbar {
    top: 0;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: top 0.35s ease, box-shadow 0.35s ease;
    z-index: 1000;
    overflow: visible !important;
}

body.has-topbar .navbar {
    top: 44px;
}

.navbar.scrolled {
    top: 0 !important;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

body.has-topbar .navbar.scrolled ~ .top-bar,
body.has-topbar.scrolled-past-topbar .top-bar {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.top-bar {
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.logo span {
    font-family: var(--pro-font);
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--pro-secondary);
}

.logo span em {
    color: var(--pro-primary);
    font-style: normal;
}

.btn-donate {
    background: linear-gradient(135deg, var(--pro-primary) 0%, var(--pro-primary-dark) 100%);
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(232, 93, 4, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-donate::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-donate:hover::before {
    transform: translateX(100%);
}

/* ---- Hero Slider ---- */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0 !important;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1.08);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,48,73,0.82) 0%, rgba(0,48,73,0.45) 50%, rgba(232,93,4,0.25) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-slide-text {
    max-width: 720px;
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: slideUp 0.8s ease both;
}

.hero-badge i { color: var(--pro-gold); }

.hero-slide-text h1 {
    font-family: var(--pro-heading);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: slideUp 0.8s ease 0.15s both;
}

.hero-slide-text h1 span {
    color: var(--pro-gold);
}

.hero-slide-text p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.92;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 580px;
    animation: slideUp 0.8s ease 0.3s both;
}

.hero-slide-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease 0.45s both;
}

.hero-slide-actions .btn-primary {
    background: linear-gradient(135deg, var(--pro-primary), var(--pro-primary-dark));
    border: none;
    box-shadow: 0 12px 32px rgba(232,93,4,0.4);
}

.hero-slide-actions .btn-secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.8);
    color: #fff;
}

.hero-slide-actions .btn-secondary:hover {
    background: #fff;
    color: var(--pro-secondary);
}

.hero-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.hero-dot.active {
    background: var(--pro-primary);
    border-color: var(--pro-primary);
    transform: scale(1.2);
}

.hero-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 5;
    pointer-events: none;
}

.hero-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hero-arrow:hover {
    background: var(--pro-primary);
    border-color: var(--pro-primary);
    transform: scale(1.05);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- Marquee ---- */
.marquee-section {
    background: var(--pro-primary);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.marquee-section::before {
    left: 0;
    background: linear-gradient(to right, var(--pro-primary), transparent);
}

.marquee-section::after {
    right: 0;
    background: linear-gradient(to left, var(--pro-primary), transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}

.marquee-item i {
    color: var(--pro-gold);
    font-size: 12px;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- Section headers ---- */
.section-tag {
    display: inline-block;
    background: rgba(232, 93, 4, 0.1);
    color: var(--pro-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--pro-heading);
    font-weight: 400;
    color: var(--pro-secondary);
}

.section-subtitle {
    color: var(--pro-muted);
    max-width: 640px;
    margin: 0 auto;
}

/* ---- Home: Mission split ---- */
.home-mission {
    padding: 100px 0;
    background: var(--pro-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-images {
    position: relative;
}

.mission-img-main {
    border-radius: var(--pro-radius-lg);
    overflow: hidden;
    box-shadow: var(--pro-shadow);
}

.mission-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.mission-images:hover .mission-img-main img {
    transform: scale(1.03);
}

.mission-img-float {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 180px;
    border-radius: var(--pro-radius);
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: var(--pro-shadow);
}

.mission-img-float img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.mission-experience {
    position: absolute;
    top: 24px;
    left: -24px;
    background: var(--pro-primary);
    color: #fff;
    padding: 24px;
    border-radius: var(--pro-radius);
    text-align: center;
    box-shadow: var(--pro-shadow);
    min-width: 120px;
}

.mission-experience strong {
    display: block;
    font-size: 36px;
    font-family: var(--pro-heading);
    line-height: 1;
}

.mission-experience span {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
}

.mission-content h2 {
    font-family: var(--pro-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--pro-secondary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.mission-content > p {
    color: var(--pro-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.mission-features {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
}

.mission-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border-radius: var(--pro-radius);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}

.mission-feature:hover {
    transform: translateX(8px);
    box-shadow: var(--pro-shadow);
    border-color: rgba(232,93,4,0.2);
}

.mission-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--pro-primary), var(--pro-primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.mission-feature h4 {
    color: var(--pro-secondary);
    margin-bottom: 4px;
    font-size: 17px;
}

.mission-feature p {
    color: var(--pro-muted);
    font-size: 14px;
    margin: 0;
}

/* ---- Home: Programs preview ---- */
.home-programs {
    padding: 100px 0;
    background: #fff;
}

.programs-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.program-preview-card {
    background: var(--pro-light);
    border-radius: var(--pro-radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.program-preview-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pro-primary), var(--pro-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.program-preview-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--pro-shadow-hover);
    background: #fff;
}

.program-preview-card:hover::before {
    transform: scaleX(1);
}

.program-preview-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(232,93,4,0.12), rgba(232,93,4,0.05));
    color: var(--pro-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.4s;
}

.program-preview-card:hover .program-preview-icon {
    background: linear-gradient(135deg, var(--pro-primary), var(--pro-primary-dark));
    color: #fff;
    transform: rotateY(180deg);
}

.program-preview-card h3 {
    color: var(--pro-secondary);
    font-size: 18px;
    margin-bottom: 10px;
}

.program-preview-card p {
    color: var(--pro-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.program-preview-link {
    color: var(--pro-primary);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.program-preview-link:hover { gap: 10px; }

/* ---- Home: Causes carousel ---- */
.home-causes {
    padding: 100px 0;
    background: var(--pro-secondary);
    color: #fff;
    overflow: hidden;
}

.home-causes .section-tag {
    background: rgba(255,255,255,0.12);
    color: var(--pro-gold);
}

.home-causes .section-title { color: #fff; }
.home-causes .section-subtitle { color: rgba(255,255,255,0.75); }

.causes-carousel {
    position: relative;
    margin-top: 48px;
}

.causes-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cause-slide-card {
    flex: 0 0 calc(33.333% - 16px);
    background: #fff;
    border-radius: var(--pro-radius-lg);
    overflow: hidden;
    color: var(--pro-dark);
    transition: transform 0.4s ease;
}

.cause-slide-card:hover {
    transform: translateY(-8px);
}

.cause-slide-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.cause-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.cause-slide-card:hover .cause-slide-img img {
    transform: scale(1.08);
}

.cause-slide-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--pro-primary);
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.cause-slide-body {
    padding: 24px;
}

.cause-slide-body h3 {
    font-size: 18px;
    color: var(--pro-secondary);
    margin-bottom: 8px;
}

.cause-slide-body p {
    color: var(--pro-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.cause-slide-progress {
    height: 8px;
    background: #eee;
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 12px;
}

.cause-slide-progress span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--pro-primary), var(--pro-gold));
    border-radius: 99px;
    transition: width 1.2s ease;
}

.cause-slide-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--pro-muted);
    margin-bottom: 16px;
}

.cause-slide-meta strong { color: var(--pro-secondary); }

.causes-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--pro-primary);
    border-color: var(--pro-primary);
}

/* ---- Testimonials ---- */
.testimonials-section {
    padding: 100px 0;
    background: var(--pro-light);
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 48px auto 0;
}

.testimonial-slide {
    display: none;
    text-align: center;
    animation: fadeInTestimonial 0.6s ease;
}

.testimonial-slide.active { display: block; }

@keyframes fadeInTestimonial {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

.testimonial-quote {
    font-size: 48px;
    color: var(--pro-primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-text {
    font-family: var(--pro-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--pro-secondary);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-author img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--pro-primary);
}

.testimonial-author-info h4 {
    color: var(--pro-secondary);
    font-size: 17px;
    margin-bottom: 2px;
}

.testimonial-author-info span {
    color: var(--pro-muted);
    font-size: 14px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.testimonial-dot.active {
    background: var(--pro-primary);
    width: 28px;
    border-radius: 99px;
}

/* ---- Dual CTA ---- */
.dual-cta-section {
    padding: 0;
}

.dual-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.dual-cta-card {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}

.dual-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.dual-cta-card:hover::before { transform: scale(1.08); }

.dual-cta-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,48,73,0.85), rgba(0,48,73,0.6));
    transition: background 0.4s;
}

.dual-cta-card:hover::after {
    background: linear-gradient(135deg, rgba(232,93,4,0.85), rgba(0,48,73,0.7));
}

.dual-cta-card.volunteer::before {
    background-image: url('https://images.unsplash.com/photo-1559027615-cd4628902d4a?w=800');
}

.dual-cta-card.donate-cta::before {
    background-image: url('https://images.unsplash.com/photo-1593113598332-cd288d649433?w=800');
}

.dual-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    transform: translateY(0);
    transition: transform 0.4s;
}

.dual-cta-card:hover .dual-cta-inner {
    transform: translateY(-8px);
}

.dual-cta-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
    border: 1px solid rgba(255,255,255,0.3);
}

.dual-cta-inner h3 {
    font-family: var(--pro-heading);
    font-size: 28px;
    margin-bottom: 8px;
}

.dual-cta-inner p {
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 15px;
}

.dual-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--pro-secondary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.dual-cta-card:hover .dual-cta-btn {
    background: var(--pro-primary);
    color: #fff;
}

/* ---- Stats upgrade ---- */
.stats {
    background: linear-gradient(135deg, var(--pro-secondary) 0%, #004e89 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(232,93,4,0.08);
    top: -200px;
    right: -100px;
}

.stat-card {
    position: relative;
    padding: 24px;
    border-radius: var(--pro-radius);
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.08);
}

/* ---- Card enhancements (global) ---- */
.program-card,
.cause-card,
.team-card {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.program-card:hover,
.cause-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--pro-shadow-hover);
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-card .team-image img {
    transition: transform 0.5s ease;
}

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

.cause-card .cause-image img {
    transition: transform 0.6s ease;
}

.cause-card:hover .cause-image img {
    transform: scale(1.1);
}

.progress-fill {
    background: linear-gradient(90deg, var(--pro-primary), var(--pro-gold)) !important;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* ---- Footer upgrade ---- */
.footer {
    background: var(--pro-dark);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pro-primary), var(--pro-gold), var(--pro-accent));
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--pro-primary) !important;
    transform: translateY(-4px);
}

/* ---- Back to top ---- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pro-primary), var(--pro-primary-dark));
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(232,93,4,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* ---- Scroll reveal ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

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

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

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

/* ---- Auth pages shared ---- */
.auth-page-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pro-secondary) 0%, #004e89 50%, var(--pro-primary-dark) 100%);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.auth-page-wrap::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    top: -200px;
    right: -200px;
}

.auth-page-wrap::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(232,93,4,0.08);
    bottom: -100px;
    left: -100px;
}

.auth-card-pro {
    background: #fff;
    border-radius: var(--pro-radius-lg);
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
    max-width: 480px;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    animation: authSlideIn 0.6s ease;
}

@keyframes authSlideIn {
    from { opacity: 0; transform: translateY(30px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.auth-card-header {
    background: linear-gradient(135deg, var(--pro-secondary), #004e89);
    color: #fff;
    padding: 40px 32px;
    text-align: center;
}

.auth-card-header img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.3);
    margin-bottom: 16px;
    object-fit: cover;
}

.auth-card-header h1 {
    font-family: var(--pro-heading);
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 6px;
}

.auth-card-body {
    padding: 36px 32px;
}

.auth-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.auth-back-link:hover { color: var(--pro-gold); }

.hero-slider .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: rgba(255,255,255,0.7);
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.hero-slider .scroll-indicator:hover {
    color: #fff;
}

.causes-carousel {
    overflow: hidden;
}

.causes-track {
    will-change: transform;
}

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

    .cause-slide-card {
        flex: 0 0 calc(50% - 12px);
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-img-float,
    .mission-experience {
        display: none;
    }

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

    .trust-bar-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .transparency-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .transparency-chart {
        padding: 28px;
    }

    .transparency-badges {
        grid-template-columns: 1fr 1fr;
    }

    .fund-item {
        grid-template-columns: 110px 1fr 40px;
    }
}

@media (max-width: 768px) {
    body.has-topbar .navbar { top: 0 !important; }
    .top-bar { display: none; }

    body.has-topbar .hero-slider,
    body.has-topbar .hero {
        padding-top: 62px !important;
    }

    /* CRITICAL: Fix full-width on mobile */
    .hero-slider,
    .hero-slide,
    .marquee-section,
    .trust-bar,
    .home-mission,
    .home-programs,
    .home-causes,
    .testimonials-section,
    .dual-cta-section,
    .stats,
    .transparency-section,
    .impact-strip {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        box-sizing: border-box !important;
    }

    .hero-slide-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 16px !important;
    }

    .hero-slide-text {
        max-width: 100% !important;
    }

    .trust-bar-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .trust-item {
        padding: 10px 12px !important;
    }

    .mission-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .programs-preview-grid,
    .dual-cta-grid {
        grid-template-columns: 1fr !important;
    }

    .cause-slide-card {
        flex: 0 0 100%;
    }

    .hero-arrows { display: none; }

    .dual-cta-card { min-height: 260px; }

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

    /* Transparency Section - Mobile Fix */
    .transparency-section {
        padding: 60px 0 !important;
    }

    .transparency-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .transparency-chart {
        padding: 24px 16px !important;
    }

    .transparency-chart h3 {
        font-size: 1.2rem !important;
    }

    .fund-item {
        grid-template-columns: 90px 1fr 36px !important;
        gap: 8px !important;
    }

    .fund-label {
        font-size: 12px !important;
    }

    .transparency-badges {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .transparency-content h2 {
        font-size: 1.6rem !important;
    }

    .transparency-badge {
        padding: 12px !important;
    }

    /* Impact Strip - Mobile Fix */
    .impact-strip {
        padding: 50px 0 !important;
    }

    .impact-cards {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .impact-card-img {
        height: 180px !important;
    }

    .impact-card-body {
        padding: 18px !important;
    }

    .impact-card-body h3 {
        font-size: 16px !important;
    }

    .nav-dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 0 0 16px !important;
        display: none !important;
        background: transparent !important;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block !important;
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .home-mission,
    .home-programs,
    .home-causes,
    .testimonials-section {
        padding: 60px 0;
    }

    .trust-bar-grid {
        grid-template-columns: 1fr;
    }

    .impact-cards {
        grid-template-columns: 1fr;
    }

    .amount-buttons {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Transparency extra small */
    .transparency-section {
        padding: 50px 0 !important;
    }

    .transparency-chart {
        padding: 18px 12px !important;
    }

    .fund-item {
        grid-template-columns: 80px 1fr 32px !important;
        gap: 6px !important;
    }

    .fund-label {
        font-size: 11px !important;
    }

    .fund-pct {
        font-size: 12px !important;
    }

    .transparency-badge {
        padding: 10px !important;
    }

    .transparency-badge i {
        font-size: 18px !important;
    }

    .transparency-badge h4 {
        font-size: 13px !important;
    }

    /* Impact extra small */
    .impact-card-img {
        height: 160px !important;
    }
}

/* ============================================
   PROFESSIONAL UPGRADE — Trust, Nav, Donate
   ============================================ */

/* Utility classes */
.logo-img {
    height: 40px;
    width: auto;
    border-radius: 5px;
    object-fit: contain;
}

.footer-logo-img {
    height: 35px;
    width: auto;
    border-radius: 5px;
    margin-right: 10px;
    object-fit: contain;
}

.btn-apply-now {
    background: var(--pro-primary);
    color: #fff;
    border: 2px solid var(--pro-primary);
    padding: 6px 10px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-left: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12.5px;
    white-space: nowrap;
}

.btn-apply-now:hover {
    background: var(--pro-primary-dark);
    border-color: var(--pro-primary-dark);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    text-align: center;
    display: block;
    padding: 12px;
}

.form-hint {
    color: var(--pro-muted);
    display: block;
    margin-top: 5px;
    font-size: 13px;
}

.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.mt-20 { margin-top: 20px; }

/* Nav dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.3s;
}

.nav-dropdown.open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none !important;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 160px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,48,73,0.15);
    list-style: none !important;
    padding: 6px 0;
    margin: 0;
    z-index: 99999 !important;
    border: 1px solid rgba(0,0,0,0.06);
}

.nav-dropdown.open .nav-dropdown-menu {
    display: block !important;
}

.nav-dropdown-menu .nav-link {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
}

.nav-dropdown-menu .nav-link::after {
    display: none;
}

.nav-dropdown-menu .nav-link:hover {
    background: var(--pro-light);
    color: var(--pro-primary);
}

/* Trust bar */
.trust-bar {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 28px 0;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: var(--pro-radius);
    transition: background 0.3s;
}

.trust-item:hover {
    background: var(--pro-light);
}

.trust-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(232,93,4,0.12), rgba(232,93,4,0.05));
    color: var(--pro-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    color: var(--pro-secondary);
    font-size: 14px;
    line-height: 1.3;
}

.trust-item span {
    color: var(--pro-muted);
    font-size: 12px;
}

/* Transparency section */
.transparency-section {
    padding: 100px 0;
    background: #fff;
}

.transparency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.transparency-chart {
    background: var(--pro-light);
    border-radius: var(--pro-radius-lg);
    padding: 40px;
    box-shadow: var(--pro-shadow);
}

.transparency-chart h3 {
    font-family: var(--pro-heading);
    color: var(--pro-secondary);
    font-size: 1.5rem;
    margin-bottom: 28px;
    text-align: center;
}

.fund-breakdown {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fund-item {
    display: grid;
    grid-template-columns: 140px 1fr 48px;
    align-items: center;
    gap: 14px;
}

.fund-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--pro-secondary);
}

.fund-bar {
    height: 10px;
    background: rgba(0,48,73,0.08);
    border-radius: 99px;
    overflow: hidden;
}

.fund-bar span {
    display: block;
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--pro-primary), var(--pro-gold));
    transition: width 1.2s ease;
}

.fund-pct {
    font-weight: 700;
    color: var(--pro-primary);
    font-size: 14px;
    text-align: right;
}

.transparency-content h2 {
    font-family: var(--pro-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--pro-secondary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.transparency-content > p {
    color: var(--pro-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.transparency-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.transparency-badge {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--pro-light);
    border-radius: var(--pro-radius);
    border: 1px solid rgba(0,0,0,0.04);
}

.transparency-badge i {
    color: var(--pro-accent);
    font-size: 22px;
    margin-top: 2px;
}

.transparency-badge h4 {
    color: var(--pro-secondary);
    font-size: 15px;
    margin-bottom: 4px;
}

.transparency-badge p {
    color: var(--pro-muted);
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

/* Impact stories strip */
.impact-strip {
    padding: 80px 0;
    background: var(--pro-light);
}

.impact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.impact-card {
    background: #fff;
    border-radius: var(--pro-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,48,73,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--pro-shadow-hover);
}

.impact-card-img {
    height: 200px;
    overflow: hidden;
}

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

.impact-card:hover .impact-card-img img {
    transform: scale(1.06);
}

.impact-card-body {
    padding: 24px;
}

.impact-card-tag {
    display: inline-block;
    background: rgba(232,93,4,0.1);
    color: var(--pro-primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.impact-card-body h3 {
    color: var(--pro-secondary);
    font-size: 18px;
    margin-bottom: 8px;
}

.impact-card-body p {
    color: var(--pro-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Donate section upgrade */
.donate-section {
    background: linear-gradient(135deg, var(--pro-secondary) 0%, #004e89 60%, var(--pro-primary-dark) 100%) !important;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.donate-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    top: -200px;
    right: -100px;
}

.donate-form {
    border-radius: var(--pro-radius-lg) !important;
    box-shadow: var(--pro-shadow) !important;
}

.donate-impact-note {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--pro-radius);
    padding: 14px 18px;
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    gap: 10px;
}

.donate-impact-note i {
    color: var(--pro-gold);
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.payment-badge {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.amount-btn.active,
.amount-btn:hover {
    background: linear-gradient(135deg, var(--pro-primary), var(--pro-primary-dark)) !important;
    border-color: var(--pro-primary) !important;
}

.donate-form .impact-amount-text {
    background: var(--pro-light);
    border-radius: var(--pro-radius);
    padding: 12px 16px;
    font-size: 14px;
    color: var(--pro-secondary);
    margin-bottom: 16px;
    text-align: center;
}

.donate-form .impact-amount-text strong {
    color: var(--pro-primary);
}

/* QR Donate Modal */
.donate-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 99999;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 12px 24px;
    backdrop-filter: blur(4px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.donate-modal-overlay.active {
    display: flex;
}

.donate-modal {
    background: #fff;
    border-radius: var(--pro-radius-lg);
    max-width: 460px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.35);
    overflow: visible;
    animation: authSlideIn 0.4s ease;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.donate-modal-close {
    position: absolute;
    top: -14px;
    right: -14px;
    background: #fff;
    border: 2px solid var(--pro-primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    color: var(--pro-primary);
    line-height: 1;
    z-index: 10;
    transition: background 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.donate-modal-close:hover {
    background: var(--pro-primary);
    color: #fff;
}

.donate-modal-header {
    background: linear-gradient(135deg, var(--pro-primary), var(--pro-primary-dark));
    padding: 28px 24px;
    color: #fff;
    border-radius: var(--pro-radius-lg) var(--pro-radius-lg) 0 0;
}

.donate-modal-header h2 {
    margin: 0;
    font-family: var(--pro-heading);
    font-size: 1.6rem;
    font-weight: 400;
}

.donate-modal-header p {
    margin: 8px 0 0;
    font-size: 14px;
    opacity: 0.9;
}

.donate-modal-body {
    padding: 20px 24px 24px;
}

.donate-modal-amount {
    background: var(--pro-light);
    border-radius: var(--pro-radius);
    padding: 10px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--pro-secondary);
}

.donate-modal-amount strong {
    color: var(--pro-primary);
    font-size: 1.25rem;
}

.donate-modal-qr {
    border: 3px solid var(--pro-primary);
    border-radius: var(--pro-radius);
    padding: 10px;
    display: inline-block;
    margin-bottom: 16px;
}

.donate-modal-qr img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    display: block;
}

.donate-modal-bank {
    background: #fff8f0;
    border: 2px solid rgba(232,93,4,0.25);
    border-radius: var(--pro-radius);
    padding: 14px;
    margin-bottom: 14px;
    text-align: left;
}

.donate-modal-bank-row {
    margin-bottom: 10px;
}

.donate-modal-bank-row:last-child {
    margin-bottom: 0;
}

.donate-modal-bank-row label {
    display: block;
    color: var(--pro-muted);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.donate-modal-bank-row p {
    margin: 0;
    color: var(--pro-secondary);
    font-size: 13px;
    font-weight: 600;
}

.donate-modal-bank-row.iban p {
    color: var(--pro-primary);
    font-size: 13px;
    letter-spacing: 0.5px;
    word-break: break-all;
}

.donate-modal-footer {
    font-size: 12px;
    color: var(--pro-muted);
    margin: 0;
}

.donate-modal-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.donate-modal-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.4);
    color: #fff;
}

@media (max-width: 480px) {
    .donate-modal-overlay {
        padding: 36px 10px 20px;
    }
    .donate-modal {
        margin: 10px auto 20px;
        border-radius: 16px;
    }
    .donate-modal-header {
        padding: 20px 16px;
        border-radius: 16px 16px 0 0;
    }
    .donate-modal-header h2 {
        font-size: 1.3rem;
    }
    .donate-modal-body {
        padding: 16px;
    }
    .donate-modal-qr img {
        width: 140px;
        height: 140px;
    }
    .donate-modal-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }
}

/* Gallery filter buttons */
.gallery-filters {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.gallery-filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--pro-secondary);
    background: #fff;
    color: var(--pro-secondary);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-family: var(--pro-font);
    font-size: 14px;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
    background: var(--pro-secondary);
    color: #fff;
}

.gallery-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item-pro {
    position: relative;
    overflow: hidden;
    border-radius: var(--pro-radius);
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item-pro:hover {
    transform: translateY(-4px);
}

.gallery-item-pro img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item-pro:hover img {
    transform: scale(1.05);
}

.gallery-item-pro .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #fff;
    padding: 20px;
}

.gallery-item-pro .gallery-overlay h4 {
    margin: 0 0 5px;
    font-size: 16px;
}

.gallery-item-pro .gallery-overlay p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* Footer professional */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 20px;
}

.footer-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.footer-trust-item i {
    color: var(--pro-gold);
}

.footer-legal-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: var(--pro-gold);
}

.footer-legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}


