/* 
  9/1 Car Care - Custom Stylesheet
  Premium Vibrant Dark Theme with Glassmorphism 
*/

:root {
    /* Color Palette - Vibrant Edition */
    --primary: #00f2fe;
    --primary-dark: #0066ff;
    --secondary: #4facfe;
    --accent-glow: rgba(0, 242, 254, 0.5);
    
    /* Backgrounds */
    --bg-dark: #070b14;
    --bg-darker: #030509;
    
    /* Text */
    --text-main: #ffffff;
    --text-muted: #a0aec0;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-blur: blur(16px);
    
    /* Variables */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Kanit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    /* Add subtle animated background gradient */
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(0, 242, 254, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 102, 255, 0.08), transparent 25%);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.highlight { 
    color: var(--primary);
    text-shadow: 0 0 15px var(--accent-glow);
}
.text-highlight { color: var(--primary); font-weight: 600; }

.section {
    padding: 100px 0;
}

.dark-bg {
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.15rem;
}

.btn-primary {
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    color: #030509;
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 242, 254, 0.6);
}

.btn-outline {
    background: rgba(0, 242, 254, 0.05);
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1) inset;
}

.btn-outline:hover {
    background: var(--primary);
    color: #030509;
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.4);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(7, 11, 20, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at top right, #002c52 0%, #070b14 60%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(0, 242, 254, 0.15);
    filter: blur(120px);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 11, 20, 0.3) 0%, rgba(3, 5, 9, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 25px;
    background: linear-gradient(to right, #ffffff, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 15px rgba(0, 242, 254, 0.3));
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 45px;
    max-width: 650px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Glass Card Global */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 35px;
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.glass-card:hover {
    border-color: rgba(0, 242, 254, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 242, 254, 0.15);
    transform: translateY(-8px);
}

/* Services */
.section-header {
    margin-bottom: 70px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 5px 15px rgba(0, 242, 254, 0.4));
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Delivery Banner */
.delivery-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
    background: linear-gradient(135deg, rgba(3, 5, 9, 0.9), rgba(0, 242, 254, 0.15));
    border-color: rgba(0, 242, 254, 0.2);
}

.delivery-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.delivery-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 5px 15px rgba(245, 158, 11, 0.4));
}

.delivery-text h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 8px;
}

.delivery-text p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1.1rem;
}

/* Info Section */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.info-card {
    text-align: center;
    padding: 40px 20px;
}

.info-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.5));
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.info-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(255,255,255,0.2);
}

.info-sub {
    color: #ff4757;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 8px;
    text-shadow: 0 0 10px rgba(255, 71, 87, 0.4);
}

/* Location and Contact */
.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-list {
    list-style: none;
    margin-bottom: 35px;
    background: rgba(255,255,255,0.02);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 1.15rem;
}

.contact-list li:last-child {
    margin-bottom: 0;
}

.contact-list i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 3px;
    filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.5));
}

/* Vibrant Social Links */
.social-links {
    display: flex;
    gap: 20px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.8rem;
    text-decoration: none;
    transition: var(--transition);
    color: #fff;
}

.social-btn.facebook { 
    background: #1877F2; 
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.5), inset 0 0 10px rgba(255,255,255,0.2);
}
.social-btn.tiktok { 
    background: #000; 
    border: 2px solid #69C9D0;
    box-shadow: 0 4px 15px rgba(105, 201, 208, 0.4), 0 0 10px #EE1D52;
}
.social-btn.lemon8 { 
    background: #ffea00; 
    color: #111; 
    box-shadow: 0 4px 15px rgba(255, 234, 0, 0.5), inset 0 0 10px rgba(255,255,255,0.5);
}
.social-btn.map { 
    background: #34A853; 
    box-shadow: 0 4px 15px rgba(52, 168, 83, 0.5), inset 0 0 10px rgba(255,255,255,0.2);
}

.social-btn:hover {
    transform: translateY(-6px) scale(1.1);
    filter: brightness(1.15);
}
.social-btn.facebook:hover { box-shadow: 0 8px 25px rgba(24, 119, 242, 0.7); }
.social-btn.tiktok:hover { box-shadow: 0 8px 25px rgba(105, 201, 208, 0.7), 0 0 20px #EE1D52; }
.social-btn.lemon8:hover { box-shadow: 0 8px 25px rgba(255, 234, 0, 0.7); }
.social-btn.map:hover { box-shadow: 0 8px 25px rgba(52, 168, 83, 0.7); }

.map-container {
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle, rgba(0,242,254,0.05) 0%, rgba(0,0,0,0.3) 100%);
    border: 1px solid rgba(0, 242, 254, 0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.map-placeholder h3 {
    color: var(--text-main);
    margin-top: 15px;
    font-size: 1.5rem;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-darker);
}

.footer p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title { font-size: 4rem; }
    .location-wrapper { grid-template-columns: 1fr; }
    .map-container { height: 350px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero-title { font-size: 3rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    
    .delivery-banner { flex-direction: column; text-align: center; }
    .delivery-content { flex-direction: column; text-align: center; }
}

/* Simple mobile menu activation via JS class */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(3, 5, 9, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}
