* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

a {
    text-decoration: none;
}

/* Global Card Pointer */
.card,
.service-card,
.team-card,
.contact-card,
.what-we-do-card,
.testimonial-card,
.values-card {
    cursor: pointer;
}

:root {
    --primary: #C9A24A;
    /* Transitioning to Gold */
    --gold-primary: #C9A24A;
    --gold-hover: #B8963F;
    --text-main: #1F2937;
    --text-sec: #4B5563;
    --bg-main: #F9F7F5;
    --bg-card: #FCFBF9;
    --text-dark: #1F2937;
    --bg-light: #F9F7F5;
    --card-bg: #FCFBF9;
}

body {
    color: var(--text-sec);
    background: var(--bg-main);
}

html {
    scrollbar-gutter: stable;
    background-color: #111822;
    /* Match loader background to hide gutter flash */
    scroll-behavior: smooth;
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(201, 162, 74, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

#back-to-top:hover {
    background: var(--gold-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(201, 162, 74, 0.5);
}

#back-to-top .material-symbols-outlined {
    font-size: 24px;
}

@media (max-width: 768px) {
    #back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Loader Styles */
#loader-wrapper {
    position: fixed;
    inset: 0;
    background: #111822;
    /* Softer dark background */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.05);
    border-top: 5px solid var(--gold-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 1.25rem;
}

/* Force header and footer container width to prevent Tailwind overrides on inner pages */
.header .container,
.footer .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    width: 100% !important;
    padding: 0 1.25rem !important;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent !important;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: -1;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    padding: 10px 0 !important;
}

.header.scrolled::before {
    height: 100%;
}

.header.scrolled::before {
    height: 100%;
}

/* About Section Specifics */
#about {
    background-color: #f8fcfa;
    /* Subtle off-white for separation */
    padding: 100px 0;
    /* Increased padding for premium feel */
}

/* Services Section Specifics */
#services {
    background-color: #f2f7f5;
    /* Cool gray/green for contrast */
    padding: 100px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 10vh;
    min-height: 100px;
    position: relative;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* Navigation Structure */
.nav-content {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-between;
    /* Space out links container and actions */
}

#navbar-links {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    /* Perfect Centering Logic */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-actions {
    margin-left: auto;
    /* Push the actions to the far right */
}

.nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--gold-primary);
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .material-symbols-outlined {
    font-size: 32px;
}

/* Scrolled/Dark Nav Styles */
.header.scrolled #navbar-links,
.header.dark-nav #navbar-links {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
}

.header.scrolled .nav a,
.header.dark-nav .nav a {
    color: var(--text-main);
}

.header.scrolled .menu-toggle,
.header.dark-nav .menu-toggle {
    color: var(--text-main);
}

/* Media Query: Tablet & Mobile */
@media (max-width: 991px) {
    .nav-content {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #111822;
        /* Matches loader background */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 40px;
    }

    .header.menu-active .nav-content {
        right: 0;
    }

    .menu-toggle {
        display: block;
    }

    #navbar-links {
        position: static;
        transform: none;
        flex-direction: column;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0;
        gap: 30px;
    }

    #navbar-links a {
        font-size: 1.5rem;
        color: white !important;
    }

    .nav .btn-primary {
        scale: 1.2;
    }

    .nav-actions {
        margin-left: 0;
        /* Reset desktop auto-margin */
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

.hero {
    height: 100vh;
    min-height: 700px;
    background: url("../images/hero/kerala_support_hero_1773168419206.png") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.85));
}

.hero-content {
    z-index: 1;
    color: #fff;
    text-align: center;
    /* max-width: 900px; - REMOVED for full width alignment */
    /* margin: 0 auto; - Default container auto margin is fine */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    /* Increased gap for premium spacing */
    padding-top: 30px;
}

/* Badge */
.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-primary);
}

/* Typography */
.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        gap: 30px;
    }
}

.hero h1 span {
    color: var(--gold-primary);
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    /* Slightly wider than before but still readable */
    opacity: 0.95;
    /* Increased opacity slightly */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    /* Better readability */
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.btn-primary {
    background: var(--gold-primary);
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

/* Shine effect - REMOVED per user request for simpler zoom/color change */
.btn-primary::before {
    display: none;
}

/* Ensure text is above shine */
.btn-primary>* {
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    background: var(--gold-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: none !important;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: none !important;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #fff;
}

.btn-outline .material-symbols-outlined {
    font-size: 1.2rem;
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    opacity: 0.8;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-item .material-symbols-outlined {
    font-size: 1.2rem;
    color: var(--gold-primary);
}

.section {
    padding: 80px 0;
}

.light-bg {
    background: rgba(249, 250, 251);
}

.gray-bg {
    background: #f6f8f6;
}

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 30px;
}

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

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

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

.section-desc {
    max-width: 700px;
    text-align: center;
    color: #55605c;
    line-height: 1.6;
    margin-bottom: 0;
}

.team-card {
    background: transparent;
    padding: 20px;
    border-radius: 0;
    text-align: center;
    border: none;
    box-shadow: none;
}

.img-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border-radius: 50%;
    padding: 5px;
    border: 1px solid rgba(201, 162, 74, 0.3);
    /* Thin gold outline ring */
    background-color: #ffffff;
}

/* Inner white space is automatic via padding, now the image itself */
.team-card img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.placeholder-img {
    transform: scale(1.35) !important;
    object-position: center !important;
}

.team-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.team-card .role {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.center-btn {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.btn-view-all {
    background: #F4E9D3;
    color: var(--text-main);
    border: 1px solid #E5D5B8;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-view-all .material-symbols-outlined {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-view-all:hover {
    background: var(--gold-primary);
    color: #fff;
    gap: 12px;
}



/* Footer */
.footer {
    background: #f9fafb;
    /* Match contact section */
    border-top: 1px solid #e5e7eb;
    /* Slightly darker border for visibility */
    padding: 80px 0 30px;
    margin-top: 0;
    /* Remove gap */
}

.footer-top {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.logo-icon {
    font-size: 2rem;
    color: #fff;
    background: var(--gold-primary);
    padding: 8px;
    border-radius: 50%;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-brand p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 400px;
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #6b7280;
    transition: color 0.2s;
    font-size: 0.95rem;
}

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

.footer-newsletter p {
    color: #6b7280;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #e5e5e5;
    border-right: none;
    /* Seamless */
    border-radius: 50px 0 0 50px;
    outline: none;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    background: #fff;
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.newsletter-form input:focus {
    border-color: #e5e5e5;
}

.newsletter-form button {
    background: var(--gold-primary);
    color: #fff;
    border: none;
    padding: 0 25px;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--gold-hover);
}

.disclaimer {
    font-size: 0.75rem !important;
    opacity: 0.6;
}

.footer-bottom {
    border-top: none;
    /* Reference didn't really show a separator line, but we can keep subtle or remove */
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9ca3af;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    border: 1px solid #f3f4f6;
    /* Very light */
    text-decoration: none;
    transition: all 0.3s ease;
    background: #fff;
}

.social-icon:hover {
    background: #f9fafb;
    color: var(--text-dark);
    border-color: #e5e7eb;
}

.social-icon .material-symbols-outlined {
    font-size: 1.2rem;
    /* Use filled variation setting if globally available or specific */
}

/* Mission Box */
.mission-box {
    border-left: 4px solid var(--gold-primary);
    padding-left: 30px;
}

.mission-box h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.mission-box p {
    color: #55605c;
    line-height: 1.7;
    font-size: 1.05rem;
}

.mission-box p.italic {
    font-style: italic;
}

/* Values Card specific overrides if needed, otherwise reuses service-card */
.values-card {
    background: var(--bg-card);
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-newsletter {
        grid-column: 1 / -1;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 50px 30px;
    }

    .footer-brand,
    .footer-newsletter {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-brand .footer-logo {
        justify-content: center;
    }

    .footer-brand p {
        margin: 0 auto;
        max-width: 100%;
    }

    .footer-logo img {
        height: 70px !important;
    }

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

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
        /* Stack everything at very narrow widths */
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 12px;
        overflow: hidden;
        gap: 10px;
    }

    .newsletter-form input {
        border-radius: 12px !important;
        border-right: 1px solid #e5e5e5;
    }

    .newsletter-form button {
        border-radius: 12px !important;
        padding: 14px;
    }
}

@media (max-width: 900px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .nav nav {
        display: none;
    }
}

/* About Section Specifics */
.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(94, 99, 81, 0.45);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.about-content {
    padding: 20px 0 20px 40px;
    /* Added left padding for breathing room */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    /* Consistent gap */
}

.section-label {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.about-content h2 {
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.green-divider {
    width: 60px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 2px;
    margin-bottom: 30px;
}

.about-content p {
    color: #4a5551;
    /* Slightly darker for better readability */
    line-height: 1.8;
    /* Increased line-height for comfort */
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.about-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #d1d5db;
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
    color: #000;
}

@media (max-width: 900px) {
    .about-content h2 {
        font-size: 2.2rem;
    }
}

/* What We Do Section */
.what-we-do-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    height: 100%;
}

.what-we-do-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.what-we-do-card .icon-box {
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.what-we-do-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* Gradient Background Wrapper */
.gradient-bg {
    background: linear-gradient(0deg, var(--bg-main) 0%, #f9f6ef 20%, var(--bg-main) 100%);
    padding-bottom: 60px;
    /* Ensure gradient is visible at bottom */
}

/* Stats Section (Adjusted for Wrapper) */
.stats-section {
    background: transparent;
    /* Let gradient show through */
    padding: 60px 0 80px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6b7280;
}

/* Testimonial Section */
.testimonial-card {
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.testimonial-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.testimonial-image-wrapper img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #F4E9D3;
}

.quote-icon {
    font-size: 3rem;
    color: #F4E9D3;
    /* Light gold quote */
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-feature-settings: "pnum" on, "lnum" on;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
}

.testimonial-author span {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Page Spacing */
.page-top-spacer {
    padding-top: 180px;
}

/* Service Section Specifics */
/* Service Section Specifics - Updated */
.section-header {
    margin-bottom: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-label {
    display: block;
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -1px;
    max-width: 800px;
}

.green-divider {
    width: 60px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 2px;
    margin-top: 25px;
}

.service-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    text-align: left;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    /* Refined base shadow */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #F4E9D3;
    /* Light gold */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--gold-primary);
}

.icon-box .material-symbols-outlined {
    font-size: 28px;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 1rem;
    color: #6b7280;
    /* Gray-500 equivalent */
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
    /* Push read more to bottom if needed */
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: gap 0.2s ease;
    margin-top: auto;
}

.read-more .material-symbols-outlined {
    font-size: 1.1rem;
    font-weight: 700;
}

.read-more:hover {
    gap: 10px;
}

/* Service CTA Card */
.cta-wrapper {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 80px 40px;
    /* More padding */
    text-align: center;
    margin-top: 80px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    /* Stronger but soft shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    /* max-width: 900px; - REMOVED for full width alignment */
    /* margin-left: auto; */
    /* margin-right: auto; */
    position: relative;
    overflow: hidden;
    /* For shine effects? */
}

.cta-wrapper h3 {
    font-size: 2.2rem;
    font-weight: 900;
    /* Extra bold */
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.cta-wrapper p {
    color: #55605c;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 20px;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-light {
    background: #f3f4f6;
    color: #1f2937;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: #e5e7eb;
    color: #000;
}

/* Contact Section */
/* .contact-container { */
/* max-width: 700px; - REMOVED for full width alignment */
/* margin: 0 auto; */
/* } */

.contact-cards {
    display: grid;
    /* Switch to grid for full width usage */
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    margin-top: 40px;
}

.contact-card {
    background: var(--bg-card);
    padding: 30px;
    /* Slightly more padding */
    border-radius: 24px;
    /* Increased radius */
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-card .card-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-card .icon-square {
    width: 60px;
    height: 60px;
    background: #F4E9D3;
    border-radius: 16px;
    /* Slightly rounder to match card */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
}

.contact-card .icon-square .material-symbols-outlined {
    font-size: 1.5rem;
    font-variation-settings: 'FILL' 1;
    /* Filled icons */
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.card-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #889995;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-value {
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.2s;
}

.card-value:hover {
    color: var(--gold-primary);
}

.status-dot-small {
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--gold-primary);
}

.contact-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.btn-contact-lg {
    background: var(--gold-primary);
    color: #fff;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: none !important;
}

.btn-contact-lg:hover {
    background: var(--gold-hover);
    transform: scale(1.02);
    box-shadow: none !important;
}

.response-time {
    font-size: 0.9rem;
    color: #889995;
    font-style: italic;
}

@media (max-width: 600px) {
    .contact-cards {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }

    .contact-card {
        padding: 20px;
    }

    .contact-card .card-content {
        gap: 15px;
    }

    .contact-card .icon-square {
        width: 50px;
        height: 50px;
    }

    .card-value {
        font-size: 1rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    /* Official WhatsApp Green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: wa-pulse 2s infinite;
    text-decoration: none;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    background: #128C7E;
    /* Darker WhatsApp Green */
    color: white;
}

.whatsapp-float svg {
    fill: white;
}

.volunteer-images img {
    object-position: center 10%;
    transition: transform 0.3s ease;
}