* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  padding-bottom: 10px;
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
  padding-bottom: 15px;
  padding-top: 25px;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 15px;
  padding-top: 20px;
}

/* Header & Navigation */
header {
  background: #F65815;
  color: white;
  padding: 5px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

#logo img {
  width: 80px;
  height: auto;
  display: block;
}

nav h2 {
  margin: 0;
  font-size: 1.3rem;
  white-space: nowrap;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s;
}

nav ul li a:hover {
  opacity: 0.8;
}

/* Hero Section */
.hero {
  background: url(images/about_us.jpg) center/cover no-repeat;
  height: 80vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  font-weight: 500;
}

/* Section Styles */
.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cards */
.card {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* Services Section */
#services-ottawa h2 {
  text-align: center;
  margin-bottom: 40px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: #222;
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-content {
  padding: 20px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Track Record Section */
.section-intro {
  color: #F65815;
  font-weight: bold;
  margin-bottom: 10px;
}

.track-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 40px;
}

.headline h2 {
  font-size: 2rem;
  line-height: 1.2;
}

.highlight {
  color: #F65815;
}

.cta-block {
  max-width: 400px;
  margin-top: 20px;
}

.cta-head {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.learn-more {
  color: #F65815;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.learn-more:hover {
  color: #d34b12;
}

.stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid #ccc;
  padding-top: 30px;
}

.stat {
  flex: 1;
  min-width: 150px;
  text-align: center;
}

.stat h3 {
  font-size: 2.5rem;
  color: #F65815;
}

.stat p {
  font-weight: 400;
  font-size: 1rem;
  margin-top: 10px;
}

/* Slideshow */
.slideshow {
  width: 100%;
  overflow: hidden;
  margin: 60px 0;
  padding: 20px 0;
  background: #f9f9f9;
}

.slider-wrapper {
  width: 100%;
  position: relative;
}

.slider {
  display: flex;
  animation: slide 20s linear infinite;
  width: calc(250px * 10);
}

.slider img {
  width: 200px;
  height: auto;
  padding: 0 20px;
  object-fit: contain;
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Contact Section */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.contact-container {
  display: flex;
  max-width: 1000px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.contact-info {
  background: #111;
  color: white;
  flex: 1;
  padding: 40px;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.contact-info p {
  margin: 15px 0;
  font-size: 0.95rem;
}

.contact-info i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.contact-form {
  flex: 2;
  padding: 40px;
}

.contact-form h2 {
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

input, textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
}

textarea {
  resize: vertical;
  margin-bottom: 20px;
  min-height: 120px;
}

button {
  background: #111;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #F65815;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }
  
  .logo-group {
    width: 100%;
    justify-content: center;
  }
  
  nav ul {
    width: 100%;
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .service-card {
    flex: 1 1 100%;
  }
  
  .track-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .stats {
    flex-direction: column;
    gap: 30px;
  }
  
  .stat {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
  }
  
  .stat:last-child {
    border-bottom: none;
  }
}

/* Offerings Page Specific Styles */
.offer-header {
  text-align: center;
  padding: 80px 20px;
  background: #f9f9f9;
}

.offer-header h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto;
}

.offerings-section {
  padding: 40px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.offer-card, .equipment-card {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.offer-card:hover, .equipment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.offer-card img, .equipment-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.offer-content {
  padding: 20px;
  background: white;
}

.equipment-card .offer-content {
  min-height: 150px;
}

.offer-card h3 {
  color: #F65815;
  margin-bottom: 10px;
}

.equipment-card h3 {
  color: #222;
  margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .offer-header {
    padding: 60px 20px;
  }
  
  .offer-header h2 {
    font-size: 1.8rem;
  }
  
  .offer-cards {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .offer-header {
    padding: 40px 15px;
  }
  
  .offer-header h2 {
    font-size: 1.5rem;
  }
  
  .offer-cards {
    grid-template-columns: 1fr;
  }
}