/* ===== KEEWEBS DESIGN SYSTEM ===== */
/* Logo Colors: Black #0a0a0a, White #FFFFFF, Yellow #F5D800 */

:root {
    --primary: #F5D800;
    --primary-dark: #d4b900;
    --primary-light: #fff8cc;
    --black: #0a0a0a;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --dark-3: #222222;
    --gray-1: #333333;
    --gray-2: #555555;
    --gray-3: #888888;
    --gray-4: #bbbbbb;
    --gray-5: #eeeeee;
    --white: #ffffff;
    --success: #22c55e;
    --error: #ef4444;
    --warning: #f59e0b;
    --font-main: 'Inter', -apple-system, sans-serif;
    --font-heading: 'Syne', 'Inter', sans-serif;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); background: var(--white); color: var(--dark); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }

/* TYPOGRAPHY */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.15; color: var(--dark); }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; }
p { color: var(--gray-2); line-height: 1.8; }

/* LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.1rem; }
.tag { display: inline-block; background: var(--primary-light); color: var(--gray-1); font-size: 0.8rem; font-weight: 600; padding: 0.35rem 1rem; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.tag-dark { background: var(--dark-3); color: var(--primary); }
.accent { color: var(--primary); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* SCROLL PROGRESS */
#scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--primary); z-index: 9999; width: 0%; transition: width 0.1s; }

/* PAGE LOADER */
#page-loader { position: fixed; inset: 0; background: var(--black); z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s, visibility 0.5s; }
#page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-logo { display: flex; gap: 4px; }
.loader-logo span { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--white); animation: loaderPulse 0.8s ease-in-out infinite alternate; }
.loader-logo span:first-child { color: var(--white); }
.loader-logo span:last-child { color: var(--primary); animation-delay: 0.4s; }
@keyframes loaderPulse { from { opacity: 0.3; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 2rem; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; border: 2px solid transparent; cursor: pointer; transition: all var(--transition); white-space: nowrap; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-primary { background: var(--primary); color: var(--black); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,216,0,0.35); }
.btn-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: var(--dark-3); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--gray-4); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { border-color: var(--primary); color: var(--primary); }

/* HEADER */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 0; transition: all var(--transition); background: transparent; }
.site-header.scrolled { background: rgba(10,10,10,0.95); backdrop-filter: blur(12px); padding: 0.75rem 0; box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.header-inner { display: flex; align-items: center; gap: 2rem; }
.logo { display: flex; align-items: center; gap: 0.6rem; z-index: 10; }
.logo-img { height: 36px; width: auto; }
.logo-text { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: var(--white); }
.logo-text .accent { color: var(--primary); }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; list-style: none; gap: 0.25rem; align-items: center; }
.main-nav a { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; padding: 0.5rem 0.75rem; border-radius: var(--radius); transition: all var(--transition); display: flex; align-items: center; gap: 0.3rem; }
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.main-nav li.has-dropdown { position: relative; }
.mega-menu { position: absolute; top: calc(100% + 0.75rem); left: 50%; transform: translateX(-50%); background: var(--dark-2); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 2rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; min-width: 700px; opacity: 0; visibility: hidden; transition: all var(--transition); box-shadow: var(--shadow-lg); }
.main-nav li.has-dropdown:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-menu h4 { color: var(--primary); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.mega-menu a { display: block; color: rgba(255,255,255,0.7); font-size: 0.875rem; padding: 0.3rem 0; }
.mega-menu a:hover { color: var(--primary); padding-left: 0.5rem; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV */
.mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 999; }
.mobile-nav-overlay.active { display: block; }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; background: var(--black); position: relative; overflow: hidden; padding: 8rem 0 4rem; }
.hero-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1600&q=80') center/cover no-repeat; opacity: 0.15; }
.hero-grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(rgba(245,216,0,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(245,216,0,0.05) 1px, transparent 1px); background-size: 60px 60px; }
.hero-glow { position: absolute; top: 20%; left: 10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(245,216,0,0.12) 0%, transparent 70%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 750px; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(245,216,0,0.12); border: 1px solid rgba(245,216,0,0.3); color: var(--primary); font-size: 0.8rem; font-weight: 600; padding: 0.4rem 1rem; border-radius: 999px; margin-bottom: 1.5rem; }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 .line { display: block; }
.hero h1 .highlight { position: relative; color: var(--primary); }
.hero-desc { font-size: 1.15rem; color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; max-width: 550px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat-num { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: var(--primary); }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }
.hero-flags { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.hero-flags span { font-size: 1.2rem; }

/* CARDS */
.card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); box-shadow: var(--shadow); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: var(--white); border: 1px solid var(--gray-5); border-radius: var(--radius-lg); padding: 2rem; transition: all var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--primary); transform: scaleX(0); transition: transform var(--transition); }
.service-card:hover { border-color: rgba(245,216,0,0.3); box-shadow: 0 8px 40px rgba(245,216,0,0.1); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 56px; height: 56px; background: var(--primary-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.service-icon i { font-size: 1.5rem; color: var(--gray-1); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 1.5rem; }
.service-card .link-arrow { font-weight: 600; font-size: 0.9rem; color: var(--gray-1); display: flex; align-items: center; gap: 0.4rem; transition: all var(--transition); }
.service-card:hover .link-arrow { color: var(--primary); gap: 0.7rem; }

/* PORTFOLIO */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.portfolio-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.portfolio-card:hover img { transform: scale(1.08); }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%); opacity: 0; transition: opacity var(--transition); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; }
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { color: var(--white); margin-bottom: 0.25rem; }
.portfolio-overlay span { color: var(--primary); font-size: 0.85rem; }

/* TESTIMONIALS */
.testimonials-section { background: var(--dark); }
.testimonial-card { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 2rem; }
.testimonial-stars { color: var(--primary); margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial-text { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
.testimonial-name { color: var(--white); font-weight: 600; font-size: 0.95rem; }
.testimonial-role { color: var(--primary); font-size: 0.8rem; }

/* BLOG */
.blog-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); box-shadow: var(--shadow); transition: all var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 220px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-card-cat { font-size: 0.75rem; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.blog-card-title { font-size: 1.1rem; margin-bottom: 0.75rem; line-height: 1.4; }
.blog-card-excerpt { font-size: 0.875rem; color: var(--gray-3); margin-bottom: 1rem; }
.blog-card-meta { font-size: 0.8rem; color: var(--gray-4); }

/* FORMS */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 500; font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--gray-1); }
.form-control { width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--gray-5); border-radius: var(--radius); font-family: var(--font-main); font-size: 0.95rem; color: var(--dark); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(245,216,0,0.15); }
.form-control::placeholder { color: var(--gray-4); }
.form-control.is-invalid { border-color: var(--error); }
.invalid-feedback { color: var(--error); font-size: 0.825rem; margin-top: 0.3rem; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }

/* CTA SECTION */
.cta-section { background: var(--black); position: relative; overflow: hidden; text-align: center; padding: 6rem 0; }
.cta-section::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(245,216,0,0.15) 0%, transparent 70%); }
.cta-section h2 { color: var(--white); position: relative; }
.cta-section p { color: rgba(255,255,255,0.6); margin: 1rem auto 2.5rem; max-width: 550px; font-size: 1.05rem; position: relative; }

/* TOAST */
.toast { position: fixed; bottom: 2rem; right: 2rem; padding: 1rem 1.5rem; border-radius: var(--radius); font-weight: 500; z-index: 9999; animation: toastIn 0.4s ease, toastOut 0.4s ease 3.5s forwards; display: flex; align-items: center; gap: 0.75rem; box-shadow: var(--shadow-lg); }
.toast-success { background: var(--success); color: var(--white); }
.toast-error { background: var(--error); color: var(--white); }
@keyframes toastIn { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }
@keyframes toastOut { from { opacity:1; } to { opacity:0; visibility:hidden; } }

/* WHATSAPP */
.whatsapp-float { position: fixed; bottom: 5.5rem; right: 1.5rem; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.75rem; z-index: 998; box-shadow: 0 4px 20px rgba(37,211,102,0.5); transition: all var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); color: white; }
.whatsapp-tooltip { position: absolute; right: 70px; background: var(--dark); color: var(--white); padding: 0.4rem 0.8rem; border-radius: var(--radius); font-size: 0.8rem; white-space: nowrap; opacity: 0; transition: opacity var(--transition); pointer-events: none; }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* BACK TO TOP */
#back-to-top { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 44px; height: 44px; background: var(--primary); color: var(--black); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 997; opacity: 0; visibility: hidden; transition: all var(--transition); font-size: 1rem; }
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { transform: translateY(-3px); }

/* COOKIE BANNER */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--dark); border-top: 1px solid rgba(255,255,255,0.1); z-index: 9998; padding: 1rem 0; }
.cookie-content { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.cookie-content p { color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.cookie-content a { color: var(--primary); }
.btn-cookie { background: var(--primary); color: var(--black); border: none; padding: 0.6rem 1.5rem; border-radius: var(--radius); font-weight: 600; cursor: pointer; font-size: 0.875rem; white-space: nowrap; }

/* PAGE HERO */
.page-hero { background: var(--black); padding: 8rem 0 5rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1600&q=80') center/cover no-repeat; opacity: 0.08; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 600px; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 1.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--primary); }

/* STATS BAR */
.stats-bar { background: var(--primary); padding: 2rem 0; }
.stats-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stats-bar-item h3 { font-size: 2.5rem; font-weight: 800; color: var(--black); }
.stats-bar-item p { color: var(--gray-1); font-size: 0.875rem; font-weight: 600; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--gray-5); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; cursor: pointer; font-weight: 600; font-size: 1rem; color: var(--dark); transition: color var(--transition); }
.faq-question:hover { color: var(--primary); }
.faq-question i { transition: transform var(--transition); color: var(--gray-4); }
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 0 1.25rem; color: var(--gray-2); }

/* PROCESS STEPS */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-step { text-align: center; position: relative; }
.process-num { width: 64px; height: 64px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; color: var(--black); margin: 0 auto 1.25rem; }
.process-step h4 { margin-bottom: 0.5rem; }
.process-step p { font-size: 0.875rem; }

/* ADMIN LAYOUT */
.admin-wrapper { display: flex; min-height: 100vh; background: #f8f9fa; }
.admin-sidebar { width: 260px; background: var(--dark); color: var(--white); flex-shrink: 0; position: fixed; top: 0; left: 0; bottom: 0; overflow-y: auto; z-index: 100; }
.admin-logo { padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.admin-logo .logo-text { font-size: 1.4rem; }
.admin-nav { padding: 1rem 0; }
.admin-nav-section { padding: 0.5rem 1rem 0.25rem; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); font-weight: 600; }
.admin-nav a { display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem 1.5rem; color: rgba(255,255,255,0.65); font-size: 0.875rem; transition: all var(--transition); border-left: 3px solid transparent; }
.admin-nav a:hover, .admin-nav a.active { color: var(--white); background: rgba(245,216,0,0.08); border-left-color: var(--primary); }
.admin-nav a i { width: 18px; text-align: center; font-size: 0.9rem; }
.admin-badge { margin-left: auto; background: var(--error); color: white; font-size: 0.7rem; padding: 0.15rem 0.5rem; border-radius: 999px; }
.admin-content { margin-left: 260px; flex: 1; }
.admin-topbar { background: var(--white); border-bottom: 1px solid var(--gray-5); padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; }
.admin-topbar h1 { font-size: 1.25rem; }
.admin-main { padding: 2rem; }
.admin-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); }
.admin-stat-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: 1.25rem; }
.admin-stat-icon { width: 52px; height: 52px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.admin-stat-num { font-size: 1.8rem; font-weight: 800; color: var(--dark); }
.admin-stat-label { font-size: 0.8rem; color: var(--gray-3); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.admin-table th { text-align: left; padding: 0.75rem 1rem; background: #f8f9fa; color: var(--gray-2); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.03em; border-bottom: 2px solid var(--gray-5); }
.admin-table td { padding: 0.875rem 1rem; border-bottom: 1px solid var(--gray-5); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #fafafa; }
.badge { display: inline-flex; align-items: center; padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.75rem; font-weight: 600; }
.badge-pending { background: #fef3c7; color: #d97706; }
.badge-approved { background: #dcfce7; color: #15803d; }
.badge-rejected { background: #fee2e2; color: #dc2626; }
.badge-rescheduled { background: #dbeafe; color: #1d4ed8; }
.badge-published { background: #dcfce7; color: #15803d; }
.badge-draft { background: #f3f4f6; color: #6b7280; }

/* FOOTER */
.site-footer { background: var(--black); }
.footer-top { padding: 5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin: 1rem 0 1.5rem; max-width: 280px; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a { width: 38px; height: 38px; background: rgba(255,255,255,0.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: all var(--transition); font-size: 0.875rem; }
.social-links a:hover { background: var(--primary); color: var(--black); transform: translateY(-2px); }
.footer-col h4 { color: var(--white); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: all var(--transition); }
.footer-col a:hover { color: var(--primary); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-legal a:hover { color: var(--primary); }

/* ANIMATE ON SCROLL */
.aos { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.aos.animate { opacity: 1; transform: translateY(0); }
.aos-delay-1 { transition-delay: 0.1s; }
.aos-delay-2 { transition-delay: 0.2s; }
.aos-delay-3 { transition-delay: 0.3s; }

/* WHY CHOOSE US */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why-item { padding: 1.75rem; border: 1px solid var(--gray-5); border-radius: var(--radius-lg); transition: all var(--transition); }
.why-item:hover { border-color: var(--primary); background: var(--primary-light); }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-item h4 { margin-bottom: 0.5rem; }

/* PRICING */
.pricing-card { border-radius: var(--radius-xl); padding: 2.5rem; border: 2px solid var(--gray-5); transition: all var(--transition); position: relative; overflow: hidden; }
.pricing-card.featured { border-color: var(--primary); background: var(--dark); }
.pricing-card.featured h3, .pricing-card.featured .price { color: var(--white); }
.pricing-card.featured li { color: rgba(255,255,255,0.7); }
.pricing-badge { position: absolute; top: 1.5rem; right: 1.5rem; background: var(--primary); color: var(--black); font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 999px; text-transform: uppercase; }
.pricing-card h3 { margin-bottom: 0.5rem; }
.price { font-size: 0.875rem; margin-bottom: 2rem; }
.price strong { font-family: var(--font-heading); font-size: 2.5rem; color: var(--primary); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--gray-2); }
.pricing-features li i { color: var(--success); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
    .mega-menu { grid-template-columns: repeat(2, 1fr); min-width: 500px; }
}

@media (max-width: 768px) {
    .main-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--dark); z-index: 1000; flex-direction: column; justify-content: center; align-items: center; padding: 2rem; }
    .main-nav.mobile-open { display: flex; }
    .main-nav ul { flex-direction: column; gap: 0; width: 100%; text-align: center; }
    .main-nav a { justify-content: center; font-size: 1.2rem; padding: 1rem; }
    .mega-menu { position: static; transform: none; min-width: unset; display: none; grid-template-columns: 1fr; gap: 0.5rem; background: none; border: none; padding: 0.5rem; }
    .main-nav li.has-dropdown.mobile-expanded .mega-menu { display: grid; }
    .hamburger { display: flex; z-index: 1001; }
    .services-grid, .portfolio-grid, .grid-3, .grid-4, .why-grid { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
    .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .admin-sidebar { transform: translateX(-100%); }
    .admin-content { margin-left: 0; }
}

@media (max-width: 480px) {
    .process-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .btn { justify-content: center; }
    .stats-bar-grid { grid-template-columns: 1fr 1fr; }
}

/* PAGINATION */
.pagination { display: flex; gap: 0.25rem; justify-content: center; list-style: none; flex-wrap: wrap; }
.page-item .page-link { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1.5px solid var(--gray-5); border-radius: var(--radius); font-size: 0.875rem; color: var(--gray-2); transition: all var(--transition); }
.page-item.active .page-link { background: var(--primary); border-color: var(--primary); color: var(--black); font-weight: 700; }
.page-item.disabled .page-link { opacity: 0.5; cursor: not-allowed; }
.page-item .page-link:hover:not(.disabled):not(.active) { border-color: var(--primary); color: var(--primary); }

/* =============================================
   MOBILE RESPONSIVE FIXES
   ============================================= */

/* Service detail page */
@media (max-width: 768px) {
    /* Fix service detail 2-col layout */
    .container > div[style*="grid-template-columns:2fr 1fr"],
    .container > div[style*="grid-template-columns: 2fr 1fr"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    /* Fix any inline grid on mobile */
    div[style*="display:grid"][style*="grid-template-columns:1fr 1fr"],
    div[style*="display:grid"][style*="grid-template-columns: 1fr 1fr"],
    div[style*="display:grid"][style*="grid-template-columns:2fr 1fr"],
    div[style*="display:grid"][style*="grid-template-columns: 2fr 1fr"] {
        display: flex !important;
        flex-direction: column !important;
    }

    /* Hero section */
    .hero-content h1 { font-size: clamp(2rem, 8vw, 3.5rem); }
    .page-hero-content h1 { font-size: clamp(1.75rem, 7vw, 3rem); }

    /* Navigation close button position */
    .nav-close { top: 1rem; right: 1rem; }

    /* Process steps */
    .process-step { flex-direction: column; text-align: center; }

    /* Contact grid */
    .contact-grid { grid-template-columns: 1fr !important; }

    /* Testimonial grid */
    .testimonials-grid { grid-template-columns: 1fr !important; }

    /* Blog grid */
    .blog-grid { grid-template-columns: 1fr !important; }

    /* About page team grid */
    .team-grid { grid-template-columns: repeat(2, 1fr) !important; }

    /* Section padding reduction */
    .section { padding: 3rem 0; }
    .section-header { margin-bottom: 2rem; }

    /* CTA section */
    .cta-section { padding: 3rem 0; }

    /* Pricing cards */
    .pricing-card { padding: 1.75rem; }

    /* Footer */
    .footer-top { padding: 3rem 0 2rem; }

    /* Admin table scroll */
    .admin-card { overflow-x: auto; }
    .admin-table { min-width: 600px; }

    /* Form controls */
    .form-group { margin-bottom: 1rem; }

    /* Booking page */
    .book-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
    /* Container padding */
    .container { padding: 0 1rem; }

    /* Team grid on very small screens */
    .team-grid { grid-template-columns: 1fr !important; }

    /* Blog card */
    .blog-card-title { font-size: 1rem; }

    /* Service card */
    .service-card { padding: 1.5rem; }

    /* Stats bar */
    .stat-item { padding: 1.5rem; }
    .stat-num { font-size: 2.5rem; }

    /* Hero actions */
    .hero-actions .btn { width: 100%; justify-content: center; }

    /* Page hero */
    .page-hero { padding: 6rem 0 3rem; }

    /* Section padding */
    .section { padding: 2.5rem 0; }

    /* About section grids */
    div[style*="display:grid"] { 
        display: flex !important;
        flex-direction: column !important;
    }
    div[style*="display: grid"] {
        display: flex !important;
        flex-direction: column !important;
    }

    /* Fix text sizes */
    h2 { font-size: clamp(1.5rem, 6vw, 2.5rem); }
    h3 { font-size: clamp(1.1rem, 4vw, 1.75rem); }

    /* WhatsApp button */
    .whatsapp-float { bottom: 1rem; right: 1rem; }
}

/* Tablet specific */
@media (min-width: 481px) and (max-width: 768px) {
    .team-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .grid-3 { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Make header sticky and always visible on mobile */
@media (max-width: 768px) {
    .site-header { padding: 0.875rem 0; }
    .header-inner { padding: 0 1rem; }
    .logo-text { font-size: 1.4rem; }
    .logo img { height: 32px !important; }

    /* Mobile nav improvements */
    .main-nav.mobile-open {
        overflow-y: auto;
        padding-top: 5rem;
    }
    .main-nav ul li { 
        border-bottom: 1px solid rgba(255,255,255,0.06);
        width: 100%;
    }

    /* Hero section padding fix */
    .hero { padding-top: 70px; }
    .hero-content { padding: 4rem 1rem 2rem; }

    /* Service feature list */
    .service-features-box { margin-top: 2rem; }

    /* Responsive tables */
    table { font-size: 0.85rem; }
    table td, table th { padding: 0.5rem; }
}

/* Mobile nav overlay fix */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(10,10,10,0.98);
        z-index: 999;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        overflow-y: auto;
    }
    .main-nav.mobile-open {
        display: flex;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
    }
    .main-nav ul li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .main-nav a {
        padding: 1rem;
        font-size: 1.1rem;
        justify-content: center;
    }
    .mega-menu {
        display: none;
        position: static !important;
        background: rgba(255,255,255,0.05) !important;
        border: none !important;
        box-shadow: none !important;
        grid-template-columns: 1fr 1fr !important;
        padding: 0.5rem !important;
        min-width: unset !important;
        transform: none !important;
    }
    .has-dropdown.mobile-expanded .mega-menu {
        display: grid !important;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    .hamburger span {
        transition: all 0.3s ease;
    }
}

