/* Base styles */
:root {
  --primary-color: #1a365d;
  --primary-dark: #0f2942;
  --accent-color: #e53e3e;
  --background-color: #ffffff;
  --text-color: #2D3748;
  --gray-light: #F7FAFC;
  --gray-dark: #4A5568;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

h2,
p {
  text-align: center;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--primary-dark);
  border: 2px solid white;
  color: white;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.scroll-to-top svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Adjust for mobile */
@media (max-width: 768px) {
  .scroll-to-top {
      bottom: 1.5rem;
      right: 1.5rem;
      width: 2.5rem;
      height: 2.5rem;
  }

  .scroll-to-top svg {
      width: 1.2rem;
      height: 1.2rem;
  }
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.social-icon {
  width: 50px;
  height: 50px;
  fill: var(--primary-color);
}

/* Unified Social Media Styles */
.social-link,
.social-button,
.mobile-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 4px;
    text-decoration: none;
    color: var(--primary-color);
    background-color: transparent;
    transition: all 0.3s ease;
}

.social-link:hover,
.social-button:hover,
.mobile-social-link:hover {
    color: white;
    transform: translateY(-2px);
}

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

/* Navigation Styles */
.header {
  background: var(--background-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav {
  padding: 1rem;
}

a.nav-link {
  text-decoration: none;
  color: var(--text-color);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.logo:hover {
  opacity: 0.9;
}

.logo span {
  display: none;
}

.nav-links {
  display: none;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--background-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  min-width: 200px;
}

.nav-item:hover .dropdown {
  display: block;
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-color);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-link:hover {
  background-color: var(--gray-light);
  color: var(--primary-color);
}

.nav-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-toggle {
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  color: var(--text-color);
  display: flex;
  align-items: center;
}

.dropdown-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.nav-item.active .dropdown-toggle svg {
  transform: rotate(180deg);
}

/* Desktop Navigation */
@media (min-width: 1024px) {
  .nav-item:hover .dropdown {
      display: block; 
  }
  
  .dropdown-toggle {
      display: none; 
  }
}

/* Tablet Navigation */
@media (min-width: 768px) and (max-width: 1023px) {
  .nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .logo-container {
    justify-content: flex-start;
    flex: 1 1 auto;
    display: flex;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
    flex: 1 1 auto;
  }
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--primary-color);
    margin-left: 1rem;
    z-index: 1002;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-button .menu-icon {
    width: 24px;
    height: 24px;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--primary-dark);
    padding: 2rem;
    transition: right 0.3s ease-in-out;
    z-index: 1003;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu.active ~ .mobile-menu-button,
.mobile-menu.active + .mobile-menu-button {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.mobile-close-button {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-close-button .close-icon {
    width: 24px;
    height: 24px;
}

.mobile-nav-item:first-of-type {
    margin-top: 4rem;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-link {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 1rem 0;
    display: block;
}

.mobile-nav-item.standalone .mobile-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-link:hover {
    color: var(--accent-color);
}

.mobile-nav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1rem 0;
    width: 100%;
}

.mobile-dropdown-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active {
    transform: rotate(180deg);
}

.mobile-dropdown-toggle svg {
    width: 20px;
    height: 20px;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.mobile-submenu.active {
    max-height: 600px;
}

.mobile-sublink {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-sublink:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    border-left-color: var(--accent-color);
}

.mobile-social-links {
    display: flex;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social-link {
    color: white;
    padding: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.mobile-social-link .social-icon {
    width: 20px;
    height: 20px;
}

@media (min-width: 768px) {
    .mobile-menu-button,
    .mobile-menu {
        display: none;
    }
}

/* Hero Section */
.hero {
    padding: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.8) 0%, rgba(15, 41, 66, 0.4) 2%);
    color: white;
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 70vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('Images/hero-transport.jpg');
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
    padding: 2rem 0;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.hero h1 .highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

/* Hero Section - Responsive Breakpoints */
@media (max-width: 1024px) {
    /* Tablet */
    .hero {
        min-height: 65vh;
        min-height: 65svh;
    }
    
    .hero-content {
        width: 90%;
        padding: 0 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    /* Mobile */
    .hero {
        height: 70vh;
        min-height: 70vh;
    }
    
    .hero-content {
        width: 95%;
        padding: 0 1rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        text-align: center;
    }

    .hero-text { }
}



.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #c53030;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(247, 250, 252, 0.8) 0%, rgba(237, 242, 247, 0.8) 100%);
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background-color: var(--background-color);
}

.section-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 1000px;
  margin: 1rem auto 0;
  font-size: 1.25rem;
  color: var(--gray-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 200px;
}

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

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.service-card p {
  color: var(--gray-dark);
  text-align: left;
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* CTA Section */
.cta-section {
  padding: 2rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-content .cta-button {
  background-color: var(--accent-color);
  font-size: 1.1rem;
  padding: 1.2rem 3rem;
}

.cta-content .cta-button:hover {
  background-color: #c53030;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(15, 41, 66, 0.95) 100%), url('Images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.about-hero .hero-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 4rem;
}

.about-hero .hero-text {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
    align-items: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
    text-align: center;
}

.about-hero h1 .highlight {
    color: var(--accent-color);
    display: block;
    font-size: 2.5rem;
    margin-top: 0.5rem;
    font-weight: 600;
    text-align: center;
}

.about-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 4rem 0;
    }
    
    .services-section { 
        padding: 4rem 0;
    }

    .about-hero {
        height: 15vh;
        min-height: 120px;
        padding-top: 2vh;
    }

    .about-hero .hero-text {
        min-height: 180px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

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

    .about-hero p {
        font-size: 1.1rem;
    }
}

@media (max-480px) {
    .about-hero {
        height: 12vh;
        min-height: 100px;
    }

    .about-hero .hero-text {
        min-height: 150px;
    }

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

    .about-hero h1 .highlight {
        font-size: 1.5rem;
    }

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

.about-section {
    padding: 6rem 0;
    position: relative;
}

.about-section:nth-child(odd) {
    background: linear-gradient(135deg, rgba(247, 250, 252, 0.8) 0%, rgba(237, 242, 247, 0.8) 100%);
}

.about-section:nth-child(even) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(247, 250, 252, 0.9) 100%);
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-section.odd-type-section {
    background: linear-gradient(135deg, rgba(247, 250, 252, 0.8) 0%, rgba(237, 242, 247, 0.8) 100%);
}

.section-subtitle {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--primary-dark);
    line-height: 1.8;
}

/* About Features */
.about-features {
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-card ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--primary-dark);
    line-height: 1.6;
}

.feature-card ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Commitment Section */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.commitment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.commitment-card p {
    color: var(--gray-dark);
    line-height: 1.6;
    text-align: left;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 0 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    text-align: left;
    flex-shrink: 0;
    min-height: 3.6rem;
    display: flex;
    align-items: center;
}

.feature-box p {
    color: var(--primary-dark);
    line-height: 1.6;
    text-align: left;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    min-height: 4.8rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  
  .mobile-menu-button {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-text {
    text-align: center;
    margin: 0 auto;
  }

  .hero p {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

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

@media (max-width: 768px) {
    .hero {
        min-height: unset;
        padding-top: 0;
    }

    .hero-content {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .hero-text {
        text-align: center;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

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

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

    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        text-align: center;
    }

    .footer-section p {
        text-align: center;
    }

    .footer-section h3 { 
        font-size: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        order: 1;
    }

    .commitment-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form {
        padding: 1.5rem;
    }

    .form-section {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

/* Services Showcase Section */
.services-showcase {
    padding: 6rem 0;
    background-color: var(--background-color);
}

.services-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.showcase-card {
    background: var(--gray-light);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.showcase-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.showcase-content h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.showcase-content p {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.showcase-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.showcase-link svg {
    width: 20px;
    height: 20px;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.showcase-link:hover {
    color: var(--primary-dark);
}

.showcase-link:hover svg {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .services-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-showcase {
        padding: 4rem 0;
    }

    .showcase-content {
        padding: 1.5rem;
    }

    .showcase-content h3 {
        font-size: 1.25rem;
    }

    .services-showcase-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Lazy Loading and Animations */
[data-lazy-section] {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Ensure content is visible by default for no-js */
.no-js [data-lazy-section] {
    opacity: 1;
    transform: none;
}

/* Remove any default hidden state */
[data-lazy-section] {
    visibility: visible !important;
    display: block !important;
}

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

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

.footer-section {
    padding: 0 1rem;
}

.footer-section h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-section p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    font-size: 1rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: .4rem;
}

.address-text {
    font-size: 0.9rem !important;
    text-align: center !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

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

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

.social-link {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

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

.social-icon {
    width: 24px;
    height: 24px;
    fill: white;
    display: block;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.privacy-links {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.footer-email {
    display: flex;
    align-items: center;
}

.footer-email a,
.footer-phone a {
    margin-bottom: 0;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Responsive Design */
@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-findus {
    grid-column: auto;
  }
}

@media (max-width: 1024px) {
    .commitment-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

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

    .commitment-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .feature-card {
        padding: 2rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 2rem;
    }

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

    .footer-phone,
    .footer-email {
        justify-content: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section p {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 32vh;
    }

    .about-hero .hero-content {
        padding-top: 0rem;
    }

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

    .about-hero h1 .highlight {
        font-size: 1.5rem;
    }

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

/* Contact Page Styles */
.contact-page {
    padding-top: 0;
}

.contact-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 8rem 0 4rem 0;
    text-align: center;
    margin-top: 80px;
}

@media (max-width: 768px) {
    .contact-header {
        padding: 4rem 0 2rem 0;
        margin-top: 0;
    }
}

.contact-header h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-header .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-section {
    padding: 4rem 0;
    background-color: var(--gray-light);
}

.contact-form-wrapper {
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 1.4rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid var(--gray-light);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 1.05rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.05rem;
    margin-bottom: 1.05rem;
}

.form-row:last-child {
    margin-bottom: 0;
}

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

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.525rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.form-submit {
    margin-top: 2rem;
    text-align: center;
}

.submit-button {
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #c53030;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

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

/* Main Layout */
.main-layout {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .header {
    position: static;
    width: 100%;
  }
}

.footer-email-address {
  margin-left: 8px;
  vertical-align: middle;
}

