
/* Reset & Base Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====  Header ===== */
.site-header {
  background-color: #ffffff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  padding: 10px 0 0;
  position: relative;
}

.header-container {
  display: flex;
  flex-direction: column;
  position: relative;
}

.header-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  min-height: 90px;
}

/* Logo Group */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 70px;
}

.logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-taglines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 2px solid #7AC143;
  padding-left: 15px;
  height: 100%;
}

.tagline-top,
.tagline-middle,
.tagline-bottom {
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

.tagline-top {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 3px;
  color: #7AC143;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.tagline-middle {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 3px;
  color: #005DAA;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.tagline-bottom {
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 700;
  color: #7AC143;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Navigation Styles */
.main-navigation ul {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-navigation a {
  font-size: 16px;
  color: #005DAA;
  text-decoration: none;
  position: relative;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.main-navigation a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background-color: #7AC143;
  transition: width 0.3s ease;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.main-navigation a:hover::after {
  width: 100%;
}

/* Accent Lines */
.accent-lines {
 display: none;
}

.green-line {
  height: 3px;
  background: linear-gradient(90deg, #7AC143 0%, rgba(122,193,67,0.3) 100%);
  width: 100%;
}

.blue-line {
  height: 3px;
  background: linear-gradient(90deg, #005DAA 0%, rgba(0,93,170,0.3) 100%);
  width: 100%;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
  .header-content {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    min-height: auto;
  }

  .logo-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    height: auto;
    border-left: 2px solid #7AC143;
    padding-left: 10px;
    border-top: none;
    padding-top: 0;
    width: auto;
  }

  .logo {
    height: 40px;
  }

  .logo-taglines {
    flex-direction: column;
    justify-content: center;
    border-left: none;
    padding-left: 0;
    height: auto;
  }

  .tagline-top,
  .tagline-middle,
  .tagline-bottom {
    display: none; /* Hide taglines in mobile */
  }

  .main-navigation {
    margin-left: auto; /* Push nav to the right */
  }

  .main-navigation ul {
    gap: 5px;
    margin-top: 0;
  }

  .main-navigation a {
    font-size: 12px;
    padding: 6px 10px;
    background-color: transparent;
    border-radius: 4px;
    color: #005DAA;
  }

  .main-navigation a:hover {
    background-color: #005DAA;
    color: white;
  }
}

/* Further simplify for very small screens */
@media (max-width: 480px) {
  .logo {
    height: 30px;
  }

  .main-navigation a {
    font-size: 10px;
    padding: 4px 6px;
  }
}

/* Adjust hero section for mobile */
@media (max-width: 768px) {
  .hero-carousel {
    height: 300px;
  }
  
  .slide-caption {
    padding: 10px;
    max-width: 90%;
    bottom: 10%;
    left: 5%;
  }
  
  .slide-caption h2 {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  
  .slide-caption p {
    font-size: 0.8rem;
  }
}

/* Simplify process steps for mobile */
@media (max-width: 768px) {
  .process-steps {
    padding: 20px 0;
  }
  
  .process-step {
    margin-bottom: 20px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .step-content {
    padding: 15px;
  }
  
  .step-content h3 {
    font-size: 1.1rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
}
/* =====  Accent Lines ===== */
.accent-lines {
display: none;
}

.green-line {
  height: 3px;
  background: linear-gradient(90deg, #7AC143 0%, rgba(122,193,67,0.3) 100%);
  width: 100%;
}

.blue-line {
  height: 3px;
  background: linear-gradient(90deg, #005DAA 0%, rgba(0,93,170,0.3) 100%);
  width: 100%;
}

/* ===== Hero Section ===== */
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 500px;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: white;
  background: rgba(0, 93, 170, 0.7);
  padding: 20px;
  max-width: 500px;
  border-left: 4px solid #7AC143;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s;
}

.dot.active {
  background: #005DAA;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 93, 170, 0.7);
  color: white;
  border: none;
  font-size: 24px;
  padding: 15px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.carousel-arrow:hover {
  background: rgba(0, 93, 170, 0.9);
}

.prev-arrow {
  left: 20px;
}

.next-arrow {
  right: 20px;
}

.hero-fallback {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-carousel {
    height: 400px;
  }
  
  .slide-caption {
    padding: 15px;
    max-width: 80%;
  }
  
  .slide-caption h2 {
    font-size: 1.5rem;
  }
}

/* ===== Contact Page Styles ===== */
.contact-hero {
  background: linear-gradient(rgba(0, 93, 170, 0.8), rgba(122, 193, 67, 0.8));
  color: white;
  padding: 100px 0;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2,
.contact-form h2 {
  color: #005DAA;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.contact-method {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-details h3 {
  color: #005DAA;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.contact-details p,
.contact-details a {
  color: #555;
  margin: 5px 0;
  line-height: 1.6;
}

.contact-details a {
  color: #005DAA;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-details a:hover {
  color: #7AC143;
  text-decoration: underline;
}

.business-hours {
  margin-top: 40px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
}

.business-hours h3 {
  color: #005DAA;
  margin-bottom: 10px;
}

/* Contact Form Styles */
.contact-form {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #005DAA;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7AC143;
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
  background: #005DAA;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #7AC143;
}

/* ===== Map Section ===== */
.map-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.map-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.map-actions {
  display: flex;
  gap: 15px;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #005DAA;
  color: white;
  padding: 12px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #005DAA;
}

.directions-btn:hover {
  background: #7AC143;
  border-color: #7AC143;
  transform: translateY(-2px);
}

.btn-icon {
  font-weight: bold;
}

.map-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .map-header-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .map-container {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .map-container {
    height: 300px;
  }
  
  .directions-btn {
    padding: 10px 15px;
    font-size: 14px;
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info {
    order: 2;
  }
  
  .contact-form {
    order: 1;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 0;
  }
  
  .contact-section {
    padding: 60px 0;
  }
  
  .map-section {
    padding: 40px 0;
  }
  
  .map-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .contact-method {
    flex-direction: column;
    gap: 10px;
  }
  
  .contact-icon {
    margin-bottom: 10px;
  }
}

/* ===== Footer ===== */
.site-footer {
  background-color: #222;
  color: #ccc;
  padding: 2px 0;
  text-align: center;
  font-size: 0.8rem;
}

.site-footer a {
  color: #ccc;
  text-decoration: underline;
}

.site-footer a:hover {
  color: #fff;
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  /* Header */
  .logo {
    height: 30px;
  }

  .main-navigation a {
    font-size: 10px;
    padding: 4px 6px;
  }

  .tagline-top {
    font-size: 12px;
    letter-spacing: 2px;
  }
  
  .tagline-bottom {
    font-size: 14px;
  }
  
  .main-navigation ul {
    gap: 8px;
  }

  /* Typography */
  .section-title {
    font-size: 1.6rem;
  }

  /* Services */
  .services-overview {
    padding: 50px 0;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-item h3 {
    font-size: 1rem;
  }

  .product-grid {
    gap: 35px;
  }
  
  .product-image {
    padding: 10px;
  }
  
  .product-image img {
    width: 75%;
    max-height: 180px;
  }
  
  .product-details {
    padding: 20px;
  }
  
  .product-details h3 {
    font-size: 1.3rem;
  }
}

/* Extra Large Screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}