/* CSS Variables */
:root {
  --primary: #0284c7;
  --primary-hover: #0369a1;
  --secondary: #0f172a;
  --accent: #e0f2fe;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  --radius: 8px;
  --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

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

/* Typography & Helpers */
h1, h2, h3 { color: var(--secondary); line-height: 1.2; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.badge {
  background: var(--accent);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 15px;
}

.sub-title {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-hover); }

.btn-secondary { background: var(--accent); color: var(--primary); }
.btn-secondary:hover { background: #bae6fd; }

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

.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

/* Announcement Bar */
.top-bar {
  background: var(--secondary);
  color: #94a3b8;
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar-content {
  display: flex;
  justify-content: space-between;
}
.top-bar span { margin-right: 15px; }
.top-bar i { color: var(--primary); margin-right: 5px; }

/* Navigation */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}
.logo i { color: var(--primary); }
.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 25px; }
.nav-links a { font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--primary); }

.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* Hero Section */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
}
.hero-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}
.hero-text h1 { font-size: 3rem; margin-bottom: 20px; }
.hero-text p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 30px; }
.hero-btns { display: flex; gap: 15px; margin-bottom: 30px; }

.trust-indicators { display: flex; gap: 20px; font-size: 0.9rem; color: var(--text-muted); }
.trust-indicators i { color: #f59e0b; }

.hero-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
}
.hero-card h3 { margin-bottom: 10px; }
.hero-card p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.95rem; }

/* Layout Grids & Section Base */
section { padding: 80px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 50px; }
.section-header h2 { font-size: 2.25rem; margin-top: 5px; }

/* About */
.checklist { margin-top: 20px; }
.checklist li { margin-bottom: 10px; font-weight: 500; }
.checklist i { color: var(--primary); margin-right: 8px; }

.about-card-box { display: flex; flex-direction: column; gap: 20px; }
.feature-card {
  display: flex;
  gap: 20px;
  background: var(--bg-light);
  padding: 20px;
  border-radius: var(--radius);
}
.feature-card i { font-size: 2rem; color: var(--primary); }

/* Services */
.services { background: var(--bg-light); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-5px); }
.icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.stars { color: #f59e0b; margin-bottom: 10px; }
.testimonial-card p { font-style: italic; margin-bottom: 15px; color: var(--text-muted); }

/* FAQ Accordion */
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  padding: 20px 0;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding-bottom: 20px; color: var(--text-muted); }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active i { transform: rotate(180deg); transition: transform 0.3s ease; }

/* Contact */
.hours-table { width: 100%; border-collapse: collapse; margin-top: 15px; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.contact-card { background: var(--bg-light); padding: 30px; border-radius: var(--radius); }
.info-list p { margin-top: 15px; font-weight: 500; }
.info-list i { color: var(--primary); margin-right: 10px; }

/* Footer */
.footer { background: var(--secondary); color: var(--white); padding: 30px 0; font-size: 0.9rem; }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.social-links a { color: var(--white); margin-left: 15px; font-size: 1.2rem; transition: var(--transition); }
.social-links a:hover { color: var(--primary); }

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  width: 100%;
  max-width: 500px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 15px; right: 20px;
  background: none; border: none;
  font-size: 1.8rem; cursor: pointer;
}
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-size: 0.9rem; font-weight: 500; }
.form-group input, .form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content, .grid-2 { grid-template-columns: 1fr; }
  .top-bar-content { flex-direction: column; gap: 5px; text-align: center; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.active { display: flex; }
  .hamburger { display: block; }
  .nav-btn { display: none; }
  .hero-text h1 { font-size: 2.2rem; }
}