/*
 * Akcel Pro White-Label Theme Styles
 */

/* Color & Typography Variables */
:root {
    --primary: #D54400;
    --primary-hover: #b83a00;
    --secondary: #F7CF47;
    --secondary-hover: #e5bd35;
    --title: #003B4A;
    --text-muted: #6c757d;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #4a5568;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .brand-text {
    font-family: 'Poppins', sans-serif;
    color: var(--title);
}

.text-primary-custom { color: var(--primary) !important; }
.text-secondary-custom { color: var(--secondary) !important; }
.text-dark-teal { color: var(--title) !important; }
.bg-primary-custom { background-color: var(--primary) !important; color: #ffffff !important; }
.bg-secondary-custom { background-color: var(--secondary) !important; color: var(--title) !important; }
.bg-dark-teal { background-color: var(--title) !important; }

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(213, 68, 0, 0.25);
}

.btn-secondary-custom {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--title);
    font-weight: 700;
    transition: all 0.3s ease;
}
.btn-secondary-custom:hover {
    background-color: var(--secondary-hover);
    border-color: var(--secondary-hover);
    color: var(--title);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(247, 207, 71, 0.3);
}

.btn-outline-primary-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-primary-custom:hover {
    background-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Header & Topbar */
.header-topbar {
    background-color: #002e3a;
    font-size: 13px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-topbar a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}
.header-topbar a:hover {
    color: var(--secondary);
}

.site-header {
    background: #ffffff;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}
.site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1020;
    padding: 10px 0;
    animation: slideDown 0.35s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.brand-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--title);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.brand-text span {
    color: var(--primary);
}

.main-navigation .navbar-nav > li > a {
    font-size: 15px;
    font-weight: 600;
    color: var(--title);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}
.main-navigation .navbar-nav > li > a:hover {
    color: var(--primary);
}
.main-navigation .navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}
.main-navigation .navbar-nav > li > a:hover::after {
    width: 100%;
}

.mobile-nav-toggle {
    background: none;
    border: 2px solid var(--title);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 20px;
    color: var(--title);
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 1090;
    box-shadow: 5px 0 25px rgba(0,0,0,0.15);
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
}
.mobile-nav-drawer.active {
    left: 0;
}
.mobile-menu-list li a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--title);
    border-bottom: 1px solid #f0f0f0;
}

/* Hero Section */
.hero-slider-section {
    min-height: 580px;
    position: relative;
}
.hero-slide {
    min-height: 580px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 59, 74, 0.92) 0%, rgba(0, 59, 74, 0.75) 50%, rgba(0, 59, 74, 0.3) 100%);
    z-index: 1;
}
.hero-title {
    line-height: 1.2;
    letter-spacing: -1px;
}
.swiper-pagination-bullet-active {
    background: var(--secondary) !important;
    width: 24px !important;
    border-radius: 12px !important;
}

/* Step Cards */
.step-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-color: #f1f3f5 !important;
}
.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08) !important;
}
.step-number-badge {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Cause Cards */
.cause-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-color: #edf2f7 !important;
}
.cause-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.09) !important;
}
.cause-thumb-wrap {
    overflow: hidden;
    height: 240px;
}
.cause-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.cause-card:hover .cause-img {
    transform: scale(1.05);
}
.text-title-link {
    color: var(--title);
    text-decoration: none;
    transition: color 0.2s ease;
}
.text-title-link:hover {
    color: var(--primary);
}

/* Urgent Banner */
.urgent-banner-section {
    background: linear-gradient(135deg, #003B4A 0%, #00232c 100%);
}
.backdrop-blur {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Story Cards */
.story-card {
    border-color: #f1f3f5 !important;
    transition: transform 0.3s ease;
}
.story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.07) !important;
}

/* Stats Counter */
.stat-card {
    padding: 20px 10px;
}
.stat-number {
    letter-spacing: -1px;
}

/* Blog Cards */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-color: #edf2f7 !important;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.09) !important;
}
.blog-thumb-wrap {
    overflow: hidden;
    height: 220px;
}
.blog-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-img {
    transform: scale(1.05);
}

/* Newsletter Section */
.newsletter-card {
    background: linear-gradient(135deg, var(--primary) 0%, #9d3200 100%);
    box-shadow: 0 15px 35px rgba(213, 68, 0, 0.25);
}

/* Footer */
.site-footer {
    background-color: #002832 !important;
}
.social-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-circle:hover {
    background: var(--secondary);
    color: var(--title);
    transform: translateY(-3px);
}
.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-links li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

/* Back to Top */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}
.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top-btn:hover {
    background-color: var(--title);
    color: var(--secondary);
    transform: translateY(-4px);
}

/* Helpers */
.max-w-700 { max-width: 700px; }
.max-w-800 { max-width: 800px; }
.max-w-600 { max-width: 600px; }
.z-index-2 { z-index: 2; }

.custom-logo{max-height:56px;width:auto;height:auto;}
.site-branding .custom-logo-link{display:flex;align-items:center;}
.navbar-nav .menu-item a{font-weight:700;color:#003B4A;text-decoration:none;}
.navbar-nav .menu-item a:hover{color:#D54400;}
.footer-links a{color:inherit;text-decoration:none;}
.footer-links a:hover{color:#F7CF47;}

