:root {
    --sumseva-green: #76b63d;
    --sumseva-green-light: #8bcf4a;
    --sumseva-green-hover: #629c31;
    --success-green: #8bcf4a;
    --sumseva-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --card-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --card-shadow-hover: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

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

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

/* Navbar — matches global Navbar.css exactly */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-left: -15px;
    margin-top: 4px;
}

.navbar-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px;
    z-index: 2000;
}

.nav-backdrop {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.nav-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #D37632;
}

/* Dropdown styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-links .dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.nav-links .nav-dropdown:hover .dropdown-trigger {
    color: #D37632;
}

.nav-links .dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    display: block;
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-links .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 5px);
}

.nav-links .dropdown-item {
    display: block;
    padding: 12px 16px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-links .dropdown-item:hover {
    background-color: #fdf2f0;
    color: #D37632;
}

.dropdown-chevron {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

/* Mobile Dropdown styles */
@media (max-width: 900px) {
    .nav-dropdown {
        width: 100%;
    }

    .nav-links .nav-dropdown .dropdown-trigger {
        width: 100%;
        padding: 12px 0;
        justify-content: space-between;
        border-bottom: 1px solid #f9f9f9;
        font-size: 1.1rem;
    }

    .nav-links .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 15px;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.3s ease;
        min-width: 100%;
    }

    .nav-links .nav-dropdown.active .dropdown-menu {
        max-height: 200px;
        margin-top: 5px;
    }

    .nav-links .nav-dropdown.active .dropdown-chevron {
        transform: rotate(180deg);
    }
}

.btn-login-nav {
    background-color: #D37632 !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 10px;
    font-weight: 700 !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.btn-login-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(211,118,50,0.2);
    color: white !important;
}

#auth-nav-item {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.profile-nav-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 4px 4px 4px 12px;
    background: #fdf2f0;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.profile-nav-item:hover {
    background: #fdf2f0;
    box-shadow: 0 4px 12px rgba(211,118,50,0.1);
}

.user-name-shorthand {
    font-weight: 700 !important;
    color: #D37632 !important;
    font-size: 0.9rem !important;
}

.profile-circle {
    background-color: #D37632;
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    overflow: hidden;
    flex-shrink: 0;
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .mobile-menu-toggle { display: block; }
    .nav-backdrop { display: block; }
    .nav-content { padding: 0 20px; }
    .navbar-logo { height: 36px; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 25px 40px;
        gap: 12px;
        transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 1002;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .nav-links.mobile-open { right: 0; }

    .nav-links a {
        font-size: 1.1rem;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #f9f9f9;
    }

    .btn-login-nav {
        width: 100%;
        justify-content: center;
        padding: 14px !important;
        margin-top: 10px;
    }

    .profile-nav-item {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 15px;
        border-radius: 12px;
        margin-top: 10px;
    }
}


/* Page Header */
.page-header {
    text-align: center;
    padding: 2.5rem 1rem 1.25rem;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-header {
        padding: 3rem 1rem 1.5rem;
    }
    .page-header h1 {
        font-size: 2.2rem !important;
    }
    .page-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2.5rem 1rem 1rem;
    }
    .page-header h1 {
        font-size: 1.8rem !important;
    }
}

/* Filters Bar */
.filters-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* Compact gaps */
    margin: 0.75rem 0 1rem;
    flex-wrap: wrap;
    padding-bottom: 0;
}

.filter-search-container {
    flex: 2;
    min-width: 200px;
}

.filter-search {
    position: relative;
    width: 100%;
}

.filter-search input {
    width: 100%;
    height: 42px; /* Fixed height for consistency */
    padding: 0 2.5rem 0 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    background: white;
    transition: all 0.2s;
    color: #475569;
    display: block;
}

.filter-search input:focus {
    border-color: var(--sumseva-green-light);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.filter-search i, 
.filter-search svg {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    width: 18px !important;
    height: 18px !important;
    pointer-events: none;
    z-index: 5;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 3;
}

.filter-dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    height: 42px; /* Match search input height */
    padding: 0 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
    white-space: nowrap;
    transition: all 0.2s;
}

.dropdown-trigger:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 180px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    z-index: 100;
    display: none;
    padding: 0.5rem;
}

.filter-dropdown.active .dropdown-menu {
    display: block;
    animation: fadeInDown 0.2s ease-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #475569;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: #f1f5f9;
    color: var(--sumseva-green);
}

.filter-item.verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    background: #f0fdf4;
    color: var(--sumseva-green);
    border: 1px solid #dcfce7;
    transition: all 0.2s;
    white-space: nowrap;
}

.filter-item.verified.active {
    background: var(--sumseva-green);
    color: white;
}

.sort-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.card-image-wrap {
    position: relative;
    height: 190px;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(118, 182, 61, 0.95);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-tag.featured { background: #D37632; }
.badge-tag.impact { background: #D37632; }
.badge-tag.new { background: var(--sumseva-green-light); }
.badge-tag.status-ongoing { 
    top: 3rem; 
    background: #fff7ed; 
    color: #ea580c; 
    border: 1px solid #ffedd5;
}
.badge-tag.status-secured {
    top: 3rem;
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #dcfce7;
}
.badge-tag.status-ongoing { 
    top: 3rem; 
    background: #fff7ed; 
    color: #ea580c; 
    border: 1px solid #ffedd5;
}

.category-icon-circle {
    position: absolute;
    bottom: -18px;
    left: 1.5rem;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    overflow: hidden; /* clips any logo shape (rectangle, pyramid, etc.) into a circle */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 10;
    border: 3px solid white;
}

/* Ensures any NGO logo — regardless of its original shape — renders as a circle */
.ngo-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.category-icon-inner {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.education-bg { background: #eff6ff; color: #2563eb; }
.environment-bg { background: #f0fdf4; color: #16a34a; }
.animal-bg { background: #fff7ed; color: #ea580c; }
.health-bg { background: #fdf2f8; color: #db2777; }
.community-bg { background: #f5f3ff; color: #7c3aed; }

.card-content {
    padding: 1.25rem 1rem 0.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
    line-height: 1.35;
    display: block;
}

.ngo-partner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.82rem;
    margin-bottom: 0.75rem;
}

.ngo-partner i.verified-icon {
    color: #10b981;
}

.project-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #475569;
    font-size: 0.82rem;
}

.stat-row.sponsor-row {
    color: #16a34a;
    font-weight: 600;
    margin-top: 4px;
}

.stat-row i {
    width: 16px;
    color: #94a3b8;
}

/* Progress Bar Styles */
.fund-progress-container {
    margin-bottom: 0.85rem;
}

.fund-stats-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.raised-amount {
    color: var(--sumseva-green);
}

.goal-amount {
    color: #64748b;
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background-color: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--sumseva-green);
    border-radius: 4px;
    transition: width 0.5s ease-out;
}

.impact-clarity-text {
    font-size: 0.76rem;
    color: #475569;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #f8fafc;
    padding: 0.35rem 0.5rem;
    border-radius: 6px;
    border-left: 3px solid var(--sumseva-green);
}

.impact-clarity-text i {
    color: var(--sumseva-green);
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.tag {
    padding: 0.22rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
}

.tag.education { background: #eff6ff; color: #3b82f6; }
.tag.beginner { background: #f1f5f9; color: #64748b; }
.tag.environment { background: #f0fdf4; color: #22c55e; }
.tag.outdoor { background: #f0fdf4; color: #22c55e; }
.tag.high-impact { background: #f0fdf4; color: #059669; }
.tag.animal { background: #fff7ed; color: #f97316; }
.tag.flexible { background: #fff7ed; color: #f97316; }
.tag.health { background: #fdf2f8; color: #db2777; }
.tag.community { background: #f5f3ff; color: #7c3aed; }

.card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: auto;
}

.btn {
    padding: 0.62rem 0.85rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline {
    border: 1px solid var(--border-color);
    color: #475569;
    background: white;
}

.btn-outline:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.btn-primary {
    background: var(--sumseva-green);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--sumseva-green-hover);
}

.btn.secured {
    background: #10b981 !important;
}

.btn.secured:hover {
    background: #059669 !important;
}

.btn.reserved {
    background: #f1f5f9 !important;
    color: #64748b !important;
    border: 1px solid #e2e8f0 !important;
    cursor: not-allowed;
    opacity: 0.8;
}

/* Promo Banners */
.promo-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

.promo-card {
    display: flex;
    align-items: center;
    padding: 2rem;
    border-radius: 20px;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.promo-card.urgent {
    background: #fff1f0;
    border: 1px solid #ffccc7;
}

.promo-card.featured-banner {
    background: #fffbe6;
    border: 1px solid #ffe58f;
}

.promo-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.urgent .promo-icon i { color: #f5222d; }
.featured-banner .promo-icon i { color: #faad14; }

.promo-info {
    flex-grow: 1;
}

.promo-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.urgent .promo-info h4 { color: #cf1322; }
.featured-banner .promo-info h4 { color: #d48806; }

.promo-info p {
    font-size: 0.9rem;
    color: #595959;
}

.btn-promo {
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    text-decoration: none;
}

.urgent .btn-promo {
    background: #f5222d;
    color: white;
}

.featured-banner .btn-promo {
    background: #d48806;
    color: white;
}

/* Why Section */
.why-section {
    background: #f8fafc;
    padding: 5rem 0;
    text-align: center;
}

.why-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--sumseva-green);
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

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

.why-icon-circle {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.why-icon-circle i {
    color: var(--sumseva-green-light);
}

.why-item h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* CTA Footer Banner */
.cta-banner {
    margin: 4rem 0;
    background: var(--sumseva-green);
    border-radius: 24px;
    padding: 4rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 500px;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-white {
    background: white;
    color: var(--sumseva-green);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-illustration {
    position: absolute;
    right: 5%;
    bottom: 0;
    height: 90%;
    z-index: 1;
}

.cta-illustration img {
    height: 100%;
}

/* Profile styles already defined above */

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; align-items: center; }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1.25rem;
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        border-top: 1px solid var(--border-color);
        z-index: 999;
    }

    .nav-links.active { display: flex; }

    .project-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .promo-banners { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; gap: 2rem; }
    .cta-banner { flex-direction: column; text-align: center; padding: 3rem 1.5rem; }
    .cta-illustration { display: none; }

    .filters-bar {
        flex-direction: column;
        gap: 0.75rem;
        margin: 0.75rem 0 1.25rem;
    }
    .filter-search-container,
    .filter-group {
        flex: unset;
        width: 100%;
    }
    .filter-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    .sort-container {
        width: 100%;
        margin-left: 0;
    }
    .card-content {
        padding: 2rem 1.25rem 1.25rem;
    }
}

/* ═══ FOOTER ═══ */
.footer {
    background: #1A1A1A;
    padding: 80px 0 60px;
    color: white;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.footer-brand {
    flex: 1.5;
    min-width: 280px;
}
.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 25px;
}
.footer-logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 10px;
}
.footer-logo-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}
.footer-brand p {
    display: none; /* Removed tagline as requested */
}
.footer-links-column {
    flex: 1;
    min-width: 160px;
}
.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--success-green, #059669);
}
.footer-newsletter-text {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.subscribe-form {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.subscribe-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: white;
    font-family: inherit;
    outline: none;
    width: 100%;
}
.subscribe-btn {
    background: var(--success-green, #059669);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}
.subscribe-btn:hover {
    background: #047857;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}
.social-icon:hover {
    background: #D37632;
    transform: translateY(-3px);
}
@media (max-width: 768px) {
    .footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
}
/* Global Loading Styles - Premium Logo Pulse (matches React Experiences exactly) */
.loading-screen {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  grid-column: 1 / -1;
}

.loading-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loading-logo-pulse {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(211, 118, 50, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logo-pulse 2s ease-in-out infinite;
}

.loading-logo {
  width: 54px !important;
  height: 54px !important;
  object-fit: contain;
  display: block;
}

@keyframes logo-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(211, 118, 50, 0.35); }
  50%       { box-shadow: 0 0 0 18px rgba(211, 118, 50, 0); }
}

.loading-dots {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.loading-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #D37632;
  opacity: 0.3;
  animation: dot-wave 1.4s ease-in-out infinite;
}

.loading-dot:nth-child(1) { animation-delay: 0s; }
.loading-dot:nth-child(2) { animation-delay: 0.2s; }
.loading-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dot-wave {
  0%, 80%, 100% { transform: scale(0.8); opacity: 0.3; }
  40%           { transform: scale(1.3); opacity: 1; }
}

.loading-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.02em;
}

.social-icon i {
    width: 20px;
    height: 20px;
}


