/* ================ */
/* MODERN CSS RESET */
/* ================ */
:root {
/*   --primary: #2563eb;       Vibrant blue */
  --primary: #2563ebd9;
  --primary-dark: #1d4ed8;
  --primary-light: #93c5fd;
  --secondary: #f59e0b;     /* Warm amber */
  --secondary-dark: #d97706;
  --text: #1f2937;          /* Dark gray */
  --text-light: #6b7280;
  --light: #f9fafb;         /* Light gray */
  --dark: #111827;          /* Near black */
  --gray: #e5e7eb;
  --white: #ffffff;
  --success: #10b981;       /* Green */
  --error: #ef4444;         /* Red */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --transition: all 0.2s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, ul, ol, li, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.6;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background-color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

/* ============= */
/* TYPOGRAPHY */
/* ============= */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
}

/* ============= */
/* LAYOUT */
/* ============= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4rem 0;
}

/* ============= */
/* HEADER */
/* ============= */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  /*background-color: var(--white);*/
  background-color: #131313;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo:hover {
  color: var(--primary-dark);
}

/* ============= */
/* NAVIGATION */
/* ============= */
.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  /*color: var(--text); */
  color: #b0bdd1;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a.active {
/*  color: var(--primary);*/
  color: #ffffff;
  font-weight: 600;
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--dark);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  /* background-color: var(--dark); */
  background-color: #ffffff;
  left: 0;
  transition: var(--transition);
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  bottom: -6px;
}

.nav-toggle.active .hamburger {
  background-color: transparent;
}

.nav-toggle.active .hamburger::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* ============= */
/* HERO SECTIONS */
/* ============= */
.hero, .page-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 6rem 1rem 4rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before, .page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
  z-index: 1;
}

.hero .container, .page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1, .page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero p, .page-hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

/* ============= */
/* BUTTONS */
/* ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* ============= */
/* SERVICES */
/* ============= */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  padding: 15px; 
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-content {
  padding: 1.5rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.service-content h2 {
  margin-bottom: 1.5rem;
}

.service-features {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
}

.service-features li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
  color: var(--text);
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--primary);
  border-radius: 50%;
}

.service-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.service-image:hover img {
  transform: scale(1.03);
}

.service-cta {
  text-align: center;
  background-color: var(--light);
  padding: 3rem;
  border-radius: var(--radius-md);
  margin: 4rem 0;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.service-areas {
  /* background-color: var(--primary); */
  background-color: #afc2ec;
  color: var(--white);
  text-align: center;
  padding: 3rem 0;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  list-style: none;
}

.areas-list li {
  background-color: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-weight: 500;
}

/* ============= */
/* ABOUT PAGE */
/* ============= */
.about-story {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.about-story p {
  font-size: 1.125rem;
  line-height: 1.7;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.team-member {
  text-align: center;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--primary-light);
}

.team-member h3 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--text-light);
  font-size: 0.875rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.value-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ============= */
/* CONTACT FORM */
/* ============= */
.contact-section {
  background-color: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info {
  padding: 1rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.contact-info address p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info a {
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info a:hover {
  color: var(--primary);
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray);
  border-radius: var(--radius-sm);
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* ============= */
/* TESTIMONIALS */
/* ============= */
.testimonials {
  background-color: var(--light);
}

.testimonial {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial blockquote {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--text);
  font-style: italic;
  position: relative;
}

.testimonial blockquote::before,
.testimonial blockquote::after {
  content: '"';
  color: var(--primary-light);
  font-size: 2rem;
  line-height: 0;
}

.testimonial blockquote::before {
  margin-right: 0.25rem;
  vertical-align: -0.5rem;
}

.testimonial blockquote::after {
  margin-left: 0.25rem;
  vertical-align: -0.5rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
}

/* ============= */
/* FOOTER */
/* ============= */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer a:hover {
  color: var(--white);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.copyright {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

/* ============= */
/* UTILITIES */
/* ============= */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============= */
/* RESPONSIVE */
/* ============= */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    /*background-color: var(--white); */
    background-color: #373737;	
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: var(--transition);
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-toggle {
    display: block;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-image {
    order: -1;
  }

  .hero, .page-hero {
    min-height: 60vh;
    padding: 5rem 1rem 3rem;
  }

  section {
    padding: 3rem 0;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* ============= */
/* ANIMATIONS */
/* ============= */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* ============= */
/* COLOR */
/* ============= */
.white {
	color: white;
}

.black {
	color: black;
}	

/* Footer Mobile Menu Styles */
@media (max-width: 768px) {
    .footer-nav {
        position: relative;
    }
    
    .footer .nav-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        margin: 0.5rem 0;
    }
    
    .footer .nav-menu {
        display: none;
        position: absolute;
        bottom: 100%;
        left: 0;
        background: var(--dark);
        width: 100%;
        padding: 1rem;
        box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
        z-index: 100;
    }
    
    .footer .nav-menu.active {
        display: block;
    }
    
    .footer .nav-menu li {
        margin-bottom: 0.5rem;
    }
    
    .footer .nav-menu a {
        color: white;
        padding: 0.5rem;
        display: block;
    }
    
    .footer .hamburger {
        background-color: white;
    }
    
    .footer .hamburger::before,
    .footer .hamburger::after {
        background-color: white;
    }
}