/* ============================================
   FixNap IT Services - Main Stylesheet v2.0
   Material Design + Modern UI Blend
   ============================================ */

/* ----- CSS Variables ----- */
:root {
    --primary: #1a3a6e;
    --primary-light: #2d6bcb;
    --primary-dark: #0a1628;
    --accent: #ff6b35;
    --accent-light: #ff8f5e;
    --accent-dark: #e0552a;
    --secondary: #00b4d8;
    --secondary-light: #48cae4;
    --gradient-1: linear-gradient(135deg, #0a1628 0%, #1a3a6e 50%, #00b4d8 100%);
    --gradient-2: linear-gradient(135deg, #0a1628 0%, #1a3a6e 100%);
    --gradient-3: linear-gradient(135deg, #050d1a 0%, #0a1628 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35, #ff8f5e);
    --gradient-cta: linear-gradient(135deg, #1a3a6e, #00b4d8);
    --gradient-warm: linear-gradient(135deg, #ff6b35, #ff8f5e);
    --gradient-card: linear-gradient(135deg, #1a3a6e, #2d6bcb);
    --gradient-hero: linear-gradient(135deg, #050d1a 0%, #0a1628 40%, #1a3a6e 100%);
    --text-primary: #0a1628;
    --text-secondary: #3a4a6a;
    --text-muted: #7a8aaa;
    --text-white: #ffffff;
    --bg-primary: #ffffff;
    --bg-secondary: #e8f0fe;
    --bg-light: #f0f5ff;
    --bg-dark: #050d1a;
    --bg-footer: #030a12;
    --border: #d0dce8;
    --border-light: #e8eef6;
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 8px 40px rgba(10, 22, 40, 0.16);
    --shadow-xl: 0 16px 60px rgba(10, 22, 40, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 50%;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
    --header-height: 80px;
}

/* ----- Reset & Base ----- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body); color: var(--text-primary);
    background: var(--bg-primary); line-height: 1.6; overflow-x: hidden;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}
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: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ----- Section Spacing ----- */
.section { padding: 100px 0; }
.section-padding { padding: 80px 0; }
.section-dark { background: var(--bg-dark); color: var(--text-white); }
.section-gray { background: var(--bg-secondary); }
.bg-light { background: var(--bg-light); }
.bg-accent { background: var(--gradient-cta); color: white; }
.text-center { text-align: center; }

.section-header {
    text-align: center; margin-bottom: 48px;
}
.section-header h2 {
    font-family: var(--font-heading); font-size: 2.3rem; font-weight: 700;
    margin-bottom: 12px; color: var(--text-primary);
}
.section-header p {
    color: var(--text-secondary); font-size: 1.05rem; max-width: 600px; margin: 0 auto;
}
.section-dark .section-header h2,
.bg-accent .section-header h2 { color: white; }
.section-dark .section-header p,
.bg-accent .section-header p { color: rgba(255,255,255,0.8); }

.section-divider {
    width: 60px; height: 4px; background: var(--gradient-1);
    border-radius: 2px; margin: 16px auto 0;
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: var(--radius-md);
    font-family: var(--font-body); font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: var(--transition);
    border: none; outline: none; position: relative; overflow: hidden;
}
.btn::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,0.15); opacity: 0; transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 40px; font-size: 1.125rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
    background: var(--gradient-2); color: var(--text-white);
    box-shadow: 0 4px 15px rgba(26, 58, 110, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(26, 58, 110, 0.4); }

.btn-accent {
    background: var(--gradient-accent); color: var(--text-white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4); }

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

.btn-ghost {
    background: transparent; color: var(--text-primary); border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-secondary); border-color: var(--primary); color: var(--primary); }

.btn-white {
    background: var(--text-white); color: var(--primary); box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }

.btn-whatsapp { background: #25D366; color: white; box-shadow: 0 4px 15px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }

/* ----- Header ----- */
.site-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition); height: var(--header-height);
}
.site-header.scrolled { box-shadow: var(--shadow-lg); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-height); }

.logo { display: flex; align-items: center; gap: 12px; z-index: 1001; }
.logo-img { width: 44px; height: 44px; border-radius: var(--radius-sm); object-fit: contain; }
.logo-text { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.text-accent { color: var(--accent); }

.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list > li > a {
    padding: 8px 18px; border-radius: var(--radius-sm);
    font-size: 0.938rem; font-weight: 500; color: var(--text-secondary);
    transition: var(--transition); position: relative;
}
.nav-list > li > a:hover,
.nav-list > li > a.active { color: var(--primary); background: rgba(26,58,110,0.06); }
.nav-list > li > a i { font-size: 0.7rem; margin-left: 4px; }

.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 220px;
    background: var(--bg-primary); border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg); padding: 8px;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: var(--transition); z-index: 100;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
    display: block; padding: 10px 16px; border-radius: var(--radius-sm);
    color: var(--text-secondary); font-size: 0.9rem; font-weight: 500;
}
.dropdown-menu li a:hover { background: var(--bg-secondary); color: var(--primary); }

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

.mobile-toggle {
    display: none; flex-direction: column; justify-content: center;
    align-items: center; width: 40px; height: 40px;
    background: none; border: none; cursor: pointer; z-index: 1001; padding: 8px;
}
.mobile-toggle span { display: block; width: 24px; height: 2.5px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); margin: 3px 0; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ----- Hero ----- */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden; padding-top: var(--header-height);
    background: var(--gradient-hero);
}
.hero-bg-pattern { position: absolute; inset: 0; opacity: 0.08;
    background-image:
        radial-gradient(circle at 25% 40%, rgba(255,255,255,0.4) 0%, transparent 50%),
        radial-gradient(circle at 75% 60%, rgba(0,180,216,0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(255,107,53,0.2) 0%, transparent 50%);
}
.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-shape { position: absolute; border-radius: 50%; opacity: 0.06; }
.hero-shape-1 { width: 600px; height: 600px; background: var(--secondary); top: -10%; right: -10%; animation: float 20s infinite; }
.hero-shape-2 { width: 400px; height: 400px; background: var(--accent); bottom: -5%; left: -5%; animation: float 25s infinite reverse; }
.hero-shape-3 { width: 300px; height: 300px; background: white; top: 50%; left: 50%; animation: float 15s infinite 2s; }

@keyframes float {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(30px,-30px) scale(1.05); }
    66% { transform: translate(-20px,20px) scale(0.95); }
}

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-content { color: var(--text-white); }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px; border-radius: 50px;
    font-size: 0.875rem; font-weight: 500; margin-bottom: 24px;
}
.hero-badge i { color: var(--secondary); }

.hero-title {
    font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800;
    line-height: 1.15; margin-bottom: 20px;
}
.hero-title .highlight {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle { font-size: 1.2rem; line-height: 1.7; opacity: 0.9; margin-bottom: 36px; max-width: 540px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 40px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-stat-value { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; }
.hero-stat-label { font-size: 0.875rem; opacity: 0.7; margin-top: 4px; }

.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-visual-inner { position: relative; width: 460px; height: 460px; }
.hero-circle {
    width: 100%; height: 100%; border-radius: 50%;
    background: rgba(255,255,255,0.05); border: 2px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center; position: relative;
    animation: pulse 4s infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.03); } }
.hero-icon-main { font-size: 5rem; color: rgba(255,255,255,0.8); }
.hero-icon-ring { position: absolute; width: 100%; height: 100%; top: 0; left: 0; animation: spin 20s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-icon-item {
    position: absolute; width: 56px; height: 56px;
    background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: white;
}
.hero-icon-item:nth-child(1) { top: 8%; left: 50%; transform: translateX(-50%); }
.hero-icon-item:nth-child(2) { top: 50%; right: 3%; transform: translateY(-50%); }
.hero-icon-item:nth-child(3) { bottom: 8%; left: 50%; transform: translateX(-50%); }
.hero-icon-item:nth-child(4) { top: 50%; left: 3%; transform: translateY(-50%); }

/* ----- Page Header (Inner Pages) ----- */
.page-header {
    padding: 140px 0 80px;
    background: var(--gradient-hero);
    color: white; text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0,180,216,0.1) 0%, transparent 50%);
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; margin-bottom: 12px; }
.page-header p { font-size: 1.1rem; opacity: 0.85; max-width: 600px; margin: 0 auto; }
.breadcrumb { margin-top: 16px; font-size: 0.9rem; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb .separator { margin: 0 8px; font-size: 0.7rem; opacity: 0.5; }
.breadcrumb .current { color: var(--secondary); font-weight: 500; }

/* ----- Services Section (Home) ----- */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}
.service-card {
    background: var(--bg-primary); border-radius: var(--radius-lg);
    padding: 40px 32px; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition); text-align: center; position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--gradient-2); transform: scaleX(0); transform-origin: left;
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 72px; height: 72px; border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(26,58,110,0.08), rgba(0,180,216,0.08));
    color: var(--primary); transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--gradient-2); color: white;
    transform: scale(1.1) rotate(-5deg);
}
.service-card h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; margin-bottom: 12px; }
.service-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.service-card .service-link { color: var(--primary); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.service-card .service-link i { font-size: 0.8rem; transition: var(--transition); }
.service-card .service-link:hover i { transform: translateX(4px); }

/* ----- About Section ----- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image-main {
    border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image-main > div {
    width: 100%; height: 420px;
    background: var(--gradient-card);
    display: flex; align-items: center; justify-content: center;
}
.about-image-main i { font-size: 5rem; color: rgba(255,255,255,0.2); }
.about-experience {
    position: absolute; bottom: -25px; right: -25px;
    background: var(--gradient-warm); color: white;
    padding: 24px 32px; border-radius: var(--radius-lg);
    text-align: center; box-shadow: var(--shadow-xl);
}
.about-experience h3 { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.about-experience p { font-size: 0.85rem; opacity: 0.9; margin-top: 4px; }
.about-content h2 { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; margin-bottom: 16px; }
.about-content > p { color: var(--text-secondary); margin-bottom: 12px; line-height: 1.8; }

.about-features {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px;
}
.about-feature {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; background: var(--bg-light);
    border-radius: var(--radius-sm); border: 1px solid var(--border-light);
    transition: var(--transition);
}
.about-feature:hover { border-color: var(--primary); transform: translateX(4px); }
.about-feature i { color: var(--primary); font-size: 1rem; }
.about-feature span { font-size: 0.9rem; font-weight: 500; }

/* ----- Stats Counter ----- */
.stats-section {
    background: var(--gradient-3); padding: 80px 0; position: relative; overflow: hidden;
}
.stats-section::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; position: relative; }
.stat-item { color: white; }
.stat-icon { font-size: 2rem; margin-bottom: 16px; opacity: 0.5; }
.stat-number { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 1rem; opacity: 0.8; }

/* ----- Why Choose Us ----- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.why-card {
    padding: 36px 28px; background: var(--bg-primary);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition); text-align: center; position: relative; overflow: hidden;
}
.why-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(26,58,110,0.03), rgba(0,180,216,0.03));
    opacity: 0; transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-card:hover::before { opacity: 1; }
.why-number {
    font-family: var(--font-heading); font-size: 3rem; font-weight: 800;
    background: var(--gradient-2); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1; margin-bottom: 12px;
}
.why-card h4 { font-family: var(--font-heading); font-weight: 600; margin-bottom: 10px; font-size: 1.1rem; }
.why-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; position: relative; }

/* ----- Products ----- */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 24px; }
.product-card {
    background: var(--bg-primary); border-radius: var(--radius-lg);
    padding: 32px 24px; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light); transition: var(--transition); text-align: center;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-icon {
    width: 64px; height: 64px; border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(26,58,110,0.08), rgba(0,180,216,0.08));
    color: var(--primary); transition: var(--transition);
}
.product-card:hover .product-icon { background: var(--gradient-2); color: white; }
.product-card h4 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.product-card p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 16px; }
.product-card .btn { width: 100%; justify-content: center; }

/* ----- CTA Section ----- */
.cta-section {
    background: var(--gradient-cta); padding: 80px 0;
    text-align: center; color: white; position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; position: relative; }
.cta-section p { font-size: 1.15rem; opacity: 0.9; max-width: 600px; margin: 0 auto 36px; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ----- FAQ ----- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border); border-radius: var(--radius-md);
    margin-bottom: 12px; overflow: hidden; transition: var(--transition);
}
.faq-item.active { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,58,110,0.08); }
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; cursor: pointer; background: var(--bg-primary);
    font-weight: 600; font-size: 1rem; transition: var(--transition);
}
.faq-question:hover { background: var(--bg-light); }
.faq-question i { transition: var(--transition); color: var(--primary); font-size: 0.9rem; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: var(--transition); padding: 0 24px; background: var(--bg-primary); }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { color: var(--text-secondary); line-height: 1.7; font-size: 0.95rem; }

/* ----- Inner Page Content Styles ----- */
.intro-text {
    max-width: 800px; margin: 0 auto; text-align: center;
    color: var(--text-secondary); font-size: 1.05rem; line-height: 1.8;
}

.story-content { max-width: 800px; margin: 0 auto; }
.story-content p { color: var(--text-secondary); line-height: 1.9; margin-bottom: 20px; font-size: 1.05rem; }

.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mission-box, .vision-box {
    padding: 40px 32px; border-radius: var(--radius-lg);
    background: var(--bg-primary); box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light); transition: var(--transition);
    text-align: center;
}
.mission-box:hover, .vision-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mv-icon {
    width: 64px; height: 64px; border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin: 0 auto 20px;
    background: var(--gradient-2); color: white;
}
.mission-box h3, .vision-box h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; margin-bottom: 12px; }
.mission-box p, .vision-box p { color: var(--text-secondary); line-height: 1.7; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.value-card {
    padding: 32px 24px; background: var(--bg-primary);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light); transition: var(--transition);
    text-align: center;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-icon {
    width: 60px; height: 60px; border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(26,58,110,0.08), rgba(0,180,216,0.08));
    color: var(--primary); transition: var(--transition);
}
.value-card:hover .value-icon { background: var(--gradient-2); color: white; }
.value-card h4 { font-family: var(--font-heading); font-weight: 600; margin-bottom: 8px; }
.value-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 28px; }
.team-card {
    background: var(--bg-primary); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); border: 1px solid var(--border-light);
    overflow: hidden; transition: var(--transition); text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-img {
    width: 120px; height: 120px; border-radius: 50%;
    margin: 32px auto 0; display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: white;
}
.team-card h4 { font-family: var(--font-heading); font-weight: 600; margin-top: 16px; font-size: 1.15rem; }
.team-role { color: var(--text-muted); font-size: 0.85rem; margin: 4px 0 16px; }
.team-bio { color: var(--text-secondary); font-size: 0.9rem; padding: 0 20px 24px; line-height: 1.6; }

.cta-content h2 { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; margin-bottom: 12px; }
.cta-content p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 28px; }

/* ----- Contact Page ----- */
.contact-section { padding: 80px 0; }
.contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 1.2fr; 
    gap: 48px;
    align-items: start;
}
.contact-info h2 { 
    font-family: var(--font-heading); 
    font-size: 1.8rem; 
    font-weight: 700; 
    margin-bottom: 12px;
    color: var(--text-primary);
}
.contact-info > p { 
    color: var(--text-secondary); 
    margin-bottom: 32px;
    line-height: 1.8;
}
.contact-info-items { 
    display: flex; 
    flex-direction: column; 
    gap: 20px;
}
.contact-info-item { 
    display: flex; 
    gap: 16px; 
    align-items: flex-start; 
    padding: 20px; 
    border-radius: var(--radius-md); 
    background: var(--bg-light); 
    border: 1px solid var(--border-light); 
    transition: var(--transition);
}
.contact-info-item:hover { 
    border-color: var(--primary); 
    transform: translateX(6px);
    box-shadow: 0 4px 20px rgba(26,58,110,0.12);
}
.contact-info-icon {
    width: 52px; 
    height: 52px; 
    min-width: 52px; 
    border-radius: var(--radius-md);
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 1.4rem; 
    background: var(--gradient-2); 
    color: white;
    transition: var(--transition);
}
.contact-info-item:hover .contact-info-icon {
    transform: scale(1.1) rotate(-5deg);
}
.contact-info-content h4 { 
    font-size: 1.05rem; 
    font-weight: 600; 
    margin-bottom: 6px;
    color: var(--text-primary);
}
.contact-info-content p,
.contact-info-content a { 
    color: var(--text-secondary); 
    font-size: 0.9rem;
    line-height: 1.6;
}
.contact-info-content a { 
    font-weight: 500;
    transition: var(--transition);
}
.contact-info-content a:hover { 
    color: var(--primary);
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--bg-primary); 
    padding: 48px 40px;
    border-radius: var(--radius-xl); 
    box-shadow: 0 10px 40px rgba(26,58,110,0.1);
    border: 1px solid var(--border-light);
    animation: slideInRight 0.6s ease;
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
.contact-form-wrapper h2 { 
    font-family: var(--font-heading); 
    font-size: 1.6rem; 
    font-weight: 700; 
    margin-bottom: 28px;
    color: var(--text-primary);
}

.form-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 16px;
    margin-bottom: 20px;
}
.form-row.full { grid-template-columns: 1fr; }

.contact-map .map-container {
    border-radius: var(--radius-lg); 
    overflow: hidden; 
    box-shadow: var(--shadow-md);
    margin-top: 48px;
}

.social-links-large {
    display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.social-link {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    width: 100px; padding: 20px; border-radius: var(--radius-lg);
    background: var(--bg-primary); border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm); transition: var(--transition);
    font-size: 0.85rem; font-weight: 500; color: var(--text-primary);
}
.social-link i { font-size: 1.8rem; }
.social-link:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.social-link.facebook:hover { background: #1877f2; color: white; border-color: #1877f2; }
.social-link.twitter:hover { background: #1da1f2; color: white; border-color: #1da1f2; }
.social-link.linkedin:hover { background: #0a66c2; color: white; border-color: #0a66c2; }
.social-link.instagram:hover { background: #e4405f; color: white; border-color: #e4405f; }
.social-link.youtube:hover { background: #ff0000; color: white; border-color: #ff0000; }

/* ----- Form Elements ----- */
.form-group { margin-bottom: 24px; animation: fadeInDown 0.5s ease-out; }
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group label .required { color: #ef4444; }
.form-control {
    width: 100%; padding: 14px 16px; border: 2px solid var(--border);
    border-radius: var(--radius-sm); font-family: var(--font-body);
    font-size: 0.95rem; transition: var(--transition);
    background: var(--bg-primary); color: var(--text-primary);
}
.form-control:focus { 
    outline: none; border-color: var(--primary); 
    box-shadow: 0 0 0 4px rgba(26,58,110,0.12);
    transform: translateY(-2px);
}
.form-control:hover { border-color: var(--primary-light); }
.form-control.error { border-color: #ef4444; box-shadow: 0 0 0 4px rgba(239,68,68,0.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control {
    appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4a6a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px;
}
.form-error { color: #ef4444; font-size: 0.8rem; margin-top: 6px; display: none; font-weight: 500; }
.form-error.show { display: block; animation: shake 0.4s ease; }
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}
.form-success { background: #dcfce7; color: #166534; padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 20px; display: none; border: 1px solid #bbf7d0; }
.form-success.show { display: block; animation: slideInDown 0.4s ease; }

/* ----- Auth Pages ----- */
.auth-section {
    min-height: calc(100vh - var(--header-height)); display: flex; align-items: center; justify-content: center;
    padding: 20px; margin-top: var(--header-height);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #f0ecf8 100%);
    position: relative; overflow: hidden;
}
.auth-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(26,58,110,0.08) 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(0,180,216,0.06) 0%, transparent 40%);
    pointer-events: none;
}
.auth-card {
    background: var(--bg-primary); border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(26,58,110,0.15);
    padding: 48px 40px; width: 100%; max-width: 480px;
    margin: 0 auto;
    border: 1px solid rgba(26,58,110,0.08);
    position: relative; z-index: 1;
    animation: slideInUp 0.6s ease;
}
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.auth-header { text-align: center; margin-bottom: 36px; }
.auth-logo { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 24px; }
.auth-logo img { width: 56px; height: 56px; border-radius: var(--radius-sm); transition: var(--transition); }
.auth-logo img:hover { transform: scale(1.05); }
.auth-logo-text { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 800; color: var(--primary); }
.auth-header h1 { font-family: var(--font-heading); font-size: 1.7rem; font-weight: 700; color: var(--text-primary); }
.auth-header p { color: var(--text-secondary); font-size: 0.95rem; margin-top: 10px; }
.auth-footer {
    text-align: center; margin-top: 28px; padding-top: 24px;
    border-top: 1px solid var(--border-light); font-size: 0.9rem; color: var(--text-secondary);
}
.auth-footer a { color: var(--primary); font-weight: 600; transition: var(--transition); }
.auth-footer a:hover { color: var(--primary-light); text-decoration: underline; }

/* ----- Empty State ----- */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state-icon { font-size: 3rem; color: var(--text-muted); margin-bottom: 16px; }
.empty-state h3 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600; margin-bottom: 8px; }
.empty-state p { color: var(--text-secondary); margin-bottom: 24px; max-width: 400px; margin-left: auto; margin-right: auto; }

/* Dashboard Filters */
.dashboard-filters { margin-bottom: 24px; }
.filter-form { max-width: 300px; }
.filter-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; color: var(--text-secondary); }

/* ----- Dashboard ----- */
.dashboard-section {
    padding: 120px 20px 60px; background: var(--bg-secondary); min-height: 100vh;
}
.dashboard-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 32px; flex-wrap: wrap; gap: 16px;
}
.dashboard-header h2 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; }
.dashboard-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-bottom: 40px; }
.dashboard-card {
    background: var(--bg-primary); border-radius: var(--radius-md);
    padding: 24px; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    display: flex; justify-content: space-between; align-items: center;
    transition: var(--transition);
}
.dashboard-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.dashboard-card-info h4 { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; margin-bottom: 4px; }
.dashboard-card-info .value { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; }
.dashboard-card-icon {
    width: 48px; height: 48px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; background: linear-gradient(135deg, rgba(26,58,110,0.08), rgba(0,180,216,0.08));
    color: var(--primary);
}

.booking-table-wrap {
    background: var(--bg-primary); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); overflow: hidden;
}
.booking-table-header {
    padding: 20px 24px; border-bottom: 1px solid var(--border-light);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.booking-table-header h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; }
.booking-table { width: 100%; border-collapse: collapse; }
.booking-table th {
    text-align: left; padding: 14px 24px; font-size: 0.8rem; font-weight: 600;
    color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px;
    background: var(--bg-light); border-bottom: 1px solid var(--border-light);
}
.booking-table td { padding: 16px 24px; font-size: 0.9rem; border-bottom: 1px solid var(--border-light); }
.booking-table tr:last-child td { border-bottom: none; }
.booking-table tr:hover td { background: var(--bg-light); }

.status-badge { display: inline-flex; padding: 4px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }
.status-booked { background: #dbeafe; color: #1e40af; }
.status-allotted { background: #dcfce7; color: #166534; }
.status-in_progress { background: #fef3c7; color: #92400e; }
.status-completed { background: #f3f4f6; color: #374151; }
.status-cancelled { background: #fee2e2; color: #b91c1c; }

/* ----- Booking Form ----- */
.booking-section { padding: 120px 20px 60px; background: var(--bg-secondary); min-height: 100vh; }
.booking-steps { display: flex; justify-content: center; gap: 0; margin-bottom: 40px; }
.booking-step {
    display: flex; align-items: center; gap: 10px; padding: 14px 28px;
    font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
    background: var(--bg-primary); border: 2px solid var(--border);
    position: relative; transition: var(--transition);
}
.booking-step:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.booking-step:last-child { border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.booking-step + .booking-step { border-left: none; }
.booking-step.active {
    color: var(--primary); border-color: var(--primary);
    background: linear-gradient(135deg, rgba(26,58,110,0.06), rgba(0,180,216,0.06));
    z-index: 1;
}
.booking-step.completed { color: #166534; border-color: #22c55e; background: rgba(34,197,94,0.06); }

.booking-step-number {
    width: 30px; height: 30px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700;
    background: var(--border); color: var(--text-muted); transition: var(--transition);
}
.booking-step.active .booking-step-number { background: var(--primary); color: white; }
.booking-step.completed .booking-step-number { background: #22c55e; color: white; }

.booking-form-container {
    background: var(--bg-primary); border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl); padding: 48px 40px;
    max-width: 800px; margin: 0 auto;
}
.booking-step-content { display: none; }
.booking-step-content.active { display: block; animation: fadeIn 0.3s ease; }

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

.booking-nav { display: flex; justify-content: space-between; margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border-light); }

.problems-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; max-height: 380px; overflow-y: auto; padding: 4px 2px; }
.problem-checkbox {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; border-radius: var(--radius-md);
    cursor: pointer; transition: var(--transition);
    border: 2px solid var(--border-light);
    background: var(--bg-primary);
    user-select: none;
}
.problem-checkbox:hover { background: var(--bg-light); border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.problem-checkbox:has(input:checked) { border-color: var(--primary); background: linear-gradient(135deg, rgba(26,58,110,0.06), rgba(0,180,216,0.04)); box-shadow: 0 0 0 3px rgba(26,58,110,0.08); }
.problem-checkbox input[type="checkbox"] {
    width: 20px; height: 20px; accent-color: var(--primary);
    cursor: pointer; flex-shrink: 0;
}
.problem-checkbox span { font-size: 0.9rem; cursor: pointer; color: var(--text-secondary); font-weight: 500; line-height: 1.3; }
.problem-checkbox:has(input:checked) span { color: var(--primary); font-weight: 600; }

.booking-confirm-box { background: var(--bg-light); border-radius: var(--radius-md); padding: 24px; margin-bottom: 24px; border: 1px solid var(--border-light); }
.booking-confirm-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-light); font-size: 0.95rem; }
.booking-confirm-row:last-child { border-bottom: none; }
.booking-confirm-row .label { color: var(--text-muted); font-weight: 500; }
.booking-confirm-row .value { font-weight: 600; text-align: right; }

/* ----- Notifications / Alerts ----- */
.alert {
    padding: 16px 20px; border-radius: var(--radius-sm);
    margin-bottom: 20px; font-size: 0.95rem;
    display: flex; align-items: center; gap: 12px;
}
.alert i { font-size: 1.2rem; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fee2e2; color: #b91c1c; border: 1px solid #fecaca; }
.alert-info { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }

/* ----- Footer ----- */
.site-footer { background: var(--bg-footer); color: rgba(255,255,255,0.8); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-img { width: 40px; height: 40px; border-radius: var(--radius-sm); }
.footer-logo-text { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: white; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; opacity: 0.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5);
    font-size: 1rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--gradient-2); color: white; transform: translateY(-3px); }

.footer-heading {
    font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600;
    color: white; margin-bottom: 20px; position: relative; padding-bottom: 12px;
}
.footer-heading::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 30px; height: 3px; background: var(--gradient-1); border-radius: 2px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: white; transform: translateX(4px); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 0.9rem; }
.footer-contact i { margin-top: 4px; color: var(--secondary); width: 16px; text-align: center; }
.footer-contact a:hover { color: var(--secondary); }

.footer-newsletter { margin-top: 24px; }
.newsletter-form { display: flex; margin-top: 12px; }
.newsletter-form input {
    flex: 1; padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    background: rgba(255,255,255,0.04); color: white; font-size: 0.9rem; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form button {
    padding: 10px 16px; background: var(--primary); color: white;
    border: none; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer; transition: var(--transition);
}
.newsletter-form button:hover { background: var(--primary-light); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); margin-top: 60px; padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; opacity: 0.5; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: white; }

/* ----- Back to Top & WhatsApp ----- */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px;
    border-radius: 50%; background: var(--gradient-2); color: white;
    border: none; cursor: pointer; font-size: 1.1rem;
    box-shadow: var(--shadow-md); z-index: 999;
    opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

.whatsapp-float {
    position: fixed; bottom: 30px; left: 30px; width: 56px; height: 56px;
    border-radius: 50%; background: #25D366; color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999; transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}
@keyframes whatsappPulse { 0%,100% { box-shadow: 0 4px 15px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 25px rgba(37,211,102,0.6); } }
.whatsapp-float:hover { transform: scale(1.1); color: white; }

/* ----- Legal Pages ----- */
.legal-content { max-width: 800px; margin: 0 auto; padding: 60px 0; }
.legal-content h2 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; margin-top: 40px; margin-bottom: 16px; }
.legal-content h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; margin-top: 32px; margin-bottom: 12px; color: var(--primary); }
.legal-content p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content ul li { color: var(--text-secondary); line-height: 1.8; margin-bottom: 8px; list-style: disc; }
.legal-content strong { color: var(--text-primary); }

/* ----- 404 Page ----- */
.page-404 {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 120px 20px; background: var(--bg-secondary);
}
.page-404 h1 {
    font-size: 8rem; font-weight: 800;
    background: var(--gradient-1); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}
.page-404 h2 { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; margin: 16px 0 8px; }
.page-404 p { color: var(--text-secondary); margin-bottom: 32px; }

/* ----- App Showcase (Home) ----- */
.app-showcase { padding: 80px 0; }
.app-showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.app-showcase-content h2 { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; margin-bottom: 16px; }
.app-showcase-content > p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; }
.app-features-list { display: grid; gap: 16px; }
.app-feature-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px; background: var(--bg-light);
    border-radius: var(--radius-sm); border: 1px solid var(--border-light);
    transition: var(--transition);
}
.app-feature-item:hover { border-color: var(--primary); transform: translateX(4px); }
.app-feature-item i { color: var(--primary); font-size: 1.1rem; width: 24px; text-align: center; }
.app-feature-item span { font-size: 0.95rem; font-weight: 500; }

.app-mockup {
    width: 280px; height: 560px;
    background: linear-gradient(180deg, var(--primary-dark), var(--primary));
    border-radius: 40px; padding: 16px 8px;
    box-shadow: var(--shadow-xl); position: relative;
}
.app-mockup::before {
    content: ''; position: absolute; top: 12px; left: 50%;
    transform: translateX(-50%); width: 120px; height: 4px;
    background: rgba(255,255,255,0.2); border-radius: 2px;
}
.app-mockup-screen {
    width: 100%; height: 100%; background: rgba(255,255,255,0.08);
    border-radius: 32px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; padding: 20px;
    color: white; text-align: center;
}
.app-mockup-screen i { font-size: 3rem; margin-bottom: 16px; opacity: 0.7; }
.app-mockup-screen h4 { font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }
.app-mockup-screen p { font-size: 0.85rem; opacity: 0.6; }
.coming-soon-badge { display: inline-block; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; margin-top: 20px; }

/* ----- Tech Strip ----- */
.tech-strip { padding: 60px 0; background: var(--bg-primary); }
.tech-strip-inner { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 40px; opacity: 0.4; }
.tech-item { font-size: 1rem; font-weight: 600; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
.tech-item i { font-size: 1.5rem; }

/* ----- Software Detail Cards ----- */
.software-grid, .hardware-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px;
}
.software-detail-card, .hardware-detail-card {
    background: var(--bg-primary); border-radius: var(--radius-lg);
    padding: 32px 28px; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    display: flex; gap: 20px; align-items: flex-start;
    transition: var(--transition);
}
.software-detail-card:hover, .hardware-detail-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.sd-icon, .hd-icon {
    width: 56px; height: 56px; min-width: 56px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; background: var(--gradient-2); color: white;
    transition: var(--transition);
}
.software-detail-card:hover .sd-icon,
.hardware-detail-card:hover .hd-icon {
    transform: scale(1.1) rotate(-5deg);
}
.sd-content h3, .hd-content h3 {
    font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; margin-bottom: 8px;
}
.sd-content p, .hd-content p {
    color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7;
}

/* ----- Tech Grid ----- */
.tech-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px;
}
.tech-grid .tech-item {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 20px 16px; background: var(--bg-primary);
    border-radius: var(--radius-md); border: 1px solid var(--border-light);
    text-align: center; transition: var(--transition);
}
.tech-grid .tech-item:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary);
}
.tech-grid .tech-item i {
    font-size: 2rem; color: var(--primary);
}
.tech-grid .tech-item span {
    font-size: 0.85rem; font-weight: 500; color: var(--text-secondary);
}

/* ----- Product Tiles (Products Page) ----- */
.product-tiles-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px;
}
.product-tile {
    background: var(--bg-primary); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light); transition: var(--transition);
}
.product-tile:hover {
    transform: translateY(-6px); box-shadow: var(--shadow-xl);
}
.product-tile-bg {
    padding: 32px; display: flex; align-items: center; justify-content: center;
    min-height: 120px; position: relative; overflow: hidden;
}
.product-tile-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.15) 100%);
}
.product-tile-bg i {
    font-size: 3.5rem; color: rgba(255,255,255,0.9); position: relative; z-index: 1;
}
.product-tile-content {
    padding: 20px 24px 24px;
}
.product-tile-content h3 {
    font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; margin-bottom: 8px;
}
.product-tile-content p {
    color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px;
}
.product-tile-footer {
    display: flex; justify-content: space-between; align-items: center;
}
.product-tag {
    display: inline-block; padding: 3px 10px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 600;
    background: var(--bg-secondary); color: var(--primary);
}
.product-tile:hover .product-tile-bg i {
    transform: scale(1.1); transition: var(--transition);
}

/* ----- Benefits Grid ----- */
.benefits-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px;
}
.benefit-item {
    padding: 32px 24px; background: var(--bg-primary);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light); text-align: center;
    transition: var(--transition);
}
.benefit-item:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.benefit-icon {
    width: 60px; height: 60px; border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(26,58,110,0.08), rgba(0,180,216,0.08));
    color: var(--primary); transition: var(--transition);
}
.benefit-item:hover .benefit-icon {
    background: var(--gradient-2); color: white;
}
.benefit-item h3 {
    font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; margin-bottom: 8px;
}
.benefit-item p {
    color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6;
}

/* ----- Spinner ----- */
.spinner { display: inline-block; width: 20px; height: 20px; border: 3px solid rgba(255,255,255,0.3); border-radius: 50%; border-top-color: white; animation: spinAnim 0.8s linear infinite; }
@keyframes spinAnim { to { transform: rotate(360deg); } }

/* ----- Tracking Page ----- */
.track-section { padding: 120px 20px 60px; background: var(--bg-secondary); min-height: 100vh; }
.track-card { background: var(--bg-primary); border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); padding: 40px; max-width: 700px; margin: 0 auto; }
.track-result { margin-top: 32px; }
.timeline { display: flex; justify-content: space-between; align-items: center; margin: 32px 0; padding: 0 20px; }
.timeline-step { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; flex: 1; }
.timeline-dot { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--border); color: var(--text-muted); font-size: 0.8rem; font-weight: 700; z-index: 1; }
.timeline-step.active .timeline-dot { background: var(--primary); color: white; box-shadow: 0 0 0 4px rgba(26,58,110,0.2); }
.timeline-step.completed .timeline-dot { background: #22c55e; color: white; }
.timeline-label { font-size: 0.75rem; color: var(--text-muted); text-align: center; font-weight: 500; }
.timeline-step.active .timeline-label { color: var(--primary); font-weight: 600; }
.timeline-step.completed .timeline-label { color: #166534; }
.timeline::before { content: ''; position: absolute; top: 18px; left: 40px; right: 40px; height: 2px; background: var(--border); z-index: 0; }

.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.detail-item { padding: 12px 16px; background: var(--bg-light); border-radius: var(--radius-sm); }
.detail-item .label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.detail-item .value { font-size: 0.95rem; font-weight: 600; margin-top: 2px; }

/* ----- Career Page ----- */
.jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.job-card {
    background: var(--bg-primary); border-radius: var(--radius-lg);
    padding: 32px 28px; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light); transition: var(--transition);
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.job-card h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.job-card .job-type { color: var(--primary); font-size: 0.85rem; font-weight: 500; }
.job-card p { color: var(--text-secondary); font-size: 0.9rem; margin: 12px 0 16px; line-height: 1.6; }

/* ----- Responsive ----- */
@media (max-width: 1200px) {
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content { order: 1; }
    .hero-visual { order: 0; }
    .hero-visual-inner { width: 320px; height: 320px; }
    .hero-subtitle { margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-title { font-size: 2.8rem; }
    .about-grid { grid-template-columns: 1fr; }
    .app-showcase-grid { grid-template-columns: 1fr; }
    .mission-vision-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    :root { --header-height: 70px; }
    body.nav-open { overflow: hidden; }
    .section { padding: 60px 0; }
    .section-padding { padding: 50px 0; }
    .section-header h2 { font-size: 1.6rem; }
    .mobile-toggle { display: flex; }
    .main-nav {
        display: flex; position: fixed; top: 0; left: 0; width: 100%; height: 100dvh;
        background: var(--bg-primary); flex-direction: column;
        justify-content: center; align-items: center;
        opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; z-index: 1000;
    }
    .main-nav.active { opacity: 1; visibility: visible; }
    .nav-list { flex-direction: column; gap: 0; width: 100%; max-width: 320px; }
    .nav-list > li > a { font-size: 1.15rem; padding: 14px 24px; display: block; text-align: center; border-radius: var(--radius-sm); }
    .nav-list > li > a:active { background: var(--bg-light); }
    .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; display: none; background: var(--bg-light); padding: 4px 16px; }
    .dropdown.open .dropdown-menu { display: block; }
    .header-actions .btn-ghost, .header-actions .btn-outline { display: none; }

    .hero { min-height: auto; padding: 100px 0 50px; }
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .hero-stat-value { font-size: 1.5rem; }
    .hero-visual-inner { width: 180px; height: 180px; }
    .hero-icon-main { font-size: 2.5rem; }
    .hero-icon-item { width: 36px; height: 36px; font-size: 0.9rem; }
    .hero-badge { font-size: 0.8rem; padding: 6px 16px; }

    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-card { padding: 28px 20px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-number { font-size: 1.8rem; }
    .stat-icon { font-size: 1.5rem; margin-bottom: 8px; }
    .why-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .product-card { padding: 20px 16px; }
    .product-icon { width: 48px; height: 48px; font-size: 1.2rem; }
    .product-tiles-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .benefit-item { padding: 20px 16px; }
    .jobs-grid { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; gap: 24px; }
    .contact-form-wrapper { padding: 24px 20px; }
    .contact-form { padding: 0; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }

    .page-header { padding: 100px 0 40px; }
    .page-header h1 { font-size: 1.7rem; }

    .booking-steps { flex-direction: column; gap: 4px; }
    .booking-step { border-radius: var(--radius-sm); justify-content: center; padding: 10px 20px; font-size: 0.85rem; }
    .booking-step + .booking-step { border-left: 2px solid var(--border); }
    .booking-form-container { padding: 20px; }
    .booking-nav { flex-direction: column; gap: 8px; }
    .booking-nav .btn { width: 100%; justify-content: center; }

    .auth-card { padding: 28px 20px; }
    .auth-header h1 { font-size: 1.4rem; }
    .auth-logo img { width: 44px; height: 44px; }
    .auth-logo-text { font-size: 1.5rem; }

    .dashboard-grid { grid-template-columns: 1fr; }
    .dashboard-card { padding: 16px; }
    .dashboard-card-info .value { font-size: 1.4rem; }
    .booking-table-header { flex-direction: column; align-items: flex-start; }
    .booking-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-features { grid-template-columns: 1fr; }
    .about-experience { position: relative; bottom: 0; right: 0; margin-top: 16px; padding: 16px 24px; }
    .about-experience h3 { font-size: 2rem; }
    .about-image-main > div { height: 280px; }
    .mission-vision-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    .app-showcase-grid { grid-template-columns: 1fr; }
    .app-mockup { width: 220px; height: 440px; }
    .app-features-list { gap: 10px; }
    .app-feature-item { padding: 10px 14px; }

    .software-grid, .hardware-grid { grid-template-columns: 1fr; }
    .software-detail-card, .hardware-detail-card { flex-direction: column; text-align: center; padding: 24px 20px; }
    .sd-icon, .hd-icon { margin: 0 auto; }
    .tech-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .tech-grid .tech-item { padding: 14px 10px; }
    .tech-grid .tech-item i { font-size: 1.5rem; }

    .legal-content { padding: 30px 0; }
    .legal-content h2 { font-size: 1.2rem; }
    .page-404 h1 { font-size: 4rem; }
    .page-404 h2 { font-size: 1.3rem; }

    .problems-grid { grid-template-columns: 1fr 1fr; max-height: 300px; }
    .problem-checkbox { padding: 10px 12px; }
    .problem-checkbox span { font-size: 0.85rem; }

    .whatsapp-float { width: 44px; height: 44px; font-size: 1.2rem; bottom: 16px; left: 16px; }
    .back-to-top { width: 38px; height: 38px; font-size: 0.9rem; bottom: 16px; right: 16px; }
    .social-links-large { gap: 10px; }
    .social-link { width: 70px; padding: 12px; }
    .social-link i { font-size: 1.4rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .detail-grid { grid-template-columns: 1fr; }
    .timeline::before { left: 16px; right: 16px; }

    .cta-section { padding: 50px 0; }
    .cta-section h2 { font-size: 1.6rem; }
    .cta-section p { font-size: 1rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }

    .faq-question { padding: 16px 20px; font-size: 0.95rem; }
    .faq-answer p { font-size: 0.9rem; }

    .about-content h2 { font-size: 1.6rem; }
    .about-content > p { font-size: 0.95rem; }
    .section-header h2 { font-size: 1.5rem; }
    .section-header p { font-size: 0.95rem; }

    .auth-section { padding: 10px; }
    .contact-info h2 { font-size: 1.4rem; }
    .contact-info-item { padding: 14px; }
    .contact-info-icon { width: 40px; height: 40px; min-width: 40px; font-size: 1rem; }

    .booking-table th, .booking-table td { padding: 10px 14px; font-size: 0.8rem; }
    .booking-table td .btn { font-size: 0.75rem; padding: 6px 12px; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-number { font-size: 1.6rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .dashboard-grid { grid-template-columns: 1fr; }
    .auth-card { padding: 24px 16px; }
    .booking-form-container { padding: 16px; }
}

/* ===== Enhanced Animations & Effects ===== */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* Smooth page transitions */
.page-transition-enter {
    animation: fadeInScale 0.5s ease-out;
}

/* Enhanced button transitions */
.btn {
    position: relative;
    overflow: visible;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

/* Page content alignment improvements */
.page-content {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-content main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Improved section spacing */
.section {
    padding: 100px 0;
}

/* Improved form layout */
.auth-form {
    animation: fadeInScale 0.5s ease-out;
}

.auth-form .form-group:nth-child(1) {
    animation-delay: 0.1s;
}

.auth-form .form-group:nth-child(2) {
    animation-delay: 0.2s;
}

.auth-form .form-group:nth-child(3) {
    animation-delay: 0.3s;
}

/* Focus visible for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
