:root {
  --primary: #00D100;          /* Bright green - main brand color */
  --primary-dark: #00A500;     /* Darker shade for hover/active */
  --primary-light: #E6FFE6;    /* Very light green for backgrounds */

  --secondary: #0047AB;        /* Deep blue - strong accent */
  --secondary-dark: #003380;   /* Darker blue */
  --secondary-light: #3366CC;  /* Lighter blue */

  --dark: #1A1A1A;             /* Almost black for text */
  --gray: #666666;             /* Medium gray */
  --light: #F8FAFC;            /* Very light gray-blue background */
  --white: #FFFFFF;

  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 70px;                /* Slightly bigger as requested */
  width: auto;
  max-width: 100%;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.main-nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--secondary);
}

.btn-contact {
  background: var(--primary);
  color: white !important;
  padding: 10px 20px;
  border-radius: 5px;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 0 4px 12px rgba(0,0,0,0.7);
  max-width: 800px;
  padding: 20px;
}

.overlay h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.overlay p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: white;
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 4rem;
  font-weight: bold;
  z-index: 10;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.prev { left: 30px; }
.next { right: 30px; }

.prev:hover, .next:hover {
  opacity: 1;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--white);
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray);
}


/* Services Teaser */
.services-teaser {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.services-teaser h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.section-divider {
  border: none;
  height: 3px;
  background: var(--primary);   /* Bright green line */
  width: 120px;
  margin: 0 auto 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* Slightly smaller min-width */
  gap: 30px; /* Reduced gap for better fit */
}

.service-icon {
  width: 50px;                  /* Adjust size as needed */
  height: 50px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;           /* Centers the icon horizontally */
  object-fit: contain;          /* Keeps proportions without distortion */
  /*filter: brightness(0) saturate(100%) invert(15%) sepia(94%) saturate(7470%) hue-rotate(215deg) brightness(90%) contrast(110%);*/
}

.service-item {
  padding: 40px 30px;
  background: var(--light);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-item i {
  font-size: 3.5rem;
  color: var(--secondary);        /* Green icons */
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.service-item p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.service-link {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.service-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.center {
  text-align: center;
  margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .services-teaser {
    padding: 60px 0;
  }
  .service-item {
    padding: 30px 20px;
  }
}

.center {
  text-align: center;
  margin-top: 50px;
}

/* CTA */
.cta-section {
  background: var(--primary);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

/* Footer - Clean & Concise */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 0 0 20px;
  margin-top: 0;
}

.footer-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  padding-top: 30px;
  margin-bottom: 40px;
}

.footer-column {
  flex-shrink: 0;
}

.footer-column.col1 { flex: 2; }       /* Slightly wider - contact */
.footer-column.col2 { flex: 3; }       /* Widest - flag + address + map */
.footer-column.col3 { flex: 2.5; }       /* Narrow */
.footer-column.col4 { flex: 1.5; }     /* Medium */

/* Map - Small size */
.footer-column.col2 iframe {
  width: 80%;
  max-width: 280px;
  height: 180px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: block;
  margin: 15px auto 0;
}

/* Column content */
.footer-column img {
  height: 80px;
  margin-top: 0 !important;
  margin-bottom: 20px;
  display: block;
}

.footer-column.col2 {
  text-align: center;           /* Centers text and inline elements */
  color: var(--gray);
}

.footer-column h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: var(--gray);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--primary);
}

/* Canada Flag - Centered above address & map */
.footer-column.col2 .flag-icon {
  display: block;
  height: 50px;
  margin: 0 auto 15px;          /* Centered horizontally, space below */
}

/* Contact Info */
.footer-contact {
  margin-top: 15px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.4;
}

/* Email link - grey by default, green on hover */
.footer-contact a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-column.col3 ul li {
  color: var(--gray);          /* Medium grey */
}

/* Divider & Copyright */
.footer-divider {
  border: none;
  height: 1px;
  background-color: var(--white);
  opacity: 0.3;
  margin: 30px 0 10px;
}

.footer-copyright {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    flex-wrap: wrap;
  }
  .footer-column {
    flex: 1 1 45%;
  }
}

/* **************************************** About - Us ************************************ */
/* About Us Page Styles */
.about-hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('assets/images/about-hero.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 0;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.about-story {
  padding: 100px 0;
  background: var(--white);
}

.about-story h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: var(--dark);
}

.about-story p {
  max-width: 900px;
  margin: 0 auto 1.8rem auto;
  text-align: justify;
  line-height: 1.9;
  font-size: 1.1rem;
  color: var(--dark);
}

.mission-vision {
  padding: 80px 0;
  background: var(--light);
}

.mission-vision-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.mission-tile, .vision-tile {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.mission-tile h3, .vision-tile h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.values {
  padding: 80px 0;
  background: var(--light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-item i {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.about-cta {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 100px 0;
}

.about-cta h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-cta p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    padding: 80px 0;
  }
  .about-hero h1 {
    font-size: 2.5rem;
  }
  .mission-vision-grid {
    flex-direction: column;
    gap: 30px;
  }
}


/* **************************************** Contact ****************************** */
/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/images/about-us-hero.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 0;
}

.contact-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.contact-section {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  align-items: stretch; /* Makes columns equal height */
}

.contact-info,
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info h2,
.contact-form h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.contact-details {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--gray);
}

.contact-item i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-right: 15px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 8px rgba(0, 209, 0, 0.3);
}

.contact-form button {
  background: var(--primary);
  color: white;
  padding: 14px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  align-self: flex-start;
}

.contact-form button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.contact-cta {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 100px 0;
}

.contact-cta h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-cta p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 0;
  }

  .contact-grid {
    flex-direction: column;
    gap: 40px;
  }

  .contact-hero h1 {
    font-size: 2.8rem;
  }

  .contact-hero p {
    font-size: 1.2rem;
  }
}



/* ************************************* Thank you ************************************* */
/* Thank You Page */
.thank-you {
  padding: 150px 0;
  background: var(--light);
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.thank-you-icon {
  font-size: 6rem;
  color: var(--primary);        /* Bright green checkmark */
  margin-bottom: 30px;
}

.thank-you h1 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.thank-you p {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--gray);
  line-height: 1.6;
}

.thank-you .button {
  margin-top: 30px;
  padding: 14px 40px;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .thank-you {
    padding: 100px 0;
  }
  .thank-you h1 {
    font-size: 2.5rem;
  }
  .thank-you p {
    font-size: 1.1rem;
  }
}


/* ************************************* Service ************************************* */
/* Maintenance Page */
.maintenance {
  padding: 150px 0;
  background: var(--light);
  text-align: center;
}

.maintenance-content {
  max-width: 700px;
  margin: 0 auto;
}

.maintenance-icon {
  font-size: 6rem;
  color: var(--primary);
  margin-bottom: 30px;
}

.maintenance h1 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.maintenance p {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.maintenance .link {
  color: var(--primary);
  text-decoration: underline;
}

.maintenance .button {
  margin-top: 30px;
  padding: 14px 40px;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .maintenance {
    padding: 100px 0;
  }
  .maintenance h1 {
    font-size: 2.5rem;
  }
}