/* =============================================
   Orland Customer Website — Design System
   Based on: customer_web design mockups
   Colors: Teal (#0D5C63) + Orange (#FF6B35)
   Fonts: DM Sans + Fraunces
   ============================================= */

/* ========== CSS Variables ========== */
:root {
    --primary: #0D5C63;
    --primary-light: #0E7C86;
    --primary-dark: #094147;
    --accent: #FF6B35;
    --accent-light: #FF8A5C;
    --accent-dark: #E55520;
    --white: #FFFFFF;
    --off-white: #F7FAFA;
    --gray-50: #EEF3F3;
    --gray-100: #DCE5E5;
    --gray-200: #B8CACA;
    --gray-300: #8AA8A8;
    --gray-400: #5C8585;
    --gray-500: #3D6363;
    --gray-600: #2D4A4A;
    --gray-700: #1F3535;
    --gray-800: #142424;
    --success: #059669;
    --success-light: #D1FAE5;
    --warning: #D97706;
    --warning-light: #FEF3C7;
    --error: #DC2626;
    --error-light: #FEE2E2;
    --info: #0284C7;
    --info-light: #E0F2FE;
    --font-body: 'DM Sans', sans-serif;
    --font-display: 'Fraunces', serif;
    --shadow-sm: 0 1px 3px rgba(13,92,99,0.08);
    --shadow-md: 0 4px 12px rgba(13,92,99,0.1);
    --shadow-lg: 0 8px 30px rgba(13,92,99,0.12);
    --shadow-xl: 0 20px 50px rgba(13,92,99,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --transition: 0.3s ease;
    --sidebar-width: 280px;
}

/* ========== Reset & Base ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,53,0.4); }
.btn-primary:disabled { background: var(--gray-300); box-shadow: none; cursor: not-allowed; transform: none; }
.btn-secondary { background: var(--white); color: var(--primary); border: 2px solid var(--gray-200); }
.btn-secondary:hover { border-color: var(--primary); background: var(--off-white); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-icon {
    width: 44px; height: 44px; padding: 0;
    background: var(--gray-50); border: none; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--gray-600); cursor: pointer; transition: var(--transition);
}
.btn-icon:hover { background: var(--gray-100); color: var(--primary); }

/* ========== Navigation (Public Pages) ========== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
    padding: 16px 0;
    transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-container {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 22px;
}
.logo-text {
    font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--gray-800);
}
.logo-text span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
    padding: 10px 18px; font-weight: 500; color: var(--gray-600);
    border-radius: var(--radius-sm); transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--gray-50); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-login { font-weight: 600; color: var(--gray-700); }
.nav-login:hover { color: var(--primary); }
.mobile-menu-btn {
    display: none; background: none; border: none;
    font-size: 28px; color: var(--gray-700); cursor: pointer;
}

/* ========== Hero Section ========== */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(13,92,99,0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white); padding: 8px 16px; border-radius: var(--radius-xl);
    font-size: 14px; font-weight: 600; color: var(--gray-700);
    box-shadow: var(--shadow-md); margin-bottom: 24px;
}
.hero-badge i { color: var(--accent); }
.hero-title {
    font-size: 52px; font-weight: 800; color: var(--gray-800);
    margin-bottom: 20px; line-height: 1.1;
}
.hero-title .highlight { color: var(--primary); }
.hero-subtitle { font-size: 18px; color: var(--gray-500); margin-bottom: 32px; max-width: 480px; }
.hero-buttons { display: flex; gap: 16px; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 48px; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--primary); display: block; }
.stat-label { font-size: 14px; color: var(--gray-500); font-weight: 500; }
.hero-visual { position: relative; }
.hero-image { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.hero-image img { width: 100%; height: 500px; object-fit: cover; }
.floating-card {
    position: absolute; background: var(--white); padding: 16px 20px;
    border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 12px;
    animation: float 4s ease-in-out infinite;
}
.floating-card.card-1 { top: 40px; left: -30px; }
.floating-card.card-2 { bottom: 60px; right: -30px; animation-delay: 2s; }
.floating-card-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 20px;
}
.floating-card-text strong { display: block; font-size: 14px; color: var(--gray-800); }
.floating-card-text span { font-size: 12px; color: var(--gray-500); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ========== Dark Hero (Services, About, Branches, Contact) ========== */
.hero-dark {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white); padding: 140px 0 80px; text-align: center;
    position: relative; overflow: hidden;
}
.hero-dark::before {
    content: ''; position: absolute; top: -30%; right: -10%;
    width: 600px; height: 600px;
    background: rgba(255,255,255,0.05); border-radius: 50%;
}
.hero-dark h1 { color: var(--white); font-size: 48px; margin-bottom: 16px; }
.hero-dark p { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 600px; margin: 0 auto; }
.hero-dark .hero-stats { justify-content: center; margin-top: 48px; }
.hero-dark .stat-number { color: var(--white); font-size: 48px; }
.hero-dark .stat-label { color: rgba(255,255,255,0.7); }

/* ========== Features Strip ========== */
.features-strip { background: var(--primary); padding: 40px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.feature-item { display: flex; align-items: center; gap: 16px; color: var(--white); }
.feature-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.15); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; flex-shrink: 0;
}
.feature-text strong { display: block; font-size: 15px; margin-bottom: 2px; }
.feature-text span { font-size: 13px; opacity: 0.85; }

/* ========== Section Styles ========== */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(13,92,99,0.1), rgba(13,92,99,0.05));
    color: var(--primary); padding: 8px 20px; border-radius: var(--radius-xl);
    font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 16px;
}
.section-title { font-size: 40px; margin-bottom: 16px; }
.section-title .highlight { color: var(--primary); }
.section-subtitle { font-size: 17px; color: var(--gray-500); max-width: 560px; margin: 0 auto; }

/* ========== Service Cards ========== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
    background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
    padding: 36px 28px; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(255,107,53,0.02), rgba(255,107,53,0.06));
}
.service-card.featured::before {
    content: 'Popular'; position: absolute; top: 20px; right: -32px;
    background: var(--accent); color: var(--white); padding: 4px 40px;
    font-size: 11px; font-weight: 700; transform: rotate(45deg);
}
.service-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: var(--primary); margin-bottom: 24px; transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: var(--white);
}
.service-title { font-size: 20px; margin-bottom: 10px; }
.service-desc { font-size: 14px; color: var(--gray-500); margin-bottom: 20px; }
.service-price { margin-bottom: 20px; }
.service-price .from { font-size: 12px; color: var(--gray-400); }
.service-price .amount { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--primary); }
.service-price .unit { font-size: 14px; color: var(--gray-500); }
.service-features { margin-bottom: 24px; }
.service-features li {
    display: flex; align-items: center; gap: 10px; padding: 6px 0;
    font-size: 14px; color: var(--gray-600);
}
.service-features li i { color: var(--success); font-size: 16px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; font-size: 14px; }
.service-link:hover { gap: 10px; }

/* ========== How It Works / Steps ========== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step-card { text-align: center; padding: 32px 20px; position: relative; }
.step-number {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700; font-size: 16px;
    margin: 0 auto 20px;
}
.step-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, rgba(13,92,99,0.08), rgba(13,92,99,0.04));
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: var(--primary); margin: 0 auto 20px;
}
.step-card h3 { font-size: 18px; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--gray-500); }

/* ========== Pricing Table ========== */
.pricing-tabs { display: flex; gap: 4px; background: var(--gray-50); border-radius: var(--radius-md); padding: 4px; margin-bottom: 32px; width: fit-content; }
.pricing-tab {
    padding: 10px 24px; border-radius: var(--radius-sm); font-weight: 600;
    font-size: 14px; cursor: pointer; transition: var(--transition);
    background: none; border: none; color: var(--gray-500); font-family: var(--font-body);
}
.pricing-tab.active { background: var(--white); color: var(--primary); box-shadow: var(--shadow-sm); }
.pricing-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.pricing-table thead { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: var(--white); }
.pricing-table th { padding: 16px 20px; font-weight: 600; font-size: 14px; text-align: left; }
.pricing-table td { padding: 14px 20px; border-bottom: 1px solid var(--gray-100); font-size: 14px; }
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--off-white); }

/* ========== Testimonials ========== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
    background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
    padding: 32px; transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; color: var(--accent); }
.testimonial-text { font-size: 15px; color: var(--gray-600); margin-bottom: 24px; line-height: 1.7; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 700; font-size: 18px;
}
.author-name { font-weight: 700; font-size: 15px; color: var(--gray-800); }
.author-location { font-size: 13px; color: var(--gray-500); }

/* ========== CTA Section ========== */
.cta-section {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius-xl); padding: 60px; color: var(--white);
    display: flex; align-items: center; justify-content: space-between;
    margin: 0 24px;
}
.cta-section h2 { color: var(--white); font-size: 32px; margin-bottom: 12px; }
.cta-section p { opacity: 0.9; font-size: 17px; }

/* ========== FAQ Accordion ========== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-100); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; transition: var(--transition); }
.faq-item.active { border-color: var(--primary); }
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 16px;
    color: var(--gray-700); transition: var(--transition); background: none; border: none;
    width: 100%; text-align: left; font-family: var(--font-body);
}
.faq-question:hover { color: var(--primary); }
.faq-item.active .faq-question { background: var(--primary); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 24px 20px; font-size: 15px; color: var(--gray-500); line-height: 1.7; }

/* ========== Contact Section ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-icon {
    width: 52px; height: 52px; min-width: 52px;
    background: linear-gradient(135deg, rgba(13,92,99,0.1), rgba(13,92,99,0.05));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 22px;
}
.contact-label { font-size: 14px; color: var(--gray-500); margin-bottom: 4px; }
.contact-value { font-weight: 600; color: var(--gray-800); font-size: 16px; }
.social-links { display: flex; gap: 12px; margin-top: 32px; }
.social-link {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gray-50); display: flex; align-items: center; justify-content: center;
    color: var(--gray-600); font-size: 18px; transition: var(--transition);
}
.social-link:hover { background: var(--primary); color: var(--white); }
.contact-form { background: var(--off-white); border-radius: var(--radius-lg); padding: 40px; }

/* ========== Form Controls ========== */
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-weight: 600; font-size: 14px; color: var(--gray-700); margin-bottom: 8px; }
.form-control {
    width: 100%; padding: 14px 16px; font-family: var(--font-body); font-size: 15px;
    border: 2px solid var(--gray-100); border-radius: var(--radius-md);
    transition: var(--transition); background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(13,92,99,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { resize: vertical; min-height: 100px; }

/* ========== Footer ========== */
.footer { background: var(--gray-800); color: var(--gray-300); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand p { margin-top: 16px; font-size: 14px; line-height: 1.8; color: var(--gray-400); }
.footer-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--gray-400); font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom { border-top: 1px solid var(--gray-700); padding-top: 32px; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 13px; color: var(--gray-500); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: var(--gray-500); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ========== WhatsApp Float ========== */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; z-index: 1050;
    width: 60px; height: 60px; background: #25D366; color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition); text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); color: white; }

/* ========== Back to Top ========== */
.back-to-top {
    position: fixed; bottom: 30px; right: 100px; z-index: 1040;
    width: 44px; height: 44px; background: var(--white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md); color: var(--gray-600); font-size: 18px;
    transition: var(--transition); opacity: 0; visibility: hidden; cursor: pointer;
    border: none;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary); color: var(--white); }

/* ========== Dashboard Sidebar Layout ========== */
.dashboard { display: flex; min-height: 100vh; }
.dashboard body { background: var(--off-white); }

.sidebar {
    width: var(--sidebar-width); background: var(--white);
    border-right: 1px solid var(--gray-100);
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; bottom: 0; z-index: 100;
    transition: transform 0.3s ease;
}
.sidebar-header { padding: 24px; border-bottom: 1px solid var(--gray-100); }
.sidebar-logo { display: flex; align-items: center; gap: 12px; }
.sidebar-logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 22px;
}
.sidebar-logo-text { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--gray-800); }
.sidebar-logo-text span { color: var(--primary); }
.sidebar-nav { flex: 1; padding: 20px 16px; overflow-y: auto; }
.nav-section { margin-bottom: 24px; }
.nav-section-title {
    font-size: 11px; font-weight: 700; color: var(--gray-400);
    text-transform: uppercase; letter-spacing: 1px; padding: 0 12px; margin-bottom: 8px;
}
.nav-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; border-radius: var(--radius-md);
    color: var(--gray-600); font-weight: 500; transition: var(--transition); margin-bottom: 4px;
}
.nav-item:hover { background: var(--gray-50); color: var(--primary); }
.nav-item.active { background: linear-gradient(135deg, rgba(13,92,99,0.08), rgba(13,92,99,0.04)); color: var(--primary); }
.nav-item i { font-size: 20px; width: 24px; text-align: center; }
.nav-item .badge { margin-left: auto; background: var(--accent); color: var(--white); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 10px; }
.sidebar-footer { padding: 20px; border-top: 1px solid var(--gray-100); }
.sidebar-user {
    display: flex; align-items: center; gap: 12px;
    padding: 12px; background: var(--gray-50); border-radius: var(--radius-md);
}
.user-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 700; font-size: 16px;
}
.user-info { flex: 1; min-width: 0; }
.user-name { font-weight: 600; color: var(--gray-800); font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-phone { font-size: 12px; color: var(--gray-500); }

/* ========== Main Content (Dashboard) ========== */
.main-content { flex: 1; margin-left: var(--sidebar-width); min-height: 100vh; }
.topbar {
    background: var(--white); border-bottom: 1px solid var(--gray-100);
    padding: 16px 32px; display: flex; align-items: center; justify-content: space-between;
    position: sticky; top: 0; z-index: 50;
}
.topbar-left { display: flex; align-items: center; gap: 16px; }
.page-title { font-size: 24px; font-weight: 700; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-btn { width: 44px; height: 44px; background: var(--gray-50); border: none; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--gray-600); cursor: pointer; transition: var(--transition); position: relative; }
.topbar-btn:hover { background: var(--gray-100); color: var(--primary); }
.topbar-btn .notification-dot { position: absolute; top: 10px; right: 10px; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.page-content { padding: 32px; }

/* ========== Welcome Banner ========== */
.welcome-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg); padding: 32px; color: var(--white);
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 32px; position: relative; overflow: hidden;
}
.welcome-banner::before {
    content: ''; position: absolute; right: -50px; top: -50px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.05); border-radius: 50%;
}
.welcome-banner h2 { font-size: 24px; margin-bottom: 8px; color: var(--white); }
.welcome-banner p { opacity: 0.85; font-size: 15px; }

/* ========== Stat Cards (Dashboard) ========== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 32px; }
.stat-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 24px;
    box-shadow: var(--shadow-sm); transition: var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); }
.stat-card-icon {
    width: 48px; height: 48px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 16px;
}
.stat-card-value { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--gray-800); }
.stat-card-label { font-size: 14px; color: var(--gray-500); margin-top: 4px; }

/* ========== Cards (Generic) ========== */
.card {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); overflow: hidden;
}
.card-header {
    padding: 20px 24px; border-bottom: 1px solid var(--gray-100);
    display: flex; align-items: center; justify-content: space-between;
}
.card-title {
    font-size: 18px; font-weight: 700;
    display: flex; align-items: center; gap: 10px;
}
.card-body { padding: 24px; }

/* ========== Status Badges ========== */
.status-badge {
    display: inline-block; padding: 6px 12px; border-radius: 20px;
    font-size: 12px; font-weight: 600;
}
.status-badge.pending { background: var(--warning-light); color: var(--warning); }
.status-badge.processing { background: var(--info-light); color: var(--info); }
.status-badge.ready { background: var(--success-light); color: var(--success); }
.status-badge.delivered { background: var(--gray-100); color: var(--gray-600); }
.status-badge.cancelled { background: var(--error-light); color: var(--error); }
.status-badge.pickup { background: var(--info-light); color: var(--info); }
.status-badge.paid { background: var(--success-light); color: var(--success); }
.status-badge.unpaid { background: var(--error-light); color: var(--error); }
.status-badge.partial { background: var(--warning-light); color: var(--warning); }

/* ========== Order Cards ========== */
.order-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); margin-bottom: 16px; overflow: hidden; transition: var(--transition); }
.order-card:hover { box-shadow: var(--shadow-md); }
.order-card-header {
    padding: 16px 24px; background: var(--gray-50);
    display: flex; align-items: center; justify-content: space-between;
}
.order-card-body { padding: 24px; }
.order-card-footer {
    padding: 16px 24px; border-top: 1px solid var(--gray-100);
    display: flex; align-items: center; justify-content: space-between;
}
.order-detail-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.order-detail-item .label { font-size: 12px; color: var(--gray-500); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.order-detail-item .value { font-weight: 600; color: var(--gray-800); }
.order-total { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--primary); }

/* ========== Order Timeline (Horizontal) ========== */
.order-timeline {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px; background: var(--gray-50); position: relative;
}
.timeline-step { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; z-index: 2; }
.timeline-icon {
    width: 40px; height: 40px; border-radius: 50%;
    border: 2px solid var(--gray-200); background: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--gray-400); transition: var(--transition);
}
.timeline-step.completed .timeline-icon { background: var(--success); border-color: var(--success); color: var(--white); }
.timeline-step.active .timeline-icon { background: var(--primary); border-color: var(--primary); color: var(--white); animation: pulse 2s infinite; }
.timeline-label { font-size: 12px; color: var(--gray-500); font-weight: 500; }
.timeline-step.completed .timeline-label { color: var(--success); }
.timeline-step.active .timeline-label { color: var(--primary); font-weight: 600; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(13,92,99,0.4); } 50% { box-shadow: 0 0 0 10px rgba(13,92,99,0); } }

/* ========== Status Timeline (Vertical) ========== */
.status-timeline { position: relative; padding: 0; list-style: none; }
.status-timeline li { position: relative; padding-left: 2.5rem; padding-bottom: 1.5rem; }
.status-timeline li:not(:last-child)::before {
    content: ''; position: absolute; left: 11px; top: 28px; bottom: 0;
    width: 2px; background: var(--gray-200);
}
.status-timeline li .timeline-dot {
    position: absolute; left: 0; top: 4px; width: 24px; height: 24px;
    border-radius: 50%; background: var(--gray-200);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; color: white;
}
.status-timeline li.active .timeline-dot { background: var(--primary); }
.status-timeline li.completed .timeline-dot { background: var(--success); }
.status-timeline li.completed::before { background: var(--success); }

/* ========== Quick Actions ========== */
.quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quick-action {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 20px; background: var(--off-white); border-radius: var(--radius-md);
    transition: var(--transition); cursor: pointer; text-align: center;
    border: none; font-family: var(--font-body);
}
.quick-action:hover { background: var(--gray-50); transform: translateY(-2px); }
.quick-action-icon {
    width: 44px; height: 44px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.quick-action span { font-size: 13px; font-weight: 600; color: var(--gray-700); }

/* ========== Auth Page (Login) ========== */
.auth-page { display: flex; min-height: 100vh; }
.auth-branding {
    flex: 1; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 60px; display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
}
.auth-branding::before {
    content: ''; position: absolute; top: -20%; right: -20%;
    width: 500px; height: 500px;
    background: rgba(255,255,255,0.05); border-radius: 50%;
}
.auth-branding::after {
    content: ''; position: absolute; bottom: -30%; left: -10%;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.03); border-radius: 50%;
}
.auth-branding-content { position: relative; z-index: 2; color: var(--white); }
.auth-branding h1 { color: var(--white); font-size: 42px; margin-bottom: 16px; }
.auth-branding p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 48px; }
.auth-features { list-style: none; }
.auth-features li { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.auth-feature-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: rgba(255,255,255,0.15); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--white);
}
.auth-feature-text strong { display: block; font-size: 15px; color: var(--white); }
.auth-feature-text span { font-size: 13px; color: rgba(255,255,255,0.7); }
.auth-form-panel { flex: 1; max-width: 560px; display: flex; align-items: center; justify-content: center; padding: 40px; }
.auth-form-container { width: 100%; max-width: 440px; }
.auth-form-header { text-align: center; margin-bottom: 32px; }
.auth-form-header h2 { font-size: 28px; margin-bottom: 8px; }
.auth-form-header p { color: var(--gray-500); font-size: 15px; }

/* OTP Input */
.otp-inputs { display: flex; gap: 12px; justify-content: center; margin-bottom: 24px; }
.otp-digit {
    width: 64px; height: 72px; text-align: center;
    font-family: var(--font-display); font-size: 28px; font-weight: 700;
    border: 2px solid var(--gray-100); border-radius: var(--radius-md);
    transition: var(--transition); color: var(--gray-800);
}
.otp-digit:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(13,92,99,0.1); }
.otp-digit.filled { border-color: var(--primary); background: var(--off-white); }
.otp-digit.error { border-color: var(--error); animation: shake 0.5s ease; }
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-8px); } 50% { transform: translateX(8px); } 75% { transform: translateX(-8px); } }

.auth-success-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--success-light); display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; font-size: 40px; color: var(--success);
    animation: scaleIn 0.5s ease;
}
@keyframes scaleIn { 0% { transform: scale(0); } 80% { transform: scale(1.1); } 100% { transform: scale(1); } }

/* ========== Profile Page ========== */
.profile-header {
    display: flex; align-items: center; gap: 24px;
    padding: 32px; background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); margin-bottom: 24px;
}
.profile-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 32px;
}
.profile-tabs { display: flex; gap: 4px; margin-bottom: 24px; background: var(--white); border-radius: var(--radius-md); padding: 4px; box-shadow: var(--shadow-sm); }
.profile-tab {
    flex: 1; padding: 12px; text-align: center; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 14px; cursor: pointer; transition: var(--transition);
    background: none; border: none; color: var(--gray-500); font-family: var(--font-body);
}
.profile-tab.active { background: var(--primary); color: var(--white); }

/* Toggle Switch */
.toggle { position: relative; width: 48px; height: 26px; cursor: pointer; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--gray-200); border-radius: 13px; transition: var(--transition);
}
.toggle-slider::before {
    content: ''; position: absolute; width: 20px; height: 20px; border-radius: 50%;
    background: var(--white); bottom: 3px; left: 3px; transition: var(--transition);
}
.toggle input:checked + .toggle-slider { background: var(--primary); }
.toggle input:checked + .toggle-slider::before { transform: translateX(22px); }

/* ========== Booking / Pickup Progress ========== */
.progress-steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 40px; }
.progress-step { display: flex; align-items: center; gap: 0; }
.progress-circle {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--gray-100); color: var(--gray-400);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px; transition: var(--transition);
}
.progress-step.active .progress-circle { background: var(--primary); color: var(--white); }
.progress-step.completed .progress-circle { background: var(--success); color: var(--white); }
.progress-connector { width: 40px; height: 2px; background: var(--gray-200); }
.progress-step.completed + .progress-connector, .progress-step.completed .progress-connector { background: var(--success); }

/* ========== Toast ========== */
.toast {
    position: fixed; bottom: 24px; right: 24px;
    background: var(--gray-800); color: var(--white);
    padding: 16px 24px; border-radius: var(--radius-md);
    display: flex; align-items: center; gap: 12px;
    box-shadow: var(--shadow-xl); transform: translateY(100px); opacity: 0;
    transition: var(--transition); z-index: 9999;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: var(--success); }
.toast.error { background: var(--error); }

/* ========== Mobile Menu ========== */
.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); z-index: 2000;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu-panel {
    position: absolute; top: 0; right: 0; width: 300px; max-width: 85vw;
    height: 100%; background: var(--white);
    display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform 0.3s ease;
    box-shadow: var(--shadow-xl);
}
.mobile-menu-overlay.open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; border-bottom: 1px solid var(--gray-100);
}
.mobile-menu-close {
    width: 36px; height: 36px; border: none; background: var(--gray-50);
    border-radius: var(--radius-sm); display: flex; align-items: center;
    justify-content: center; font-size: 18px; color: var(--gray-600);
    cursor: pointer; transition: var(--transition);
}
.mobile-menu-close:hover { background: var(--gray-100); color: var(--gray-800); }
.mobile-menu-links { flex: 1; padding: 16px 24px; overflow-y: auto; }
.mobile-nav-link {
    display: block; padding: 14px 0;
    font-weight: 500; font-size: 16px; color: var(--gray-700);
    border-bottom: 1px solid var(--gray-50); transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--primary); }
.mobile-menu-footer { padding: 20px 24px; border-top: 1px solid var(--gray-100); display: flex; flex-direction: column; gap: 10px; }

/* ========== Dashboard Body ========== */
.dashboard-body { background: var(--off-white); }

/* ========== Logo Image ========== */
.logo-img { height: 44px; object-fit: contain; }

/* ========== Payment Methods ========== */
.payment-methods {
    display: flex; align-items: center; gap: 12px;
    font-size: 13px; color: var(--gray-500);
}
.payment-methods i { font-size: 20px; color: var(--gray-400); }

/* ========== Branch Cards ========== */
.branch-card {
    background: var(--white); border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: var(--transition);
}
.branch-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.branch-card-map { height: 200px; overflow: hidden; }
.branch-card-map iframe { width: 100%; height: 100%; border: none; }
.branch-card-body { padding: 24px; }
.branch-card-body h3 { font-size: 18px; margin-bottom: 16px; }
.branch-info { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; color: var(--gray-600); }
.branch-info i { color: var(--primary); font-size: 16px; margin-top: 2px; }

/* ========== Responsive ========== */
@media (max-width: 1200px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .order-detail-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .nav-links, .nav-actions .nav-login { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-title { font-size: 38px; }
    .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .sidebar { transform: translateX(-100%); }
    .sidebar.open { transform: translateX(0); }
    .main-content { margin-left: 0; }
    .mobile-menu-btn { display: block; }
    .sidebar-overlay {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.5); z-index: 99;
        opacity: 0; visibility: hidden; transition: var(--transition);
    }
    .sidebar-overlay.show { opacity: 1; visibility: visible; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-title { font-size: 28px; }
    .hero { padding: 100px 0 60px; }
    .hero-title { font-size: 32px; }
    .hero-stats { gap: 24px; }
    .hero-buttons { flex-direction: column; }
    .services-grid, .testimonials-grid, .steps-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .cta-section { flex-direction: column; text-align: center; gap: 24px; padding: 40px 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .stats-grid { grid-template-columns: 1fr; }
    .page-content { padding: 16px; }
    .topbar { padding: 12px 16px; }
    .order-detail-grid { grid-template-columns: 1fr; }
    .auth-branding { display: none; }
    .auth-form-panel { max-width: 100%; }
    .otp-digit { width: 48px; height: 56px; font-size: 22px; }
    .hero-dark h1 { font-size: 32px; }
    .hero-dark .stat-number { font-size: 32px; }
}

@media (max-width: 480px) {
    .otp-digit { width: 42px; height: 48px; font-size: 20px; }
    .otp-inputs { gap: 8px; }
    .form-row { grid-template-columns: 1fr; }
    .quick-actions { grid-template-columns: 1fr; }
}
