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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header & Navigation */
header {
  background-color: #fff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.top-banner {
  background-color: #F5A962;
  color: #000;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
  font-size: 16px;
}

.top-banner a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background-color: #fff;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: bold;
}

.logo img {
  height: 80px;
}

.logo-text {
  font-size: 20px;
  color: #000;
  line-height: 1.2;
}

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

.nav-links > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 4px;
}

.nav-links > li > a:not(.cta-button).active,
.nav-links > li > a:not(.cta-button):hover {
  background-color: #F5A962;
  color: #000;
}

.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown > a::after {
  content: " ▼";
  font-size: 10px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  list-style: none;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  min-width: 200px;
  margin-top: 5px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  background: none;
  padding-left: 20px;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background-color: #F5A962;
  color: #000;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background-color: #000;
  color: #fff!important;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
  font-size: 14px;
}

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

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: overlay;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F5A962;
  line-height: 1.2;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #fff;
  font-weight: 500;
  max-width: 900px;
}

.hero-button {
  background-color: transparent;
  border: 2px solid #F5A962;
  color: #fff;
  padding: 15px 35px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  display: inline-block;
}

.hero-button:hover {
  background-color: #F5A962;
  color: #000;
}

/* Services Section */
.services-section {
  padding: 80px 50px;
  background-color: #f9f9f9;
  text-align: center;
}

.services-section h2 {
  font-size: 48px;
  color: #F5A962;
  margin-bottom: 60px;
  font-weight: bold;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.service-card {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

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

.service-icon {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  background-color: #F5A962;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.service-icon img {
  width: 50px;
  height: 50px;
  filter: none;
}

.services-grid .service-card:nth-child(1) .service-icon {
  background-image: url('../images/Icons-Renovations.png');
}

.services-grid .service-card:nth-child(2) .service-icon {
  background-image: url('../images/Icons-Maintenance.png');
}

.services-grid .service-card:nth-child(3) .service-icon {
  background-image: url('../images/Icons-Tiny-Homes.png');
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
  font-weight: bold;
}

.service-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.service-button {
  background-color: #4a5f6f;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  display: inline-block;
  font-size: 14px;
}

.service-button:hover {
  background-color: #3a4f5f;
}

/* Why Work With Us Section */
.why-section {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: overlay;
}

.why-content {
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 0 50px;
}

.why-content h2 {
  font-size: 48px;
  color: #F5A962;
  margin-bottom: 40px;
  font-weight: bold;
}

.why-list {
  list-style: none;
  margin-bottom: 30px;
}

.why-list li {
  font-size: 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.why-list li::before {
  content: "✓";
  background-color: #7BBE3A;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

/* Content Section */
.content-section {
  padding: 80px 50px;
  text-align: center;
}

.content-section h2 {
  font-size: 42px;
  margin-bottom: 30px;
  color: #333;
  font-weight: bold;
}

.content-section p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* Renovation Sub Pages */
.renovation-page-content {
  padding: 60px 50px;
  text-align: center;
}

.renovation-page-content h2 {
  font-size: 38px;
  margin-bottom: 25px;
  color: #333;
  font-weight: bold;
}

.renovation-page-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.specialise-section {
  margin-top: 40px;
}

.specialise-section h3 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
}

.specialise-list {
  list-style: none;
  display: inline-block;
  text-align: left;
}

.specialise-list li {
  font-size: 16px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.specialise-list li::before {
  content: "✓";
  color: #7BBE3A;
  font-weight: bold;
  font-size: 20px;
}

.video-embed {
  max-width: 960px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.video-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  display: block;
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 60px 0;
  background-color: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 66.67%;
  background-color: #e0e0e0;
}

.carousel-items {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item.active {
  opacity: 1;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
}

.carousel-button {
  pointer-events: all;
  background-color: rgba(245, 169, 98, 0.8);
  border: none;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.carousel-button:hover {
  background-color: #F5A962;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background-color: #F5A962;
}

.carousel-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* Renovation Grid */
.renovation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  padding: 0 50px;
}

.renovation-card {
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}

.renovation-card:hover {
  border-color: #F5A962;
  box-shadow: 0 5px 15px rgba(245, 169, 98, 0.2);
}

.renovation-card-image {
  width: 100%;
  height: 250px;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.renovation-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.renovation-card:hover .renovation-card-image img {
  transform: scale(1.05);
}

.renovation-card-content {
  padding: 20px;
}

.renovation-card h3 {
  color: #333;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.renovation-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

/* Maintenance Grid */
.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
  padding: 0 50px;
}

.maintenance-box {
  border: 2px solid #ddd;
  padding: 30px;
  text-align: center;
  border-radius: 6px;
  background-color: #fff;
  transition: all 0.3s;
}

.maintenance-box:hover {
  border-color: #F5A962;
  box-shadow: 0 5px 15px rgba(245, 169, 98, 0.2);
}

.maintenance-box h3 {
  color: #F5A962;
  font-size: 18px;
  font-weight: bold;
}

/* Orange Background Section */
.orange-section {
  background-color: #F5A962;
  color: #fff;
  padding: 60px 50px;
  text-align: center;
}

.orange-section h2 {
  font-size: 42px;
  margin-bottom: 30px;
  font-weight: bold;
}

.orange-section p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.orange-section ul {
  list-style: none;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 16px;
}

.orange-section li {
  margin-bottom: 0;
}

.orange-section li strong {
  font-weight: bold;
}

.maintenance-process {
  padding-bottom: 70px;
}

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

.process-step {
  border: 3px solid #333;
  padding: 22px 18px;
  color: #111;
  background-color: rgba(255, 255, 255, 0.12);
  min-height: 170px;
}

.process-step h3 {
  color: #111;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.process-step p {
  color: #111;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 0;
}

.maintenance-process .cta-button {
  margin-top: 10px;
}

/* Form Section */
.form-section {
  padding: 80px 50px;
  background-color: #f9f9f9;
}

.form-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
  color: #333;
  font-weight: bold;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #F5A962;
  box-shadow: 0 0 5px rgba(245, 169, 98, 0.3);
}

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

.form-submit {
  background-color: #F5A962;
  color: #000;
  padding: 15px 40px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s;
}

.form-submit:hover {
  background-color: #E89A4B;
}

/* Footer */
footer {
  background-color: #2a2a2a;
  color: #fff;
  text-align: center;
  padding: 30px 50px;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    padding: 15px 20px;
    gap: 15px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

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

  .services-section,
  .content-section,
  .form-section,
  .renovation-page-content,
  .orange-section {
    padding: 40px 20px;
  }

  .services-section h2 {
    font-size: 32px;
  }

  .maintenance-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

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

  .carousel-button {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .renovation-grid,
  .maintenance-grid {
    padding: 0 20px;
  }

  .process-step {
    min-height: auto;
  }
}
