/* ===================================================
   assets/css/style.css - Klinik Gigi CMS Public Styles
   =================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #2D6A4F;
    --primary-dark: #1B4332;
    --primary-light: #52B788;
    --accent: #95D5B2;
    --light-green: #D8F3DC;
    --text-dark: #1a2e1f;
    --text-muted: #6c757d;
    --bg-light: #f8fdf9;
    --white: #ffffff;
    --border: #e8f5e9;
    --shadow: 0 4px 20px rgba(45,106,79,0.12);
    --shadow-hover: 0 10px 40px rgba(45,106,79,0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --font: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

section { padding: 80px 0; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--primary-dark);
}

.section-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    font-family: var(--font);
    font-weight: 600;
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background: var(--light-green);
    color: var(--primary-dark);
    border-color: var(--light-green);
}

.btn-outline-white {
    background: transparent;
    border-color: rgba(255,255,255,0.7);
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
}

.btn-lg { padding: 0.8rem 2.5rem; font-size: 1rem; }

/* ===== NAVBAR ===== */
#mainNavbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 14px 0;
    transition: var(--transition);
    z-index: 1050;
}

#mainNavbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.navbar-spacer { height: 76px; }

.navbar-brand-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.brand-name { line-height: 1.2; }

.brand-main {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.navbar-logo { height: 48px; object-fit: contain; }

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background: var(--light-green);
}

.dropdown-menu-animated {
    border: none;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    min-width: 220px;
    padding: 10px;
    animation: fadeIn 0.2s ease;
}

.dropdown-item {
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 12px;
    transition: var(--transition);
}

.dropdown-item:hover, .dropdown-item.active {
    background: var(--light-green);
    color: var(--primary);
}

.btn-nav-cta {
    font-size: 0.9rem;
    padding: 0.55rem 1.5rem;
    box-shadow: 0 4px 15px rgba(45,106,79,0.3);
}

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

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; height: 90vh; min-height: 600px; max-height: 900px; }

.hero-slide {
    position: relative;
    height: 90vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,67,50,0.75) 0%, rgba(45,106,79,0.5) 50%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.hero-text { color: white; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-title span { color: var(--accent); }

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    max-width: 500px;
    font-weight: 400;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-indicator-logo {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
}

/* Slider Controls */
.swiper-button-next, .swiper-button-prev {
    color: white !important;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 16px !important;
    font-weight: 900;
}

.swiper-pagination-bullet {
    background: rgba(255,255,255,0.5) !important;
    width: 10px !important;
    height: 10px !important;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: white !important;
    width: 28px !important;
    border-radius: 5px !important;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: white;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.08), 0 4px 30px rgba(0,0,0,0.05);
    padding: 24px 0;
    position: relative;
    z-index: 10;
}

.stat-item { text-align: center; padding: 10px; }

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    background: var(--border);
    height: 50px;
    margin: auto;
}

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--white); }

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    object-fit: cover;
    width: 100%;
    height: 500px;
}

.about-badge-float {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: white;
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow);
    text-align: center;
    min-width: 140px;
}

.about-badge-float .badge-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.about-badge-float .badge-text {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.check-list { list-style: none; padding: 0; }

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-dark);
}

.check-list li i {
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ===== SERVICES SECTION ===== */
.services-section { background: var(--bg-light); }

.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    height: 100%;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: default;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--light-green);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    background: var(--primary);
}

.service-icon-wrapper i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper i { color: white; }

.service-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 14px;
    transition: var(--transition);
}

.service-card:hover .service-link { gap: 10px; }

/* ===== TEAM SECTION ===== */
.team-section { background: white; }

.team-card {
    text-align: center;
    transition: var(--transition);
}

.team-img-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--light-green);
    transition: var(--transition);
    position: relative;
}

.team-card:hover .team-img-wrapper {
    border-color: var(--primary);
    box-shadow: 0 0 0 6px var(--light-green);
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.team-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-green), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}

.team-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.85rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 12px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--bg-light); }

.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid var(--border);
}

.testimonial-stars { color: #ffc107; margin-bottom: 14px; font-size: 0.9rem; }

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-name { font-weight: 700; font-size: 0.9rem; margin-bottom: 0; }

.testimonial-verified { font-size: 0.78rem; color: var(--primary-light); font-weight: 500; }

/* ===== ARTICLES/BLOG ===== */
.blog-section { background: white; }

.article-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.article-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-img { transform: scale(1.05); }

.article-img-wrapper { overflow: hidden; }

.article-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-category {
    display: inline-block;
    background: var(--light-green);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.article-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.5;
    flex: 1;
}

.article-title a { color: inherit; transition: var(--transition); }
.article-title a:hover { color: var(--primary); }

.article-excerpt { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 16px; }

.article-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 14px;
    margin-top: auto;
}

.article-meta i { color: var(--primary-light); }

/* ===== PROMO SECTION ===== */
.promo-section { background: var(--bg-light); }

.promo-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.promo-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.promo-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #ff4444;
    color: white;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.promo-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.promo-body { padding: 20px; }

.promo-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.promo-desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }

.promo-date { font-size: 0.78rem; color: var(--text-muted); }

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.cta-section .section-title { color: white; }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 1.1rem; }

/* ===== FOOTER ===== */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.85); }

.footer-top { padding: 60px 0 40px; }

.footer-brand {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
}

.footer-logo { height: 50px; object-fit: contain; }

.footer-tagline { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

.footer-heading {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover { color: var(--accent); transform: translateX(4px); }

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
}

.footer-contact i {
    color: var(--accent);
    width: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-contact a:hover { color: var(--accent); }

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: white;
    transition: var(--transition);
}

.social-btn:hover { transform: translateY(-3px); color: white; }
.social-btn.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.facebook { background: #1877f2; }
.social-btn.tiktok { background: #000; }
.social-btn.youtube { background: #ff0000; }
.social-btn.whatsapp { background: #25d366; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-admin-link {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-admin-link:hover { color: rgba(255,255,255,0.7); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: var(--transition);
    animation: waPulse 2s infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 30px rgba(37,211,102,0.7);
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.wa-float:hover .wa-tooltip { opacity: 1; }

@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 60px 0;
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.9); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ===== SERVICE DETAIL ===== */
.service-detail-img {
    border-radius: var(--radius-lg);
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: var(--light-green);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* ===== TEAM DETAIL PAGE ===== */
.team-detail-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--light-green);
    box-shadow: var(--shadow);
}

/* ===== ARTICLE DETAIL ===== */
.article-content {
    line-height: 1.9;
    font-size: 1.02rem;
    color: #333;
}

.article-content h2, .article-content h3 {
    color: var(--primary-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content img {
    border-radius: var(--radius);
    max-width: 100%;
    height: auto;
    box-shadow: var(--shadow);
    margin: 1rem 0;
}

.article-content ul, .article-content ol { padding-left: 1.5rem; }
.article-content li { margin-bottom: 8px; }
.article-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    color: var(--text-muted);
    font-style: italic;
    margin: 1.5rem 0;
}

.article-hero-img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

/* ===== CARDS GENERAL ===== */
.card-hover {
    transition: var(--transition);
}

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

/* ===== UTILITY ===== */
.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-light-green { background: var(--light-green); }
.bg-section { background: var(--bg-light); }

.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    margin: 12px auto 24px;
}

.divider-start { margin-left: 0; }

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.back-to-top.show { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--primary-dark); color: white; transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    section { padding: 60px 0; }
    .hero-slider { height: 75vh; }
    .hero-slide { height: 75vh; }
    .hero-title { font-size: 2rem; }
    .about-badge-float { right: 10px; bottom: 10px; }
    .stat-divider { display: none; }
    .navbar-spacer { height: 68px; }
}

@media (max-width: 767.98px) {
    section { padding: 50px 0; }
    .hero-slider { height: 85vh; }
    .hero-slide { height: 85vh; }
    .hero-title { font-size: 1.7rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-buttons { flex-direction: column; gap: 10px; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .about-image-wrapper img { height: 300px; }
    .team-img-wrapper { width: 150px; height: 150px; }
    .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
    .footer-top { padding: 40px 0 30px; }
}

@media (max-width: 575.98px) {
    .hero-title { font-size: 1.5rem; }
    .section-title { font-size: 1.5rem; }
    .stat-number { font-size: 1.5rem; }
}
