/* ============================================================
   TheSMSBox - Main Stylesheet
   Design: Light theme, clean green & white
   ============================================================ */

:root {
    --primary:     #00a844;
    --primary-dark:#007d32;
    --primary-light:#e8f5e9;
    --primary-glow:#00a84415;
    --secondary:   #f8faf9;
    --dark:        #1a2e20;
    --surface:     #ffffff;
    --surface-2:   #f4f9f5;
    --accent:      #00796b;
    --text:        #1e3a28;
    --text-muted:  #5a7a65;
    --border:      #ddeee4;
    --white:       #ffffff;
    --danger:      #d32f2f;
    --warning:     #f57c00;
    --info:        #0277bd;
    --radius:      12px;
    --radius-lg:   20px;
    --shadow:      0 4px 24px rgba(0, 168, 68, 0.08);
    --shadow-lg:   0 12px 48px rgba(0, 168, 68, 0.14);
    --transition:  0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--secondary);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
}

.font-serif { font-family: 'Instrument Serif', serif; }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

section { padding: 90px 0; }

.text-primary-custom { color: var(--primary) !important; }
.bg-surface { background: var(--surface); }

/* ---- Topbar ---- */
.topbar {
    background: var(--secondary);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    font-size: 13px;
}
.topbar a {
    color: var(--text-muted);
    transition: var(--transition);
}
.topbar a:hover { color: var(--primary); }

/* ---- Navbar ---- */
#mainNav {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    transition: all 0.4s ease;
}
#mainNav.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow);
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
}
.brand-logo i {
    color: var(--primary);
    font-size: 26px;
}
.navbar-nav .nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background: var(--primary-glow);
}
.navbar-toggler { border-color: var(--border); }
.navbar-toggler-icon { filter: none; }

/* ---- Buttons ---- */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--dark) !important;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.btn-primary-custom:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,168,68,0.3);
}
.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary) !important;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    transition: var(--transition);
    cursor: pointer;
}
.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--dark) !important;
    transform: translateY(-1px);
}
.btn-lg.btn-primary-custom { padding: 14px 36px; font-size: 16px; }
.btn-lg.btn-outline-custom { padding: 12px 34px; font-size: 16px; }

/* ---- Section Labels ---- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-glow);
    border: 1px solid rgba(0,200,83,0.3);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0faf3 0%, #ffffff 50%, #e8f5e9 100%);
    overflow: hidden;
    padding: 100px 0 60px;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0,168,68,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,121,107,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.hero-title {
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero-title .highlight {
    color: var(--primary);
    position: relative;
}
.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
}
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.hero-stat-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}
.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
}
.hero-image {
    position: relative;
}
.hero-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,168,68,0.1);
}
.hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.stat-badge {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 20px;
    font-size: 13px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    color: var(--text);
}
.stat-badge.top-right { top: -15px; right: 20px; }
.stat-badge.bottom-left { bottom: -15px; left: 20px; }
.stat-badge strong { color: var(--primary); font-size: 18px; display: block; }

.msg-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.msg-bubble {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px 14px 14px 4px;
    padding: 12px 16px;
    font-size: 14px;
    position: relative;
    max-width: 85%;
    color: var(--text);
}
.msg-bubble.sent {
    background: var(--primary-light);
    border-color: rgba(0,168,68,0.2);
    border-radius: 14px 4px 14px 14px;
    align-self: flex-end;
    color: var(--dark);
}
.msg-time {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}
.whatsapp-icon {
    width: 40px; height: 40px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin-bottom: 16px;
}
.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 8px;
}
.typing-dots span {
    width: 7px; height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: bounce 1.4s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-8px); }
}

/* ---- Cards ---- */
.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 56px; height: 56px;
    background: var(--primary-light);
    border: 1px solid rgba(0,168,68,0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
}
.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.feature-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- Service Cards ---- */
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    border-color: rgba(0,168,68,0.35);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.service-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
}
.service-icon.green  { background: rgba(0,168,68,0.1); color: var(--primary); }
.service-icon.teal   { background: rgba(0,121,107,0.1); color: var(--accent); }
.service-icon.blue   { background: rgba(2,119,189,0.1); color: var(--info); }
.service-icon.yellow { background: rgba(245,124,0,0.1); color: var(--warning); }
.service-icon.red    { background: rgba(211,47,47,0.1); color: var(--danger); }
.service-icon.purple { background: rgba(123,31,162,0.1); color: #7b1fa2; }

/* ---- How It Works ---- */
.how-steps { position: relative; }
.step-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
}
.step-num {
    min-width: 52px; height: 52px;
    background: var(--primary-light);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    flex-shrink: 0;
}

/* ---- Stats Section ---- */
.stats-section {
    background: var(--primary);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 70px 0;
}
.stat-item { text-align: center; }
.stat-num {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.stat-label {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin-top: 8px;
}

/* ---- Testimonials ---- */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.testimonial-stars { color: #f59e0b; font-size: 14px; }
.testimonial-text {
    font-size: 15px;
    color: var(--text-muted);
    font-style: italic;
    margin: 16px 0;
}
.testimonial-author { font-weight: 700; color: var(--dark); }
.testimonial-role { font-size: 13px; color: var(--text-muted); }
.avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--primary-light);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
}

/* ---- Pricing ---- */
.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.pricing-card.popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(0,168,68,0.04) 0%, var(--white) 100%);
    box-shadow: 0 8px 32px rgba(0,168,68,0.12);
}
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
}
.pricing-price { font-size: 48px; font-weight: 800; color: var(--dark); }
.pricing-price sup { font-size: 22px; vertical-align: top; margin-top: 10px; }
.pricing-price sub { font-size: 16px; color: var(--text-muted); }
.pricing-features { list-style: none; text-align: left; margin: 24px 0; }
.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-features li i { color: var(--primary); }

/* ---- Blog ---- */
.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}
.blog-card:hover {
    border-color: rgba(0,168,68,0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--text-muted);
}
.blog-img img { width: 100%; height: 200px; object-fit: cover; }
.blog-body { padding: 24px; }
.blog-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
}
.blog-tag {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 50px;
}
.blog-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-excerpt { font-size: 14px; color: var(--text-muted); }
.blog-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.read-more:hover { gap: 10px; color: var(--primary-dark); }

/* ---- Single Blog Post ---- */
.post-hero {
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
    padding: 80px 0 60px;
}
.post-content {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.85;
}
.post-content h2, .post-content h3, .post-content h4 {
    color: var(--dark);
    margin: 32px 0 16px;
}
.post-content p { margin-bottom: 20px; }
.post-content ul, .post-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}
.post-content li { margin-bottom: 8px; }
.post-content strong { color: var(--dark); }
.post-content img {
    border-radius: var(--radius);
    margin: 24px 0;
    border: 1px solid var(--border);
}
.post-feature-img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    border: 1px solid var(--border);
}

/* ---- Page Hero ---- */
.page-hero {
    background: linear-gradient(135deg, #f0faf3 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 400px;
    background: radial-gradient(circle, rgba(0,168,68,0.07) 0%, transparent 70%);
}
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); }
.page-hero p { color: var(--text-muted); font-size: 18px; max-width: 600px; margin: 16px auto 0; }

/* ---- Forms ---- */
.form-label { color: var(--text); font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.form-control, .form-select {
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--text);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 15px;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,168,68,0.1);
    color: var(--dark);
}
.form-control::placeholder { color: #aac4b4; }
.form-select option { background: var(--white); color: var(--dark); }
textarea.form-control { min-height: 140px; resize: vertical; }

/* ---- Contact Page ---- */
.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.contact-info-card:hover { border-color: rgba(0,168,68,0.3); box-shadow: var(--shadow); }
.contact-info-icon {
    width: 52px; height: 52px;
    background: var(--primary-light);
    border: 1px solid rgba(0,168,68,0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ---- About Page ---- */
.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.team-card:hover { border-color: rgba(0,168,68,0.3); transform: translateY(-4px); box-shadow: var(--shadow); }
.team-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--primary-light);
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 auto 16px;
}
.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}
.value-card:hover { border-color: rgba(0,168,68,0.3); box-shadow: var(--shadow); }
.value-icon {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

/* ---- Alerts ---- */
.alert-success-custom {
    background: #e8f5e9;
    border: 1px solid rgba(0,168,68,0.3);
    color: var(--primary-dark);
    border-radius: var(--radius);
    padding: 16px 20px;
}
.alert-danger-custom {
    background: #ffebee;
    border: 1px solid rgba(211,47,47,0.3);
    color: var(--danger);
    border-radius: var(--radius);
    padding: 16px 20px;
}

/* ---- CTA Section ---- */
.cta-section {
    background: linear-gradient(135deg, #f0faf3 0%, #e8f5e9 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(0,168,68,0.06) 0%, transparent 70%);
}
.cta-section h2 { font-size: clamp(28px, 4vw, 48px); }
.cta-section p { color: var(--text-muted); font-size: 18px; max-width: 500px; margin: 16px auto 32px; }

/* ---- FAQ ---- */
.accordion-item {
    background: var(--white);
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.accordion-button {
    background: var(--white) !important;
    color: var(--dark) !important;
    font-weight: 600;
    border: none;
}
.accordion-button:not(.collapsed) {
    color: var(--primary) !important;
    box-shadow: none !important;
}
.accordion-button::after { filter: none; }
.accordion-body {
    background: var(--surface-2);
    color: var(--text-muted);
    font-size: 15px;
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    z-index: 9999;
    transition: var(--transition);
    animation: pulse-wp 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}
@keyframes pulse-wp {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 40px rgba(37,211,102,0.65); }
}

/* ---- Footer ---- */
.footer {
    background: #1a2e20;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 72px 0 0;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}
.footer-brand i { color: var(--primary); font-size: 24px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-heading {
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
}
.footer-contact i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-contact a:hover { color: var(--primary); }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 16px;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 48px 0 24px;
}
.footer-bottom {
    padding-bottom: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 14px; margin: 0; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.4); font-size: 14px; }
.footer-legal a:hover { color: var(--primary); }

/* ---- Breadcrumb ---- */
.breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-item.active { color: var(--primary); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* ---- Utility ---- */
.divider { border-color: var(--border); }
.bg-dark-surface { background: var(--surface); }
.text-muted-custom { color: var(--text-muted) !important; }

/* ---- Animations ---- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .hero { min-height: auto; padding: 80px 0 60px; }
    .hero-stats { gap: 20px; }
    .topbar .d-flex:first-child { display: none !important; }
}
@media (max-width: 767px) {
    section { padding: 60px 0; }
    .hero-title { font-size: 32px; }
    .stat-num { font-size: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
}
