/* style.css */
:root {
    --primary-color: #0066FF;      /* Bright Tech Blue */
    --secondary-color: #0a192f;    /* Dark Navy for text/headings */
    --accent-color: #00C2FF;       /* Lighter Cyan for gradients */
    --bg-light: #F4F7FA;           /* Very light blue-grey background */
    --white: #ffffff;
    --text-body: #556070;
    --border-radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-body);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { color: var(--secondary-color); font-weight: 700; line-height: 1.2; }

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section { padding: 80px 0; }

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,102,255,0.3); }

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}
.logo .dot { color: var(--primary-color); }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--secondary-color); transition: var(--transition); }
.nav-links a:hover { color: var(--primary-color); }

.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--secondary-color); }

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,102,255,0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
    background: #e0f0ff;
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 { font-size: 3.5rem; margin-bottom: 20px; }
.hero h1 .highlight { color: var(--primary-color); }
.hero-sub { font-size: 1.2rem; margin-bottom: 30px; max-width: 600px; }

.hero-details { display: flex; gap: 20px; margin-bottom: 40px; font-weight: 600; color: var(--secondary-color); }
.hero-details i { color: var(--primary-color); margin-right: 8px; }

.btn-main {
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: var(--transition);
}
.btn-main:hover { background: var(--primary-color); transform: translateY(-3px); }

/* Services Section */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 10px; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover { border-color: var(--primary-color); transform: translateY(-5px); }
.service-card i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; }
.info-card { background: var(--secondary-color); color: var(--white); }
.info-card h3, .info-card p { color: var(--white); }

/* Business Section */
.business-section { background: var(--white); }
.business-layout { display: flex; align-items: center; gap: 60px; }
.business-text { flex: 1; }
.business-image { flex: 1; }
.business-image img { width: 100%; border-radius: 20px; box-shadow: var(--shadow); }

.eyebrow { color: var(--primary-color); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }
.business-text h2 { font-size: 2.2rem; margin: 10px 0 20px; }

.check-list { margin: 20px 0; }
.check-list li { margin-bottom: 10px; padding-left: 20px; position: relative; }
.check-list li::before {
    content: "•"; color: var(--primary-color); position: absolute; left: 0; font-size: 1.5rem; line-height: 1rem;
}

.highlight-text { background: #f0f7ff; padding: 15px; border-left: 4px solid var(--primary-color); margin: 20px 0; border-radius: 0 8px 8px 0; }

.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 20px; }
.feature { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--secondary-color); }
.feature i { color: var(--primary-color); }

/* Specialties */
.specialties-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.spec-card { background: var(--white); padding: 40px; border-radius: 20px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.spec-card ul { margin: 15px 0 20px; padding-left: 20px; }
.spec-card ul li { list-style: disc; margin-bottom: 5px; }

.spec-icon { width: 60px; height: 60px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; color: var(--white); }
.blue-bg { background: var(--primary-color); }
.green-bg { background: #10B981; }

/* Testimonials */
.testimonials { background: var(--secondary-color); color: var(--white); text-align: center; }
.testimonial-box h2 { color: var(--white); margin-bottom: 15px; }
.quote-icon { font-size: 3rem; color: rgba(255,255,255,0.1); margin-bottom: 20px; }
.google-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 30px;
    transition: var(--transition);
}
.google-btn:hover { background: #eee; }

/* Footer */
footer { background: #1e293b; color: #cbd5e1; padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 60px; }
footer h3 { color: var(--white); margin-bottom: 20px; font-size: 1.2rem; }
footer ul li { margin-bottom: 10px; }
footer a { transition: var(--transition); }
footer a:hover { color: var(--primary-color); padding-left: 5px; }

.contact-info p { margin-bottom: 15px; display: flex; gap: 10px; }
.hours-list li { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 8px; }

.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; background: var(--white); position: absolute; top: 100%; left: 0; width: 100%; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: block; }
    
    .hero h1 { font-size: 2.5rem; }
    .business-layout { flex-direction: column-reverse; }
    .specialties-container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}