/* CSS Variables for Brand Colors */
:root {
  --primary-blue: #0066cc;
  --secondary-green: #28a745;
  --accent-orange: #ff6b35;
  --light-gray: #f8f9fa;
  --dark-gray: #343a40;
  --white: #ffffff;
  --text-dark: #2c3e50;

  --primary-blue: #333;
  --secondary-green: #666;
  --accent-orange: #999;

  /* Font Family */
  --font-family: Inter, sans-serif;

  /* Type Scale */
  --display-lg-size: 39.06px;
  --display-lg-weight: 800;
  --display-lg-line-height: 1.55;
  --display-lg-letter-spacing: 0.015em;

  --display-md-size: 34.94px;
  --display-md-weight: 800;
  --display-md-line-height: 1.55;
  --display-md-letter-spacing: 0.015em;

  --h1-size: 31.25px;
  --h1-weight: 700;
  --h1-line-height: 1.55;
  --h1-letter-spacing: 0.02em;

  --h2-size: 25px;
  --h2-weight: 600;
  --h2-line-height: 1.55;
  --h2-letter-spacing: 0.02em;

  --h3-size: 22.36px;
  --h3-weight: 600;
  --h3-line-height: 1.6;
  --h3-letter-spacing: 0.025em;

  --h4-size: 20px;
  --h4-weight: 500;
  --h4-line-height: 1.6;
  --h4-letter-spacing: 0.025em;

  --h5-size: 18.91px;
  --h5-weight: 500;
  --h5-line-height: 1.6;
  --h5-letter-spacing: 0.03em;

  --h6-size: 17.89px;
  --h6-weight: 500;
  --h6-line-height: 1.6;
  --h6-letter-spacing: 0.03em;

  --body-xl-size: 16.92px;
  --body-xl-weight: 400;
  --body-xl-line-height: 1.6;
  --body-xl-letter-spacing: 0.03em;

  --body-size: 16px;
  --body-weight: 400;
  --body-line-height: 1.6;
  --body-letter-spacing: 0.03em;

  --body-sm-size: 15.13px;
  --body-sm-weight: 400;
  --body-sm-line-height: 1.65;
  --body-sm-letter-spacing: 0.03em;

  --caption-lg-size: 14.31px;
  --caption-lg-weight: 400;
  --caption-lg-line-height: 1.65;
  --caption-lg-letter-spacing: 0.03em;

  --caption-size: 13.53px;
  --caption-weight: 400;
  --caption-line-height: 1.65;
  --caption-letter-spacing: 0.03em;

  --caption-sm-size: 12.8px;
  --caption-sm-weight: 300;
  --caption-sm-line-height: 1.65;
  --caption-sm-letter-spacing: 0.03em;

  --overline-size: 12.11px;
  --overline-weight: 500;
  --overline-line-height: 1.65;
  --overline-letter-spacing: 0.03em;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-family: Inter, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Touch-friendly improvements */
a,
button,
input,
textarea,
select {
  -webkit-tap-highlight-color: rgba(0, 102, 204, 0.2);
}

button,
a {
  touch-action: manipulation;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Header & Navigation */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-blue);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-blue);
  transition: all 0.3s ease;
  border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.btn-primary:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-blue);
  border: 2px solid var(--white);
}

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

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Section Styles */
section {
  margin-bottom: 4rem;
}

.section-title {
  text-align: center;
  color: var(--primary-blue);
  margin-bottom: 3rem;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent-orange);
}

/* Feature Box */
.feature-box {
  background-color: var(--light-gray);
  padding: 3rem 2rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.feature-box h3 {
  color: var(--secondary-green);
}

/* Stats Section */
.stats {
  background-color: var(--light-gray);
  padding: 3rem 2rem;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--accent-orange);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--dark-gray);
}

/* Pricing Card */
.pricing-card {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
  color: var(--white);
  padding: 2.5rem;
  border-radius: 10px;
  text-align: center;
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 700;
  margin: 1rem 0;
}

/* FAQ Accordion */
.faq-item {
  background-color: var(--white);
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: var(--light-gray);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-dark);
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-gray);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card h3 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.blog-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--light-gray);
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* Footer */
footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  text-align: center;
  /* padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1); */
  color: var(--light-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    padding: 1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }

  .nav-menu.active {
    max-height: 500px;
  }

  .nav-menu li {
    padding: 0;
  }

  .nav-menu a {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--light-gray);
  }

  .nav-menu a:hover {
    background-color: var(--light-gray);
  }

  .hero {
    padding: 3rem 1.5rem;
  }

  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .btn-group {
    flex-direction: column;
    gap: 0.75rem;
  }

  .container {
    padding: 2rem 1rem;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Tablet breakpoint */
@media (min-width: 769px) and (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .card {
    padding: 1.5rem;
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .grid-2col,
  .grid-2col-equal {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .service-area-grid {
    grid-template-columns: 1fr;
  }

  .social-links {
    flex-direction: column;
    font-size: 1.5rem;
  }

  .img-placeholder {
    height: 250px;
  }
}

/* Additional tablet responsiveness */
@media (max-width: 768px) {
  .grid-2col,
  .grid-2col-equal {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hours-box {
    margin-top: 2rem;
    padding: 1.5rem;
  }

  .cta-section,
  .cta-section-gradient {
    padding: 2rem 1.5rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mt-4 {
  margin-top: 4rem;
}
.bg-light {
  background-color: var(--light-gray);
}
.max-w-500 {
  max-width: 500px;
  margin: 0 auto;
}
.max-w-800 {
  max-width: 800px;
  margin: 0 auto;
}

/* Hero variations */
.hero-compact {
  padding: 3rem 2rem;
}

/* Section spacing */
.section-mt {
  margin-top: 4rem;
}

/* Read more links */
.link-primary {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link-primary:hover {
  text-decoration: underline;
}

/* Article icons */
.article-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

/* Two column layout */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.grid-2col-equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Image placeholder */
.img-placeholder {
  width: 100%;
  height: 400px;
  background-color: var(--light-gray);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-gray);
}

.img-placeholder-sm {
  width: 100%;
  height: 300px;
  background-color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-gray);
  border: 2px solid #ddd;
}

/* List styles */
.list-spaced {
  line-height: 2;
  margin-left: 1.5rem;
}

.list-no-style {
  list-style: none;
  line-height: 2;
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  color: white;
}

.step-circle-primary {
  background-color: var(--primary-blue);
}

.step-circle-secondary {
  background-color: var(--secondary-green);
}

.step-circle-accent {
  background-color: var(--accent-orange);
}

.step-item {
  text-align: center;
}

/* Contact info items */
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: start;
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-label {
  margin: 0;
  color: var(--dark-gray);
}

.contact-sublabel {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

/* Business hours */
.hours-box {
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--light-gray);
  border-radius: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
}

/* CTA sections */
.cta-section {
  margin-top: 4rem;
  padding: 3rem;
  background-color: var(--light-gray);
  border-radius: 10px;
}

.cta-section-gradient {
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
  color: white;
  border-radius: 10px;
}

/* Service area grid */
.service-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Social links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 2rem;
}

.social-link {
  color: var(--primary-blue);
  transition: color 0.3s;
  text-decoration: none;
}

.social-link:hover {
  opacity: 0.8;
}

/* Resources grid */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Section title variations */
.section-title-primary {
  color: var(--primary-blue);
  text-align: center;
}

.section-title-secondary {
  color: var(--secondary-green);
}

.section-title-accent {
  color: var(--accent-orange);
}

/* Price display */
.price-small {
  font-size: 1.5rem;
}

/* Form width */
.form-wrapper {
  margin-top: 2rem;
}

/* Button variations */
.btn-secondary-green {
  background-color: var(--secondary-green);
  color: white;
  border: 2px solid var(--secondary-green);
}

.btn-secondary-green:hover {
  background-color: #1e8e3e;
  border-color: #1e8e3e;
}

.btn-full-width {
  width: 100%;
}

/* Padding utilities */
.p-3 {
  padding: 3rem;
}

/* Border radius utilities */
.rounded {
  border-radius: 10px;
}

/* Text size utilities */
.text-lg {
  font-size: 1.1rem;
}

/* Text color utilities */
.text-muted {
  color: var(--dark-gray);
}

/* Flex utilities */
.flex-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Coming Soon Page Styles */
.coming-soon-page header,
.coming-soon-page footer {
  /* display: none; */
  pointer-events: none;
  opacity: 0.5;
}

.coming-soon-page main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
  background: linear-gradient(0deg, #931f1dff, #937b63ff, #f5e9e2ff, #0b0014ff, #8a9b68ff);
  background: linear-gradient(135deg, #937b63ff, #8a9b68ff); */
}

.coming-soon {
  width: 100%;
  padding: 2rem;
}

.coming-soon-content {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
  /* background-color: var(--white); */
  /* padding: 1.5rem 2rem; */
  /* border-top-left-radius: 50px;
  border-bottom-right-radius: 50px; */
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); */
}

.coming-soon-icon {
  font-size: 7rem;
  margin-bottom: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.coming-soon h1 {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.coming-soon p {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.contact-info {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--light-gray);
}

.contact-info p {
  font-size: 1rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.email-link {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-orange);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.email-link:hover {
  background-color: var(--accent-orange);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .coming-soon-content {
    padding: 3rem 1.5rem;
  }

  .coming-soon-icon {
    font-size: 4rem;
  }

  .coming-soon h1 {
    font-size: 2rem;
  }

  .coming-soon p {
    font-size: 1.1rem;
  }

  .email-link {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .coming-soon-content {
    padding: 2rem 1rem;
  }

  .coming-soon-icon {
    font-size: 3rem;
  }

  .coming-soon h1 {
    font-size: 1.75rem;
  }

  .coming-soon p {
    font-size: 1rem;
  }
}
