/* Hull Surveyors - Main Stylesheet */
/* Mobile-First, SEO-Optimized Design */

/* CSS Variables for consistent theming */
:root {
  --primary-color: #0B3D5D;
  --secondary-color: #1E6B9C;
  --accent-color: #F39C12;
  --text-dark: #2C3E50;
  --text-light: #7F8C8D;
  --bg-light: #F8F9FA;
  --white: #FFFFFF;
  --success: #27AE60;
  --border-color: #E1E8ED;
  --shadow: rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  color: var(--primary-color);
}

h1 {
  font-size: 2rem;
  font-weight: 700;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.125rem;
  line-height: 1.75;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

/* Navigation */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
  fill: var(--secondary-color);
}

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

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: var(--transition);
}

.nav-link:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

.nav-link.active {
  color: var(--accent-color);
  font-weight: 600;
}

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

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary-color);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
  display: none; /* Hidden by default, shown as fallback */
  transition: opacity 0.5s ease;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
  transition: opacity 0.5s ease;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 61, 93, 0.5) 0%, rgba(30, 107, 156, 0.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-text {
  color: var(--white);
}

.hero-text h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.hero-text .subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-feature i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

/* Contact Form in Hero */
.hero-form-container {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero-form-container h3 {
  margin-bottom: 1.5rem;
  text-align: center;
}

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

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

.btn-primary:hover {
  background-color: #E67E22;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

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

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

/* Section Styles */
.section {
  padding: 3.75rem 1.5rem;
  margin: 0;
  width: 100%;
  overflow: hidden;
}

.section-light {
  background-color: var(--white);
}

.section-gray {
  background-color: var(--bg-light);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

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

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

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

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

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

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

/* Cards */
.card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
  height: auto;
  margin-bottom: 0;
}

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

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 1.5rem;
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.card h4 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.card p:last-child {
  margin-bottom: 0;
}

.card ul {
  margin: 0;
  padding-left: 1.5rem;
  list-style-position: outside;
}

.card ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* Services */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--accent-color);
  transform: scaleY(0);
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleY(1);
}

/* Team Members */
.team-member {
  text-align: center;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--bg-light);
}

.team-member h3 {
  margin-bottom: 0.5rem;
}

.team-member .role {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: var(--accent-color);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.stars {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonial-author-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.testimonial-author-info p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Statistics */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.stat-card {
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* FAQ Section */
.faq-item {
  background-color: var(--white);
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--shadow);
  overflow: hidden;
}

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

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

.faq-question i {
  transition: var(--transition);
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Blog */
.blog-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
}

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

.blog-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-color);
  font-weight: 600;
}

.read-more:hover {
  gap: 1rem;
}

/* Areas Covered */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.area-item {
  background-color: var(--white);
  padding: 1.75rem;
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 2px 10px var(--shadow);
  transition: var(--transition);
}

.area-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.area-item h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.area-item p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.7;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  align-items: center;
  justify-content: flex-start;
}

.social-link {
  width: 46px;
  height: 46px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.social-link i {
  font-size: 18px;
  line-height: 1;
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
  top: 0;
}

.social-link:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

/* Responsive social icons */
@media (max-width: 768px) {
  .social-links {
    gap: 0.5rem;
  }
  
  .social-link {
    width: 46px;
    height: 46px;
  }
  
  .social-link i {
    font-size: 16px;
  }
}

/* Contact Form Styling */
.contact-form-section {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px var(--shadow);
}

/* Badges */
.badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--bg-light);
  border-radius: 50px;
  font-weight: 600;
  color: var(--primary-color);
  border: 2px solid var(--border-color);
}

/* Process Steps */
.process-steps {
  position: relative;
  padding: 2rem 0;
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.step-number {
  min-width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

/* Image with overlay text */
.image-with-text {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin: 2rem 0;
}

.image-with-text img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(11, 61, 93, 0.95), transparent);
  padding: 2rem;
  color: var(--white);
}

.image-overlay h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 2rem;
  background-color: var(--bg-light);
}

.breadcrumbs-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--text-light);
}

.breadcrumbs a:hover {
  color: var(--primary-color);
}

.breadcrumbs span {
  color: var(--text-light);
}

/* Page Header (for internal pages) */
.page-header {
  position: relative;
  background-color: var(--primary-color);
  background-image: url('../images/hero-surveyor-exterior.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 61, 93, 0.5) 0%, rgba(30, 107, 156, 0.45) 100%);
  z-index: 0;
}

.page-header h1 {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-header p {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

/* Page-Specific Hero Backgrounds */
.page-header.about-hero {
  background-image: url('../images/team-photo.jpg');
}

.page-header.services-hero {
  background-image: url('../images/interior-building-survey.jpg');
}

.page-header.areas-hero {
  background-image: url('../images/hull-aerial-view.jpg');
}

.page-header.contact-hero {
  background-image: url('../images/surveyor-equipment-closeup.jpg');
}

.page-header.blog-hero {
  background-image: url('../images/before-after-comparison.jpg');
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Tablet Styles */
@media (min-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    padding: 2.5rem 2rem;
  }

  .container {
    padding: 0 2rem;
  }

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

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

  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

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

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

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

  .section-header h2 {
    font-size: 2.25rem;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .section {
    padding: 3.75rem 2rem;
  }

  .grid-2 {
    gap: 4rem;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

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

  .hero-text h1 {
    font-size: 3.5rem;
  }

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

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .section-header h2 {
    font-size: 2.5rem;
  }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    display: block;
    padding: 1rem;
    width: 100%;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .page-header {
    padding: 3rem 1.5rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1.1rem;
  }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* List Styles - Consistent Bullet Point Alignment */
ul, ol {
  margin: 0 0 1.5rem 0;
  padding-left: 1.75rem;
  list-style-position: outside;
}

ul li, ol li {
  margin-bottom: 0.625rem;
  line-height: 1.75;
  padding-left: 0.25rem;
}

ul li:last-child, ol li:last-child {
  margin-bottom: 0;
}

/* Nested lists */
ul ul, ol ul, ul ol, ol ol {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}

/* Icon lists (with Font Awesome icons) */
ul li i.fas, ul li i.far {
  margin-right: 0.625rem;
  width: 1.25rem;
  display: inline-block;
  text-align: center;
}

/* Ensure proper spacing in content sections */
.container > *:last-child,
.card > *:last-child,
.grid-2 > div > *:last-child,
.grid-3 > div > *:last-child {
  margin-bottom: 0;
}

/* Image Responsiveness */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.card img,
.grid-2 img,
.grid-3 img {
  border-radius: 10px;
}

/* Spacing utilities */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }

/* Component-specific styles */
.section-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-intro p {
  font-size: 1.125rem;
  line-height: 1.75;
}

.cta-button-group {
  margin-top: 2rem;
}

.centered-cta {
  text-align: center;
  margin-top: 3rem;
}

.cta-container {
  text-align: center;
}

.cta-text {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* Card variations */
.info-card {
  margin-top: 2rem;
}

.info-card h4 {
  color: var(--primary-color);
  margin-bottom: 1.25rem;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.timeline-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.timeline-item i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.highlight-card {
  margin-top: 2rem;
  background-color: var(--bg-light);
}

.highlight-card h4 i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.primary-card {
  margin-top: 2rem;
  background-color: var(--primary-color);
  color: var(--white);
}

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

.primary-card ul {
  color: rgba(255, 255, 255, 0.9);
}

.primary-card ul li {
  color: rgba(255, 255, 255, 0.9);
}

/* Checkmark list styling */
.checkmark-list {
  list-style: none;
  padding-left: 0;
}

.checkmark-list li {
  padding-left: 0;
}

.checkmark-list li i {
  color: var(--success);
  margin-right: 0.75rem;
  width: 1.25rem;
  display: inline-block;
}

/* Icon-enhanced lists */
ul li i.fas.fa-check {
  color: var(--accent-color);
  margin-right: 0.625rem;
  width: 1.25rem;
  display: inline-block;
  text-align: center;
}

/* Card paragraph icons */
.card p i.fas {
  color: var(--accent-color);
  margin-right: 0.5rem;
  width: 1.25rem;
  display: inline-block;
  text-align: center;
}

/* Heading icons */
h3 i.fas, h4 i.fas {
  color: var(--accent-color);
  margin-right: 0.625rem;
}

/* Print Styles */
@media print {
  .navbar,
  .hero-form-container,
  .scroll-top,
  .footer {
    display: none;
  }

  body {
    font-size: 12pt;
  }

  h1 {
    font-size: 18pt;
  }

  h2 {
    font-size: 16pt;
  }
}
