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

body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  color: #1F2937;
  background: #FFFFFF;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo-text {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.peg-text {
  font-size: 4rem;
  font-weight: 700;
  color: #F2673A;
  text-transform: lowercase;
  font-family: 'Roboto', sans-serif;
  line-height: 0.9;
  margin-top: -15px;
}

.business-text {
  font-size: 1rem;
  color: white;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-family: 'Roboto', sans-serif;
}

.group-text {
  color: #8B9DC3;
  font-size: 0.8rem;
  font-weight: 500;
}

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

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #F2673A;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: all 0.3s ease;
}

.cta-btn {
  background: #F2673A !important;
  color: white !important;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: #d55a32 !important;
  color: white !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(37, 63, 102, 0.8) 0%, rgba(30, 74, 107, 0.8) 100%),
    url('assets/images/hero/peg-team-hero-background.jpeg');
  background-size: cover;
  background-position: center bottom;
  background-attachment: fixed;
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
  opacity: 0.95;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.hero-buttons-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #F2673A, #d55a32);
  color: white;
  box-shadow: 0 6px 20px rgba(242, 103, 58, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d55a32, #c04a28);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(242, 103, 58, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: white;
  color: #253F66;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-outline {
  background: transparent;
  color: #0c293e;
  border: 2px solid #0c293e;
  box-shadow: 0 4px 15px rgba(37, 63, 102, 0.1);
}

.btn-outline:hover {
  background: linear-gradient(135deg, #0c293e, #1e4a6b);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 63, 102, 0.3);
}

/* Professional Services Section */
.professional-services {
  padding: 80px 0;
  background: #FFFFFF;
  position: relative;
}

.professional-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F2673A, #0c293e, #F2673A);
}

.professional-services h2 {
  text-align: center;
  color: #0c293e
  font-size: 2.5rem;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: #475569;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-column {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.service-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F2673A, #0c293e);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-column:hover::before {
  transform: scaleX(1);
}

.service-column:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #F2673A;
}

.service-column .service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #F2673A;
}

.service-column h3 {
  color: #0c293e;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-column .service-description {
  color: #475569;
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-column ul {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.service-column li {
  padding: 8px 0;
  color: #475569;
  font-size: 1rem;
  position: relative;
  padding-left: 20px;
}

.service-column li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F2673A;
  font-weight: bold;
}

/* Why Choose Section */
.why-choose {
  padding: 80px 0;
  background: linear-gradient(135deg, #0c293e 0%, #1e4a6b 100%);
  color: white;
  position: relative;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><polygon fill="rgba(255,255,255,0.05)" points="0,0 100,0 80,20 0,20"/></svg>') repeat-x;
  background-size: 100px 20px;
}

.why-choose h2 {
  text-align: center;
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.why-choose .section-intro {
  color: white;
}

.highlights-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.highlights-grid .highlight {
  flex: 0 1 280px;
  max-width: 320px;
}

.highlights-grid .highlight:nth-child(4),
.highlights-grid .highlight:nth-child(5) {
  margin-top: 0;
}

@media (min-width: 768px) {
  .highlights-grid .highlight:nth-child(4) {
    margin-left: calc(140px + 15px);
  }

  .highlights-grid .highlight:nth-child(5) {
    margin-right: calc(140px + 15px);
  }
}

.highlight {
  text-align: center;
  padding: 40px 25px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.highlight:nth-child(2) {
  animation-delay: 0.2s;
}

.highlight:nth-child(3) {
  animation-delay: 0.4s;
}

.highlight:hover {
  transform: translateY(-10px);
  border-color: #F2673A;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #F2673A;
}

.highlight h4 {
  color: #253F66;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.highlight p {
  color: #475569;
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: #FFFFFF;
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0c293e, #F2673A, #0c293e);
}

.testimonials h2 {
  text-align: center;
  color: #0c293e;
  font-size: 2.5rem;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

/* Carousel Container */
.carousel-container {
  position: relative;
  margin-bottom: 40px;
  padding: 0 60px;
}

.testimonials-carousel {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 0;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background: white;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  flex: 0 0 280px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.1s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 0.2s;
}

.testimonial-card:nth-child(4) {
  animation-delay: 0.3s;
}

.testimonial-card:nth-child(5) {
  animation-delay: 0.4s;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -5px;
  left: 15px;
  font-size: 3rem;
  color: #F2673A;
  font-family: serif;
  opacity: 0.2;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: #F2673A;
}

.stars {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #F2673A;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  min-height: 80px;
}

.testimonial-card cite {
  font-weight: 600;
  color: #0c293e;
  font-size: 0.9rem;
  font-style: normal;
}

/* Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0c293e;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
  background: #F2673A;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(242, 103, 58, 0.3);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

/* Responsive testimonials */
@media (max-width: 768px) {
  .carousel-container {
    padding: 0 50px;
  }

  .testimonial-card {
    flex: 0 0 250px;
    padding: 25px 20px;
  }

  .testimonial-card p {
    font-size: 0.9rem;
    min-height: 70px;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carousel-prev {
    left: 5px;
  }

  .carousel-next {
    right: 5px;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    padding: 0 45px;
  }

  .testimonial-card {
    flex: 0 0 220px;
    padding: 20px 15px;
  }

  .stars {
    font-size: 1rem;
  }

  .testimonial-card p {
    font-size: 0.85rem;
    min-height: 60px;
  }

  .testimonial-card cite {
    font-size: 0.8rem;
  }

  .carousel-nav {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .carousel-prev {
    left: 5px;
  }

  .carousel-next {
    right: 5px;
  }
}

/* Page Header */
.page-header {
  background: #0c293e;
  color: white;
  padding: 120px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Services Pages */
.services-detail {
  padding: 80px 0;
  background: #FFFFFF;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-item {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #F2673A;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.service-item:nth-child(even) {
  animation-delay: 0.1s;
}

.service-item:nth-child(3n) {
  animation-delay: 0.2s;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #F2673A20, transparent);
  border-radius: 0 20px 0 20px;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-left-color: #0c293e;
}

.service-item h3 {
  color: #0c293e;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-item p {
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 1.05rem;
}

.service-item ul {
  list-style: none;
  margin-top: 15px;
}

.service-item li {
  padding: 8px 0;
  color: #64748b;
  position: relative;
  padding-left: 25px;
  font-size: 1rem;
  line-height: 1.5;
}

.service-item li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: #F2673A;
  font-size: 1.1rem;
}

.real-estate-callout {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
  border-left: 4px solid #10B981;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.real-estate-callout h3 {
  color: #253F66;
  margin-bottom: 15px;
}

/* Electrical Page Styles */
.electrical-hero {
  background: #0c293e;
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
}

.electrical-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.electrical-hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.electrical-section {
  padding: 80px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), 
              url('assets/images/backgrounds/electrical-services-background.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.electrical-section h2 {
  text-align: center;
  color: #0c293e;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: white;
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F2673A, #0c293e);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: #F2673A;
}

.service-icon {
  font-size: 2.5rem;
  color: #F2673A;
  margin-bottom: 20px;
}

.service-card h4 {
  color: #0c293e;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: #64748b;
  line-height: 1.6;
  font-size: 1rem;
}

.commercial-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.commercial-section h2 {
  text-align: center;
  color: #0c293e;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.commercial-container {
  margin-top: 50px;
  margin-bottom: 40px;
}

.commercial-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.commercial-image {
  text-align: center;
  margin: 40px 0;
}

.commercial-image img {
  width: 100%;
  max-width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.commercial-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .commercial-highlights {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .commercial-image img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .commercial-image img {
    height: 200px;
  }
}

.highlight-item {
  background: white;
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #F2673A;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
  font-size: 2.2rem;
  color: #F2673A;
  margin-bottom: 15px;
}

.highlight-item h4 {
  color: #0c293e;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.highlight-item p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
}

.callout-box {
  background: linear-gradient(135deg, #F2673A, #d55a32);
  color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(242, 103, 58, 0.3);
}

.callout-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.callout-box p {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  font-style: italic;
}

.safety-section {
  padding: 80px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), 
              url('assets/images/backgrounds/safety-compliance-background.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.safety-section h2 {
  text-align: center;
  color: #0c293e;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.safety-services-container {
  margin-top: 50px;
}

.safety-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.safety-image {
  grid-row: 2;
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.safety-image img {
  width: 100%;
  max-width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.safety-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  .safety-services {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .safety-image {
    grid-row: 3;
    grid-column: 1 / -1;
    justify-content: center;
  }

  .safety-image img {
    max-width: 350px;
    height: 220px;
  }
}

@media (max-width: 600px) {
  .safety-services {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .safety-image {
    grid-row: auto;
    grid-column: 1;
  }

  .safety-image img {
    max-width: 300px;
    height: 180px;
  }
}

.safety-item {
  background: white;
  padding: 30px 25px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.safety-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: #F2673A;
}

.safety-icon {
  font-size: 2rem;
  color: #F2673A;
  margin-top: 5px;
  flex-shrink: 0;
}

.safety-item h4 {
  color: #0c293e;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.safety-item p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.bonus-offer {
  background: linear-gradient(135deg, #10B981, #059669);
  color: white;
  padding: 25px 30px;
  border-radius: 15px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.bonus-icon {
  font-size: 1.8rem;
}

.bonus-offer p {
  font-size: 1.1rem;
  margin: 0;
}

.compliance-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.compliance-section h2 {
  text-align: center;
  color: #0c293e;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.compliance-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.compliance-item {
  background: white;
  padding: 30px 25px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.compliance-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: #F2673A;
}

.compliance-icon {
  font-size: 2rem;
  color: #F2673A;
  margin-top: 5px;
  flex-shrink: 0;
}

.compliance-item h4 {
  color: #253F66;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.compliance-item p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.electrical-cta {
  background: #F2673A;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.electrical-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: white;
}

.electrical-cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.electrical-cta .btn {
  background: white;
  color: #F2673A;
  font-size: 1.1rem;
  padding: 18px 40px;
  border: 2px solid white;
}

.electrical-cta .btn:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-3px);
}

/* Mobile Responsiveness for Electrical Page */
@media (max-width: 768px) {
  .electrical-hero h1 {
    font-size: 2.2rem;
  }

  .electrical-section h2,
  .commercial-section h2,
  .safety-section h2,
  .electrical-cta h2 {
    font-size: 2rem;
  }

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

  .commercial-highlights {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .safety-services {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .safety-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .bonus-offer {
    flex-direction: column;
    gap: 10px;
  }
}

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

  .service-card,
  .highlight-item,
  .safety-item {
    padding: 25px 20px;
  }

  .callout-box,
  .bonus-offer {
    padding: 20px;
  }
}

/* Plumbing Page Styles */
.plumbing-hero {
  background: #0c293e;
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
}

.plumbing-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.plumbing-hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.plumbing-section {
  padding: 80px 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), 
                    url('assets/images/backgrounds/plumbing-services-background.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.plumbing-section h2 {
  text-align: center;
  color: #0c293e;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.maintenance-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.maintenance-section h2 {
  text-align: center;
  color: #0c293e;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.maintenance-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 40px;
}

.cta-box {
  text-align: center;
  margin-top: 40px;
}

.compliance-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.compliance-section h2 {
  text-align: center;
  color: #0c293e;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.compliance-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.compliance-item {
  background: white;
  padding: 30px 25px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.compliance-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: #F2673A;
}

.compliance-icon {
  font-size: 2rem;
  color: #F2673A;
  margin-top: 5px;
  flex-shrink: 0;
}

.compliance-item h4 {
  color: #0c293e;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.compliance-item p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.residential-construction-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.residential-construction-section h2 {
  text-align: center;
  color: #0c293e;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.construction-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.plumbing-cta {
  background: #F2673A;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.plumbing-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: white;
}

.plumbing-cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.plumbing-cta .btn {
  background: white;
  color: #F2673A;
  font-size: 1.1rem;
  padding: 18px 40px;
  border: 2px solid white;
}

.plumbing-cta .btn:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-3px);
}

/* Mobile Responsiveness for Plumbing Page */
@media (max-width: 768px) {
  .plumbing-hero h1 {
    font-size: 2.2rem;
  }

  .plumbing-section h2,
  .maintenance-section h2,
  .compliance-section h2,
  .plumbing-cta h2 {
    font-size: 2rem;
  }

  .maintenance-highlights {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .compliance-services {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .compliance-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

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

  .compliance-item {
    padding: 25px 20px;
  }
}

/* Contact Form */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  color: #0c293e;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #0c293e;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #F2673A;
}

.contact-info h3 {
  color: #0c293e;
  margin-bottom: 25px;
}

.contact-item {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item-icon {
  font-size: 1rem;
  width: 18px;
  display: flex;
  justify-content: flex-start;
}

.contact-item h4 {
  color: #0c293e;
  margin-bottom: 5px;
}

/* Special Offer */
.special-offer {
  background: #F2673A;
  color: white;
  padding: 60px 0;
}

.offer-content h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.offer-details {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.offer-details ul {
  list-style: none;
}

.offer-details li {
  padding: 8px 0;
  font-size: 1.1rem;
}

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

.offer-highlight {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background: #0c293e;
  color: white;
  padding: 60px 0 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F2673A, #0c293e, #F2673A);
}

.footer-main {
  padding-bottom: 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

/* Column 1 - Company Info */
.footer-company {
  text-align: left;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo .logo-text {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-logo .peg-text {
  font-size: 4rem;
  font-weight: 700;
  color: #F2673A;
  text-transform: lowercase;
  font-family: 'Roboto', sans-serif;
  line-height: 0.9;
  margin-top: -15px;
}

.footer-logo .business-text {
  font-size: 1rem;
  color: white;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-family: 'Roboto', sans-serif;
}

.footer-logo .group-text {
  color: #8B9DC3;
  font-size: 0.8rem;
  font-weight: 500;
}

.footer-slogan {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Column 2 - Contact Info */
.footer-contact h4 {
  color: #F2673A;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-item {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}

.contact-item-icon {
  font-size: 1rem;
  width: 18px;
  display: flex;
  justify-content: flex-start;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-item p,
.contact-item a {
  color: #cbd5e1;
  text-decoration: none;
  margin: 0;
  font-weight: 400;
  line-height: 1.4;
}

.contact-item a:hover {
  color: #F2673A;
  text-decoration: underline;
}

.contact-with-license {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.license-info {
  font-size: 0.8rem;
  color: #94a3b8;
  font-style: italic;
}

/* Column 3 - Licences */
.footer-licences h4 {
  color: #F2673A;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 700;
}

.licence-item {
  margin-bottom: 12px;
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.4;
}

/* Column 3 - Services */
.footer-services h4 {
  color: #F2673A;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 700;
}

.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.services-list li {
  margin-bottom: 8px;
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 400;
  position: relative;
  padding-left: 15px;
}

.services-list li::before {
  content: '•';
  color: white;
  font-size: 1rem;
  position: absolute;
  left: 0;
  top: 0;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #1e3a52;
  padding: 20px 0;
  text-align: center;
  margin-top: 40px;
}

.footer-legal {
  color: #94a3b8;
  font-size: 0.8rem;
  line-height: 1.5;
}

/* Footer Responsive Design */
@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

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

  .footer-logo .logo-text {
    justify-content: center;
  }

  .contact-item {
    justify-content: center;
  }

  footer {
    padding: 40px 0 0;
  }
}

@media (max-width: 480px) {
  .footer-logo .peg-text {
    font-size: 2.6rem;
    margin-top: -10px;
  }

  .footer-logo .business-text {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
  }

  .footer-slogan {
    font-size: 0.85rem;
  }

  .contact-item {
    font-size: 0.8rem;
  }

  .licence-item {
    font-size: 0.8rem;
  }

  .services-list li {
    font-size: 0.8rem;
  }
}

/* About Page Styles */
.about-intro {
  padding: 80px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), 
              url('assets/images/hero/peg-team-hero-background.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 25px;
}

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

.trust-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0c293e 0%, #1e4a6b 100%);
  color: white;
}

.trust-section h2 {
  text-align: center;
  color: white;
  font-size: 2.5rem;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-card {
  flex: 0 1 350px;
  max-width: 380px;
}

/* Make sure the first 3 cards take up the full width */
.trust-card:nth-child(1),
.trust-card:nth-child(2),
.trust-card:nth-child(3) {
  flex: 0 1 calc(33.333% - 20px);
}

/* Center the last two cards in their own row */
.trust-card:nth-child(4),
.trust-card:nth-child(5) {
  flex: 0 1 350px;
}

@media (max-width: 900px) {
  .trust-grid {
    gap: 25px;
  }

  .trust-card:nth-child(1),
  .trust-card:nth-child(2),
  .trust-card:nth-child(3) {
    flex: 0 1 calc(50% - 12.5px);
  }

  .trust-card:nth-child(4),
  .trust-card:nth-child(5) {
    flex: 0 1 320px;
  }
}

@media (max-width: 600px) {
  .trust-grid {
    gap: 20px;
  }

  .trust-card {
    flex: 0 1 100%;
    max-width: 400px;
  }

  .trust-card:nth-child(1),
  .trust-card:nth-child(2),
  .trust-card:nth-child(3),
  .trust-card:nth-child(4),
  .trust-card:nth-child(5) {
    flex: 0 1 100%;
  }
}

.trust-card {
  background: white;
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.trust-card:nth-child(2) {
  animation-delay: 0.1s;
}

.trust-card:nth-child(3) {
  animation-delay: 0.2s;
}

.trust-card:nth-child(4) {
  animation-delay: 0.3s;
}

.trust-card:nth-child(5) {
  animation-delay: 0.4s;
}

.trust-card:hover {
  transform: translateY(-10px);
  border-color: #F2673A;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.trust-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #F2673A;
}

.trust-card h3 {
  color: #0c293e;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.trust-card p {
  color: #475569;
  line-height: 1.6;
  font-size: 1rem;
}

.meet-owners {
  padding: 80px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), 
              url('assets/images/backgrounds/about-owners-background.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.meet-owners h2 {
  text-align: center;
  color: #0c293e;
  font-size: 2.5rem;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.owners-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.owners-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 25px;
}

<previous_generation>
.owners-content p:last-child {
  margin-bottom: 0;
}

.about-cta {
  padding: 80px 0;
  background: #F2673A;
  color: white;
  text-align: center;
}

.about-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: white;
}

.cta-content .btn {
  background: white;
  color: #F2673A;
  font-size: 1.1rem;
  padding: 18px 40px;
  border: 2px solid white;
}

.cta-content .btn:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-3px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: #0c293e;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 30px 0;
  }

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

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

  .hero-buttons-row {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-buttons {
    gap: 25px;
  }

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

  .offer-details {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .professional-services h2,
  .why-choose h2,
  .testimonials h2 {
    font-size: 2rem;
  }

  .peg-text {
    font-size: 2.6rem;
    letter-spacing: -1px;
    margin-top: -10px;
  }

  .business-text {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
  }

  .sticky-contact {
    bottom: 15px;
    right: 15px;
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }
}

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

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

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .peg-text {
    font-size: 2.2rem;
    margin-top: -8px;
  }

  .business-text {
    font-size: 0.7rem;
    letter-spacing: 1.3px;
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Section Separators */
.section-separator {
  height: 4px;
  background: linear-gradient(90deg, #F2673A, #0c293e, #F2673A);
  margin: 0;
}

/* Sticky Contact Button */
.sticky-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #F2673A, #d55a32);
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(242, 103, 58, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.sticky-contact:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(242, 103, 58, 0.6);
}

/* Enhanced Hero Section */
.hero {
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Service Images */
.service-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.service-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(242, 103, 58, 0.1), rgba(37, 63, 102, 0.1));
  transition: opacity 0.3s ease;
}

.service-column:hover .service-image::before {
  opacity: 0.8;
}

.hero-image {
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 300px;
  height: 300px;
  background: url('https://images.unsplash.com/photo-1621905251918-48416bd8575a?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80&q=80');
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

/* Photo Gallery Section */
.photo-gallery {
  padding: 80px 0;
  background: #f8fafc;
}

.photo-gallery h2 {
  text-align: center;
  color: #0c293e;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.photo-gallery .section-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: #475569;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Responsive gallery */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }

  .photo-gallery h2 {
    font-size: 2rem;
  }

  .photo-gallery {
    padding: 60px 0;
  }
}