:root {
  --primary-navy: #3D3B85;
  --primary-orange: #FF6B35;
  --primary-green: #8BC34A;
  --dark-navy: #2A2768;
  --light-orange: #FF8A65;
  --light-green: #AED581;
  --white: #FFFFFF;
  --light-gray: #F5F7FA;
  --text-dark: #2D3748;
  --text-light: #4A5568;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: var(--light-gray);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
}

/* Professional Typography Scale */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 1rem 0;
  color: #1a202c;
  letter-spacing: -0.025em;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

h5 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: #4a5568;
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  h4 {
    font-size: 1.25rem;
  }
  
  p {
    font-size: 1rem;
  }
  
  .hero {
    min-height: 350px;
    padding: 2rem 1rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  }
  
  .hero-content p {
    font-size: 1.25rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.375rem;
  }
}
header {
  background: var(--primary-navy);
  color: var(--white);
  padding: 0;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
  transition: opacity 0.2s ease;
}

.brand-link:hover {
  opacity: 0.9;
  color: var(--white);
}

.brand-logo {
  font-size: 2rem;
  margin-right: 0.5rem;
}

.brand-name {
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.5px;
}
.navbar {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.navbar li {
  position: relative;
}
.navbar a {
  display: block;
  padding: 1em 1.5em;
  color: var(--white);
  text-decoration: none;
  transition: background 0.3s;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.025em;
}
.navbar a:hover, .navbar .dropbtn:hover {
  background: var(--dark-navy);
}

/* Partner Button in Navigation */
.partner-btn {
  margin-left: auto;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .main-nav {
    padding: 0 1rem;
    flex-wrap: wrap;
  }
  
  .brand-name {
    font-size: 1.25rem;
  }
  
  .brand-logo {
    font-size: 1.5rem;
  }
  
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 0.5rem;
  }
  
  .navbar li {
    margin: 0.25rem;
  }
  
  .navbar a {
    padding: 0.5em 1em;
    font-size: 0.9rem;
  }
  
  .btn-partner {
    padding: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
  }
}

.btn-partner {
  background: var(--primary-orange) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 8px !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  transition: all 0.2s ease !important;
  border: 2px solid var(--primary-orange) !important;
}

.btn-partner:hover {
  background: var(--light-orange) !important;
  border-color: var(--light-orange) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3) !important;
}
.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content a {
  color: #007b3a;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {
  background: #f1f1f1;
}
.dropdown:hover .dropdown-content {
  display: block;
}
main {
  padding: 0;
  max-width: 100vw;
  margin: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5em;
}

section {
  width: 100%;
  margin: 0 auto 3em auto;
  padding: 2.5em 1.5em;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
  border-radius: 18px 18px 0 0;
  margin-bottom: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  color: var(--white);
  padding: 3rem 1.5rem;
}
.hero-bg-video {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0.18;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  padding: 3rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  font-size: 3.5rem;
}

.hero-content p {
  font-size: 1.375rem;
  color: var(--white);
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}


@media (max-width: 700px) {
  section {
    padding: 1.2em 0.5em;
    border-radius: 0;
    margin-bottom: 2em;
  }
}
.hero {
  background: linear-gradient(90deg, #e0ffe6 60%, #fff 100%);
  padding: 3em 1.5em 2em 1.5em;
  border-radius: 18px 18px 0 0;
  text-align: center;
  margin-bottom: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.about-hero {
  background: linear-gradient(90deg, #e0ffe6 60%, #fff 100%);
  border-radius: 18px 18px 0 0;
  text-align: center;
  margin-bottom: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.about-stats {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-top: 2em;
  flex-wrap: wrap;
}
.about-stats div {
  background: #fff;
  color: #007b3a;
  padding: 1em 2em;
  border-radius: 8px;
  font-size: 1.1em;
  min-width: 120px;
  margin-bottom: 1em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.our-story, .our-values, .our-team, .mission-vision, .get-in-touch {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 2em;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  padding: 2.5em 1.5em;
}
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
}
.value-card {
  background: #e0ffe6;
  border-radius: 10px;
  padding: 1.5em 1em;
  width: 220px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
}
.team-member {
  background: #f7fafc;
  border-radius: 10px;
  padding: 1.5em 1em;
  width: 220px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.team-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #e0ffe6;
  margin: 0 auto 1em auto;
}
.mission-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  background: #f9f9f9;
}
.mission, .vision {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 10px;
  padding: 1.5em 1em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.get-in-touch .contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
}
.get-in-touch .contact-details > div {
  background: #e0ffe6;
  border-radius: 10px;
  padding: 1.5em 1em;
  width: 220px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

form label {
  display: block;
  margin-top: 1em;
}
form input, form textarea {
  width: 100%;
  padding: 0.5em;
  margin-top: 0.5em;
  border: 1px solid #ccc;
  border-radius: 4px;
}
form button {
  margin-top: 1em;
  background: #007b3a;
  color: #fff;
  border: none;
  padding: 0.75em 2em;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
}
form button:hover {
  background: #005f2a;
}
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1em 0;
  position: relative;
  bottom: 0;
  width: 100%;
}

/* Hero Section */
.hero {
  background: #e0ffe6;
  padding: 2em;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 2em;
}

.hero-content h1 {
  color: #2D3748 !important;
  font-weight: 700;
  text-shadow: none;
  margin-bottom: 1rem;
}

.hero-content p {
  color: #4A5568 !important;
  font-weight: 500;
  text-shadow: none;
}
.hero-cta {
  margin: 2rem 0 1rem 0;
}
.hero-cta .btn {
  margin: 0 0.75rem 0.5rem 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  font-weight: 700;
}

.hero-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.stats {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  margin-top: 3rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.stats div {
  background: var(--white);
  color: var(--primary-navy);
  padding: 2rem 2.5rem;
  border-radius: 16px;
  font-size: 1.125rem;
  min-width: 180px;
  margin-bottom: 1em;
  box-shadow: 0 6px 24px rgba(255,255,255,0.2);
  font-weight: 600;
  text-align: center;
  flex: 1 1 200px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid rgba(255,255,255,0.3);
}

.stats div:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,255,255,0.3);
}

.stats div strong {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-orange);
  display: block;
  margin-bottom: 0.25rem;
}

/* Buttons */
.btn {
  background: var(--primary-orange);
  color: var(--white);
  padding: 0.875rem 2.5rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.025em;
  box-shadow: 0 2px 12px rgba(255, 107, 53, 0.15);
  text-align: center;
  min-width: 140px;
}
.btn:hover {
  background: var(--light-orange);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.25);
}
.btn-secondary {
  background: var(--white);
  color: var(--primary-navy);
  border: 2px solid var(--primary-navy);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.875rem 2.5rem;
}
.btn-secondary:hover {
  background: var(--light-green);
  color: var(--dark-navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(139, 195, 74, 0.15);
}

/* Service Cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
  margin: 3rem 0;
  padding: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .service-cards {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
  }
}

@media (max-width: 600px) {
  .service-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 2.5rem 2rem 2rem 2rem;
  min-height: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,123,58,0.15);
  border: 1.5px solid #007b3a;
}

.service-card .icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.375rem;
  color: #1a202c;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 1rem;
  line-height: 1.5;
  flex-grow: 1;
}

.service-card .rating {
  color: #f39c12;
  margin: 0.75rem 0 1.5rem 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.service-card .btn {
  margin-top: auto;
  font-size: 1rem;
  padding: 0.75rem 2rem;
}

/* How it Works */
.how-it-works {
  background: #f9f9f9;
  border-radius: 18px;
  padding: 2.5em 1.5em;
  margin: 2em 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.how-it-works h2 {
  color: #2D3748 !important;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}
.steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}
.step {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  width: 280px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  opacity: 1;
  transform: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border-color: #3D3B85;
}

.step h3 {
  color: #2D3748 !important;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.step p {
  color: #4A5568 !important;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.step.slid-in {
  opacity: 1;
  transform: none;
}
.step-number {
  background: linear-gradient(135deg, #3D3B85, #FF6B35);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(61, 59, 133, 0.3);
  position: relative;
}

.step-number::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #3D3B85, #FF6B35);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.2;
}

/* Responsive Steps */
@media (max-width: 768px) {
  .steps {
    gap: 1.5rem;
    padding: 0.5rem;
  }
  
  .step {
    width: 100%;
    max-width: 320px;
    padding: 1.5rem 1rem;
  }
  
  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .step h3 {
    font-size: 1.125rem;
  }
  
  .step p {
    font-size: 0.9rem;
  }
}

/* Why Choose */
.why-choose {
  margin: 2em 0;
}
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
}
.feature {
  background: #fff;
  border-radius: 8px;
  padding: 1.5em 1em;
  width: 220px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* CTA */
.cta {
  background: #e0ffe6;
  border-radius: 12px;
  text-align: center;
  padding: 3rem 2rem;
  margin: 2em 0;
  box-shadow: 0 4px 20px rgba(0,123,58,0.08);
}

.cta h2 {
  color: #1a202c;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn {
  margin: 0.5em 1em;
  font-size: 1.25rem;
  padding: 1rem 3rem;
}

.center {
  text-align: center;
}

/* Lead text for better emphasis */
.lead {
  font-size: 1.5rem;
  font-weight: 400;
  color: #2d3748;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* List styling */
ul, ol {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 1.25rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Better spacing for sections */
section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 2.5rem;
}

/* Better contrast for feature cards */
.feature h3, .step h3, .value-card h3 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.feature p, .step p, .value-card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .service-cards, .features, .steps, .values-grid, .team-grid, .office-grid, .faq-list {
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }
  .stats {
    flex-direction: column;
    align-items: center;
  }
  .mission-vision {
    flex-direction: column;
    gap: 1em;
  }
}
@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
  }
  main {
    padding: 0;
  }
  .container {
    padding: 0 0.5em;
  }
  section {
    padding: 1.2em 0.5em;
    border-radius: 0;
    margin-bottom: 2em;
  }
  .service-card, .feature, .step, .value-card, .team-member, .office-card, .faq-item {
    width: 100%;
    min-width: 0;
  }
  .about-stats, .values-grid, .team-grid, .office-grid, .faq-list {
    flex-direction: column;
    gap: 1em;
    align-items: center;
  }
  .contact-form-section {
    flex-direction: column;
    gap: 1em;
  }
}

/* Appear on Scroll & Slide-in Animations */
.appear-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s;
}
.appear-on-scroll.visible {
  opacity: 1;
  transform: none;
}
.slide-in .service-card, .slide-in .feature {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s, transform 0.7s;
}
.slide-in.slid-in .service-card, .slide-in.slid-in .feature {
  opacity: 1;
  transform: none;
}
.sticky-cta {
  position: relative;
  z-index: 10;
  transition: box-shadow 0.3s, position 0.3s;
}
.sticky-cta.is-sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 4px 24px rgba(0,123,58,0.10);
  background: #e0ffe6;
}

/* Admin Layout */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: #f7fafc;
}
.admin-sidebar {
  background: var(--primary-navy);
  color: var(--white);
  min-width: 250px;
  padding: 1em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.admin-header {
  width: 100%;
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.admin-brand {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}

.admin-logo {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.admin-sidebar h2 {
  margin: 0;
  font-size: 1.2em;
  font-weight: 600;
}

.back-to-home {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  width: fit-content;
}

.back-to-home:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
  transform: translateX(-2px);
}

.back-to-home span {
  margin-right: 0.5rem;
}
.admin-sidebar ul {
  list-style: none;
  padding: 0;
  width: 100%;
}
.admin-sidebar li {
  margin-bottom: 1em;
}
.admin-sidebar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5em 1em;
  border-radius: 6px;
  display: block;
  transition: background 0.2s;
}
.admin-sidebar a.active, .admin-sidebar a:hover {
  background: #005f2a;
}
.admin-main {
  flex: 1;
  padding: 2em 1em;
  background: #f7fafc;
}
.admin-stats {
  display: flex;
  gap: 2em;
  margin-bottom: 2em;
  flex-wrap: wrap;
}
.admin-stat {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 1.5em 2em;
  min-width: 160px;
  text-align: center;
}
.admin-stat h3 {
  margin: 0 0 0.5em 0;
  font-size: 1.1em;
  color: #007b3a;
}
.admin-stat span {
  font-size: 1.5em;
  font-weight: 700;
}
.admin-quicklinks {
  margin-top: 2em;
}
.admin-quicklinks .btn {
  margin-right: 1em;
  margin-bottom: 1em;
}
.admin-booking-filters {
  margin-bottom: 1.5em;
}
.admin-booking-filters .btn {
  margin-right: 0.5em;
  margin-bottom: 0.5em;
}

/* Admin Table Styles */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.admin-table th, .admin-table td {
  padding: 0.75em 1em;
  border-bottom: 1px solid #eee;
  text-align: left;
}
.admin-table th {
  background: #007b3a;
  color: #fff;
}
.admin-table tr:last-child td {
  border-bottom: none;
}
.admin-table .btn {
  margin: 0.2em 0.2em;
  font-size: 0.95em;
  padding: 0.5em 1em;
}
@media (max-width: 700px) {
  .admin-table, .admin-table thead, .admin-table tbody, .admin-table th, .admin-table td, .admin-table tr {
    display: block;
    width: 100%;
  }
  .admin-table thead tr {
    display: none;
  }
  .admin-table tr {
    margin-bottom: 1em;
    border-bottom: 2px solid #007b3a;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 1em 0.5em;
  }
  .admin-table td {
    border: none;
    position: relative;
    padding-left: 50%;
    min-height: 2em;
    text-align: left;
  }
  .admin-table td:before {
    position: absolute;
    left: 1em;
    top: 0.7em;
    width: 45%;
    white-space: nowrap;
    font-weight: bold;
    color: #007b3a;
    content: attr(data-label);
  }
}

/* User Management Styles */
.add-user-form {
  background: #fff;
  border-radius: 8px;
  padding: 1.5em;
  margin-bottom: 2em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.add-user-form h3 {
  margin-top: 0;
  color: #007b3a;
  margin-bottom: 1em;
}

.form-group {
  display: flex;
  gap: 1em;
  align-items: center;
  flex-wrap: wrap;
}

.form-group input[type="text"], 
.form-group input[type="password"] {
  padding: 0.5em 1em;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1em;
  min-width: 200px;
  flex: 1;
}

.btn-primary {
  background: #007b3a;
  color: #fff;
  border: none;
  padding: 0.5em 1.5em;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #005f2a;
}

.btn-danger {
  background: #dc3545;
  color: #fff;
  border: none;
  padding: 0.4em 1em;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-danger:hover {
  background: #c82333;
}

.btn-small {
  font-size: 0.85em;
  padding: 0.3em 0.8em;
}

.current-user {
  color: #007b3a;
  font-weight: 500;
  font-style: italic;
}

.alert {
  padding: 1em;
  margin-bottom: 1em;
  border-radius: 4px;
  font-weight: 500;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@media (max-width: 600px) {
  .form-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .form-group input {
    min-width: auto;
    margin-bottom: 0.5em;
  }
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
  color: var(--white);
  padding: 4rem 0 3rem;
  text-align: center;
}

.contact-hero .hero-content h1 {
  color: #ffffff !important;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero .hero-content p {
  font-size: 1.125rem;
  color: #ffffff !important;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-form-section {
  padding: 4rem 0;
  background: var(--white);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  max-width: 800px;
  margin: 0 auto;
}

.card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.card-header h2 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.card-header p {
  color: var(--text-light);
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 3px rgba(61, 59, 133, 0.1);
}

.btn-submit {
  background: var(--primary-orange);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  align-self: center;
  min-width: 200px;
}

.btn-submit:hover {
  background: var(--dark-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(61, 59, 133, 0.2);
}

/* Contact Info Section */
.contact-info-section {
  padding: 4rem 0;
  background: var(--light-gray);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.text-center {
  text-align: center;
}

.section-header h2 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-navy));
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-card h3 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.contact-detail {
  font-weight: 600;
  color: var(--primary-navy);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-time {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.card-action .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

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

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

/* Business Hours Card */
.business-hours-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  max-width: 600px;
  margin: 0 auto;
}

.hours-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hours-icon {
  font-size: 2.5rem;
}

.hours-header h3 {
  color: var(--text-dark);
  margin: 0;
  font-size: 1.5rem;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: 8px;
}

.day {
  font-weight: 600;
  color: var(--text-dark);
}

.time {
  color: var(--primary-navy);
  font-weight: 500;
}

.emergency-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 8px;
  border-left: 4px solid var(--primary-orange);
}

.emergency-icon {
  font-size: 1.25rem;
}

.emergency-note span:last-child {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

/* Office Locations Section */
.office-locations-section {
  padding: 4rem 0;
  background: var(--white);
}

.office-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.office-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.office-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--primary-navy));
}

.office-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.office-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.office-card-icon {
  font-size: 2.5rem;
}

.office-city h3 {
  color: var(--text-dark);
  margin: 0 0 0.25rem 0;
  font-size: 1.375rem;
}

.office-label {
  color: var(--primary-orange);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.office-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.office-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.detail-icon {
  font-size: 1.125rem;
  width: 24px;
  text-align: center;
}

.detail-text {
  color: var(--text-dark);
  font-weight: 500;
}

.office-action {
  text-align: center;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: var(--light-gray);
}

.faq-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.faq-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-green));
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.faq-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.faq-icon {
  font-size: 2rem;
  margin-top: 0.25rem;
}

.faq-card-header h3 {
  color: var(--text-dark);
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.4;
}

.faq-answer p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    padding: 0 1rem;
  }
  
  .contact-hero {
    padding: 3rem 0 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .contact-form-card {
    padding: 2rem 1.5rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-cards-grid,
  .office-cards-grid,
  .faq-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-card,
  .office-card,
  .faq-card {
    padding: 1.5rem;
  }
  
  .business-hours-card {
    padding: 2rem 1.5rem;
  }
  
  .hours-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .office-card-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .faq-card-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .faq-icon {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .contact-info-section,
  .office-locations-section,
  .faq-section {
    padding: 3rem 0;
  }
  
  .contact-cards-grid,
  .office-cards-grid,
  .faq-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .contact-card-icon,
  .office-card-icon {
    font-size: 2.5rem;
  }
}

/* Booking Page Styles */
.book-service {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.book-service h2 {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.alert {
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 12px;
  border: 1px solid;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.alert-success {
  background: #f0f9ff;
  border-color: #3b82f6;
  color: #1e40af;
}

.alert-error {
  background: #fef2f2;
  border-color: #ef4444;
  color: #dc2626;
}

.alert-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.alert-content {
  flex: 1;
}

.alert-content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
}

.alert-content p {
  margin: 0 0 1rem 0;
}

.alert-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.booking-success-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
}

.success-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.success-icon {
  font-size: 2rem;
}

.success-header h3 {
  margin: 0;
  color: var(--text-dark);
}

.success-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: 8px;
}

.step-number {
  background: var(--primary-navy);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step-text {
  color: var(--text-dark);
  font-weight: 500;
}

.booking-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--text-light);
  font-size: 1rem;
  margin: 0;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.booking-form .form-group {
  display: flex;
  flex-direction: column;
}

.booking-form .form-group label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: var(--white);
  color: var(--text-dark);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 3px rgba(61, 59, 133, 0.1);
}

.booking-form textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--dark-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(61, 59, 133, 0.2);
}

/* Responsive Design for Booking Form */
@media (max-width: 768px) {
  .book-service {
    margin: 1rem auto;
    padding: 0 0.5rem;
  }
  
  .booking-form-card {
    padding: 2rem 1.5rem;
  }
  
  .booking-form .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .alert-actions {
    flex-direction: column;
  }
  
  .booking-success-card {
    padding: 1.5rem;
  }
  
  .success-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .step {
    padding: 0.75rem;
  }
  
  .step-number {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
}

