/* ============================================
   Grow Multi Services - Main Stylesheet
   Colors based on company logo
   ============================================ */

:root {
    --green: #00A651;
    --green-dark: #008C44;
    --green-light: #00C853;
    --navy: #0B1426;
    --navy-light: #152238;
    --navy-soft: #1E2A44;
    --white: #FFFFFF;
    --gray-100: #F5F7FA;
    --gray-200: #E8ECF1;
    --gray-300: #D1D9E6;
    --gray-500: #6B7A90;
    --gray-700: #3A4556;
    --text: #1A2332;
    --shadow: 0 4px 20px rgba(11, 20, 38, 0.08);
    --shadow-lg: 0 10px 40px rgba(11, 20, 38, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 20, 38, 0.95);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.4rem;
}

.logo-img {
    height: 40px !important;
    width: auto !important;
    max-width: 160px !important;
    max-height: 40px !important;
    object-fit: contain !important;
    display: block;
}

.logo-footer .logo-img {
    height: 36px !important;
    max-width: 140px !important;
    max-height: 36px !important;
}

@media (max-width: 480px) {
    .logo-img {
        height: 32px !important;
        max-width: 130px !important;
    }
}

.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--green-light);
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,166,81,0.35);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--green);
    color: var(--green-light);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* ========== HERO BANNER (full-width) ========== */
.hero-banner {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 70px;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
    /* Slow zoom while visible (Ken Burns) */
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 7s ease-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(11, 20, 38, 0.88) 0%,
        rgba(11, 20, 38, 0.75) 40%,
        rgba(11, 20, 38, 0.65) 100%
    );
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-banner .hero-badge {
    display: inline-block;
    background: rgba(0, 166, 81, 0.2);
    color: var(--green-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 166, 81, 0.35);
}

.hero-banner h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-banner h1 span {
    color: var(--green-light);
}

.hero-banner p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-banner .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-banner .hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-banner .stat-item h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--green-light);
}

.hero-banner .stat-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Dots navigation */
.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--green);
    border-color: var(--green);
    transform: scale(1.15);
}

/* Legacy hero (if any) */
.hero {
    display: none;
}

/* ========== SECTIONS ========== */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--navy);
    color: white;
}

.section-light {
    background: var(--gray-100);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.section-header .label {
    display: inline-block;
    color: var(--green);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--navy);
}

.section-dark .section-header h2 {
    color: white;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.05rem;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.7);
}

/* ========== CARDS ========== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

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

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(0,166,81,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--green);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}

.card p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.card ul {
    margin-top: 12px;
}

.card ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

/* ========== ABOUT ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.about-content p {
    color: var(--gray-500);
    margin-bottom: 16px;
}

.about-highlight {
    background: var(--green);
    color: white;
    padding: 20px 24px;
    border-radius: var(--radius);
    margin-top: 24px;
    font-weight: 600;
    font-style: italic;
}

/* ========== VALUES ========== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.value-card {
    background: var(--navy-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.06);
}

.value-card h3 {
    color: var(--green-light);
    font-size: 1.15rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
    justify-content: center;
}

.value-tag {
    background: rgba(0,166,81,0.15);
    color: var(--green-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(0,166,81,0.3);
}

/* ========== DIFFERENTIALS ========== */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.diff-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.diff-item .icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(0,166,81,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.2rem;
}

.diff-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--navy);
}

.diff-item p {
    font-size: 0.88rem;
    color: var(--gray-500);
}

/* ========== STATS BAR ========== */
.stats-bar {
    background: var(--green);
    padding: 40px 0;
}

.stats-bar-inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stats-bar .stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.stats-bar .stat p {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.contact-info > p {
    color: var(--gray-500);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item .icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(0,166,81,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.1rem;
}

.contact-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.contact-item p, .contact-item a {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: var(--green);
}

.contact-form {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--navy);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--gray-100);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green);
    background: white;
    box-shadow: 0 0 0 3px rgba(0,166,81,0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.map-container {
    margin-top: 50px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--navy);
    color: white;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo-footer {
    margin-bottom: 16px;
}

.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 20px;
    max-width: 300px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--green);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: white;
}

.footer-col ul li {
    margin-bottom: 10px;
}

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

.footer-col ul a:hover {
    color: var(--green-light);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.contact-list i {
    color: var(--green);
    margin-top: 3px;
}

.contact-list a:hover {
    color: var(--green-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 140px 0 60px;
    text-align: center;
}

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

.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
}

/* ========== SERVICES DETAIL ========== */
.service-block {
    margin-bottom: 40px;
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--green);
}

.service-block h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-block h3 i {
    color: var(--green);
}

.service-block ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 8px;
}

.service-block ul li {
    padding-left: 20px;
    position: relative;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.service-block ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ========== CTA ========== */
.cta-section {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    font-size: 1.1rem;
}

/* ========== RESPONSIVE ========== */
/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-image img {
        height: 280px;
    }
    
    
    .hero h1 {
        font-size: 2.2rem;
    }
    .page-hero {
        padding: 120px 0 50px;
    }
    .service-block ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 60px;
    }
    .hero-banner-content {
        padding: 40px 16px 70px;
    }
    .hero-banner h1 {
        font-size: 1.85rem;
    }
    .hero-banner p {
        font-size: 1rem;
    }
    .hero-banner .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-banner .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-banner .hero-stats {
        gap: 20px;
    }
    .hero-banner .stat-item h3 {
        font-size: 1.4rem;
    }

    .header-inner {
        height: 60px;
    }
    
    .logo-img {
        height: 34px !important;
        max-width: 140px !important;
    }
    
    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 12px 20px 24px;
        gap: 0;
        transform: translateY(-130%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        box-shadow: 0 12px 40px rgba(0,0,0,0.35);
        z-index: 999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav a {
        padding: 16px 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        font-size: 1.05rem;
    }
    
    .nav a.active::after {
        display: none;
    }
    
    .nav a.active {
        color: var(--green-light);
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .header-actions .btn-whatsapp {
        display: none;
    }
    
    .hero {
        padding-top: 60px;
        min-height: auto;
    }
    
    .hero-content {
        padding: 30px 0 10px;
    }
    
    .hero h1 {
        font-size: 1.85rem;
        line-height: 1.25;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .stat-item h3 {
        font-size: 1.4rem;
    }
    
    .stat-item p {
        font-size: 0.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    
    
    .section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 32px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .card {
        padding: 24px;
    }
    
    .diff-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 16px 0;
    }
    
    .stats-bar {
        padding: 30px 0;
    }
    
    .stats-bar-inner {
        gap: 20px;
    }
    
    .stats-bar .stat h3 {
        font-size: 1.8rem;
    }
    
    .page-hero {
        padding: 100px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 1.7rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .map-container {
        height: 280px;
        margin-top: 30px;
    }
    
    .service-block {
        padding: 24px;
    }
    
    .service-block h3 {
        font-size: 1.15rem;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 30px !important;
        max-width: 120px !important;
    }
    
    .hero h1 {
        font-size: 1.65rem;
    }
    
    .hero-badge {
        font-size: 0.78rem;
        padding: 5px 12px;
    }
    
    .hero-stats {
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 1;
        min-width: 80px;
        text-align: center;
    }
    
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 18px;
        right: 18px;
        font-size: 1.45rem;
    }
    
    .btn-lg {
        padding: 14px 22px;
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .values-list {
        gap: 8px;
    }
    
    .value-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* ========== ADMIN STYLES (shared) ========== */
.admin-body {
    background: var(--gray-100);
    min-height: 100vh;
}

.admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 260px;
    background: var(--navy);
    color: white;
    padding: 20px 0;
    z-index: 100;
    overflow-y: auto;
}

.admin-sidebar .logo {
    padding: 0 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 20px;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(0,166,81,0.15);
    color: var(--green-light);
}

.admin-nav a i {
    width: 20px;
    text-align: center;
}

.admin-main {
    margin-left: 260px;
    padding: 30px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-header h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
}

.admin-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.admin-table th {
    font-weight: 600;
    color: var(--gray-500);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-admin {
    background: rgba(0,166,81,0.15);
    color: var(--green);
}

.badge-editor {
    background: rgba(59,130,246,0.15);
    color: #3B82F6;
}

.badge-active {
    background: rgba(0,166,81,0.15);
    color: var(--green);
}

.badge-inactive {
    background: rgba(239,68,68,0.15);
    color: #EF4444;
}

.alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(0,166,81,0.1);
    color: var(--green-dark);
    border: 1px solid rgba(0,166,81,0.2);
}

.alert-error {
    background: rgba(239,68,68,0.1);
    color: #DC2626;
    border: 1px solid rgba(239,68,68,0.2);
}

@media (max-width: 768px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: var(--transition);
    }
    .admin-sidebar.open {
        transform: translateX(0);
    }
    .admin-main {
        margin-left: 0;
        padding: 20px 15px;
    }
}
