@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");

:root {
  --primary: #bbcf74;
  --secondary: #837a73;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  width: 100%;
}

a {
  text-decoration: none;
  color: white;
}

/* Top Bar */

.top-bar {
  background: #bccb62;
  color: white;
  height: 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 70px;
  font-size: 13px;
  letter-spacing: 1px;
}

.socials {
  display: flex;
  gap: 20px;
}

.top-links {
  display: flex;
  gap: 30px;
}

/* Hero */

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('images/hero_bg.png');
  background-size: cover;
  background-position: center;
  height: 60vh;
  min-height: 450px;
  color: white;
}

/* Navigation / Header */

#main-header {
  position: absolute;
  top: 40px; /* Below the top-bar */
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

#main-header.sticky {
  position: fixed;
  top: 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  color: #555;
}

#main-header.sticky .logo-box {
  border-color: #777;
  color: #777;
}

#main-header.sticky .logo h2,
#main-header.sticky .logo p {
  color: #555;
}

#main-header.sticky nav a, 
#main-header.sticky nav i {
  color: #555;
}

#main-header.sticky nav a:hover {
  color: var(--primary);
}

#main-header.sticky nav {
  padding: 15px 30px;
}

nav {
  max-width: 1300px;
  width: 100%;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 25px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-box {
  width: 60px;
  height: 60px;
  border: 3px solid white;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 34px;
  font-weight: 700;
}

.logo h2 {
  font-size: 34px;
  font-weight: 300;
  letter-spacing: 3px;
}

.logo span {
  font-weight: 700;
}

.logo p {
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.8;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
  align-items: center;
}

nav li {
  font-size: 15px;
  font-weight: 600;
}

nav a:hover {
  color: #bccb62;
}

/* Hero Content */

.hero-content {
  height: calc(60vh - 110px);
  min-height: 340px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  width: 100%;
}

.hero-content p {
  margin-top: 15px;

  font-size: 16px;
  font-weight: 600;
  max-width: 600px;
  line-height: 1.6;
}

.hero-content button {
  margin-top: 25px;

  padding: 12px 35px;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: #333;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.4s;
}

.hero-content button:hover {
  background: white;
  color: black;
}

/* Services Section */
.services {
  max-width: 1000px;
  margin: 100px auto;
  display: flex;
  gap: 60px;
  justify-content: center;
}

.service-card {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  margin-bottom: 30px;
}

.service-img-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid var(--primary);
  z-index: 1;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #555;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.service-card p {
  font-size: 15px;
  color: #777;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 30px;
}

.service-card button {
  padding: 12px 35px;
  border: none;
  background: #8d7e73;
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.service-card button:hover {
  background: #72655b;
}

/* Our Work */
.our-work {
  text-align: center;
  margin: 100px 0;
}

.our-work h2 {
  font-size: 36px;
  font-weight: 700;
  color: #555;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  gap: 20px;
  animation: marquee 20s linear infinite;
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-1260px); }
}

.work-item {
  position: relative;
  width: 400px;
  height: 300px;
  flex-shrink: 0;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-overlay {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
}

.work-overlay h4 {
  color: white;
  font-size: 20px;
  font-weight: 700;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

/* About */
.about {
  max-width: 1050px;
  margin: 100px auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #555;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.about-content p {
  font-size: 15px;
  color: #777;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-content button {
  padding: 12px 35px;
  border: none;
  background: #8d7e73;
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.about-content button:hover {
  background: #72655b;
}

.about-img-wrapper {
  flex: 1;
  position: relative;
}

.about-img-wrapper::after {
  content: '';
  position: absolute;
  top: -15px;
  left: 15px;
  right: -15px;
  bottom: 15px;
  border: 1px solid var(--primary);
  z-index: 1;
}

.about-img-wrapper img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

/* Our Process */
.process {
  background-color: #f9f9f9;
  padding: 40px 0;
  text-align: center;
  overflow: hidden;
}

.process-container {
  position: relative;
  max-width: 1400px;
  margin: 20px auto;
  height: 1050px;
}

.process-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  border: 15px solid #f9f9f9;
  box-shadow: 0 0 0 2px #ddd, 0 0 0 3px var(--primary); /* subtle outer ring to mimic the arrow circle */
}

.process-center h2 {
  color: white;
  font-size: 65px;
  font-weight: 700;
  line-height: 1.1;
}

.process-step {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 25px;
  width: 450px;
  top: 50%;
  left: 50%;
}

.process-step .icon {
  background-color: #8d7e73;
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  flex-shrink: 0;
  z-index: 5;
}

.process-step h4 {
  font-size: 24px;
  font-weight: 700;
  color: #555;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 16px;
  color: #777;
  line-height: 1.6;
}

.step-text.right-align {
  text-align: right;
}

.step-text.left-align {
  text-align: left;
}

.step-text.center-align {
  text-align: center;
}

/* Center-based positioning for perfect overlaps */
/* R = 275px, r_icon = 40px */
.step-1 { transform: translate(calc(-100% - 190px), calc(-50% - 180px)); }
.step-2 { transform: translate(190px, calc(-50% - 180px)); }
.step-3 { transform: translate(240px, calc(-50% - 10px)); }
.step-5 { transform: translate(calc(-100% - 210px), calc(-50% + 120px)); }
.step-4 { transform: translate(calc(-50%), calc(50% + 180px)); flex-direction: column; width: 450px; }

.call-today-btn {
  padding: 10px 30px;
  border: none;
  background: #8d7e73;
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 20px;
}

.call-today-btn:hover {
  background: #72655b;
}

/* Detailed Services Grids */
.detailed-services {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 30px;
}

.detailed-services h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #333;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-grid-card {
  position: relative;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.service-grid-card:hover {
  transform: translateY(-5px);
}

.service-grid-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.card-number {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 13px;
  z-index: 2;
}

.card-content {
  position: relative;
  z-index: 2;
  padding: 20px 15px;
}

.card-content h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.card-content p {
  font-size: 12px;
  line-height: 1.4;
  color: #eee;
}

@media (max-width: 1200px) {
  .service-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 650px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 450px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* Inner Service Pages */
.service-page-hero {
  height: 50vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0 30px;
}

.service-page-hero h1 {
  font-size: 32px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.service-page-hero button {
  background-color: #e55a29; /* Match orange from reference */
  color: white;
  border: none;
  padding: 15px 30px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
  letter-spacing: 1px;
}

.service-page-hero button:hover {
  background-color: #c44d22;
}

.service-page-content {
  max-width: 1300px;
  margin: 80px auto;
  padding: 0 30px;
  display: flex;
  gap: 80px;
}

.service-page-text {
  flex: 1.5;
}

.service-page-image {
  flex: 1;
}

.service-page-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.service-page-text h2 {
  color: var(--primary);
  font-size: 26px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.service-page-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.service-page-text h3 {
  font-size: 18px;
  color: #222;
  margin: 40px 0 20px;
  text-transform: uppercase;
}

.service-contact-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 15px 35px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 25px;
  transition: 0.3s;
}

.service-contact-btn:hover {
  background-color: #a3b85e;
}

@media (max-width: 950px) {
  .service-page-content {
    flex-direction: column;
  }
}

/* Process Pages */
.process-hero {
  height: 60vh;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}
.process-hero h1 {
  font-size: 32px;
  margin-bottom: 25px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.process-hero button {
  background-color: #e55a29;
  color: white;
  border: none;
  padding: 15px 30px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
}
.process-intro {
  text-align: center;
  padding: 80px 30px;
}
.process-intro span {
  font-style: italic;
  color: #777;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}
.process-intro h2 {
  font-size: 32px;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 60px;
}
.process-circles {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.process-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.process-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-steps {
  max-width: 1100px;
  margin: 0 auto 100px;
  padding: 0 30px;
}
.process-step-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}
.process-step-row:nth-child(even) {
  flex-direction: row-reverse;
}
.process-step-image, .process-step-text {
  flex: 1;
}
.process-step-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.process-step-text h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.process-step-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 14px;
}
@media (max-width: 850px) {
  .process-step-row, .process-step-row:nth-child(even) {
    flex-direction: column !important;
  }
}

/* Resources Pages */
.resource-page {
  padding: 80px 30px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.resource-intro h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.resource-intro p.bold-intro {
  font-weight: 700;
  text-transform: uppercase;
  color: #555;
  line-height: 1.6;
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.resource-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px 60px;
  margin-bottom: 80px;
  text-align: left;
}

.resource-grid-item h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}

.resource-grid-item p {
  color: #777;
  line-height: 1.8;
  font-size: 14px;
  text-align: justify;
}

.resource-full-width {
  text-align: left;
  max-width: 900px;
  margin: 0 auto 60px;
}

.resource-full-width h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}

.resource-full-width p {
  color: #777;
  line-height: 1.8;
  font-size: 14px;
  text-align: center;
}

.resource-footer-link {
  color: #777;
  font-size: 14px;
  margin-bottom: 40px;
}
.resource-footer-link a {
  color: var(--primary);
  text-decoration: none;
}

@media (max-width: 768px) {
  .resource-grid {
    grid-template-columns: 1fr;
  }
}

/* Feature Pages (Fire Features & Patio Landscaping) */
.feature-hero {
  height: 60vh;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}
.feature-hero h1 {
  font-size: 32px;
  margin-bottom: 25px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.feature-hero button {
  background-color: #e55a29;
  color: white;
  border: none;
  padding: 15px 30px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
}

.feature-intro {
  text-align: center;
  padding: 80px 30px 40px;
}
.feature-intro span {
  font-style: italic;
  color: #777;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}
.feature-intro h2 {
  font-size: 32px;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.feature-intro p {
  color: #777;
  font-size: 14px;
}

.feature-row {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.feature-row.reverse {
  flex-direction: row-reverse;
}
.feature-text, .feature-image {
  flex: 1;
}
.feature-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.feature-text h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.feature-text p {
  color: #666;
  line-height: 1.8;
  font-size: 14px;
}

.feature-gallery {
  text-align: center;
  padding: 40px 30px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-gallery h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.feature-gallery p {
  color: #777;
  font-size: 14px;
  margin-bottom: 10px;
}
.feature-gallery a {
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 40px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}
.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.gallery-col img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.feature-contact {
  background-color: #f4f4f4;
  padding: 80px 30px;
  text-align: center;
}
.feature-contact h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.feature-contact p {
  color: #777;
  font-size: 14px;
  margin-bottom: 40px;
}
.contact-form {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 12px;
  color: #333;
  margin-bottom: 5px;
  font-weight: 600;
}
.form-row {
  display: flex;
  gap: 20px;
}
.form-row .form-group {
  flex: 1;
}
.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}
textarea.form-control {
  height: 150px;
  resize: vertical;
}
.submit-btn {
  background-color: #a3b85e;
  color: white;
  border: none;
  padding: 12px 30px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  text-transform: uppercase;
}

@media (max-width: 850px) {
  .feature-row {
    flex-direction: column !important;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* Why Choose Us Page */
.why-hero {
  height: 40vh;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 20px;
}
.why-hero button {
  background-color: #e55a29;
  color: white;
  border: none;
  padding: 12px 30px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
}

.why-intro {
  text-align: center;
  padding: 80px 30px 40px;
}
.why-intro h2 {
  font-size: 28px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 40px;
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0 30px;
}

.reason-item {
  display: flex;
  gap: 20px;
}

.reason-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #a3b85e;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 24px;
}

.reason-text h3 {
  font-size: 18px;
  color: #333;
  margin-top: 0;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.reason-text p {
  color: #777;
  line-height: 1.8;
  font-size: 14px;
}

@media (max-width: 850px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* Project Portfolio Page */
.portfolio-section {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 30px;
}
.portfolio-section h2 {
  font-size: 24px;
  color: #555;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.recent-highlight img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.award-winners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.award-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.award-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.award-item-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  transition: background-color 0.3s ease;
}
.award-item:hover .award-item-overlay {
  background-color: rgba(0, 0, 0, 0.2);
}
.award-item-overlay h3 {
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
}

@media (max-width: 850px) {
  .award-winners-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  background-color: #5c544d;
  color: #dcdcdc;
  padding: 80px 0 0;
  font-size: 14px;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding: 0 30px 60px;
}

.brand-col {
  flex: 1.5;
}

.footer-col {
  flex: 1;
}

.counties-col {
  flex: 1.8;
}

.footer-logo {
  color: white;
  font-size: 20px;
  font-style: italic;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-logo span {
  color: white;
}

.brand-col p {
  margin-bottom: 25px;
  line-height: 1.6;
}

.footer-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 30px; /* Pillow shape like 2nd pic */
  cursor: pointer;
  transition: 0.3s;
}

.footer-btn:hover {
  background-color: #a3b85e;
}

.footer-col h4 {
  color: white;
  font-size: 15px;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: #dcdcdc;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: white;
}

.counties-grid {
  display: flex;
  gap: 40px;
}

.counties-grid ul {
  flex: 1;
}

.footer-socials {
  margin-top: 30px;
  display: flex;
  gap: 12px;
}

.footer-socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: white;
  font-size: 15px;
  transition: 0.3s;
}

.footer-socials a:hover {
  background-color: var(--primary);
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  font-size: 13px;
  color: #bbb;
}

/* Mobile Menu */

.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

#main-header.sticky .burger {
  color: #555;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #222;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: 0.4s ease-in-out;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.mobile-menu::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #333;
}

.mobile-menu-header .logo-box {
  border-color: white;
  color: white;
}

.mobile-menu-header .logo h2, 
.mobile-menu-header .logo p {
  color: white;
}

.close-btn {
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0 30px;
}

.mobile-nav-links li {
  border-bottom: 1px solid #333;
}

.mobile-nav-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  color: #aaa;
  font-size: 16px;
  font-weight: 500;
}

.mobile-nav-links a i {
  color: var(--primary);
  font-size: 14px;
}

.mobile-search {
  padding: 20px 30px;
  position: relative;
  border-bottom: 1px solid #333;
}

.mobile-search input {
  width: 100%;
  background: #111;
  border: 1px solid #333;
  padding: 15px 20px;
  color: white;
  font-family: inherit;
}

.mobile-search i {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
}

/* Responsive Overrides */
@media (max-width: 1050px) {
  .desktop-menu {
    display: none !important;
  }
  .burger {
    display: block;
  }
  nav {
    padding: 25px 30px;
  }
}

/* Dropdown styles */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: flex !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(15px);
  transition: all 0.4s ease;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 280px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 0;
  flex-direction: column !important;
  gap: 0 !important;
  border-top: 2px solid var(--primary);
}

.nav-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu > li {
  width: 100%;
  border-bottom: 1px solid #eee;
  position: relative;
}

/* Ensure dropdown links appear in grey even when header is transparent */
#main-header nav .dropdown-menu a {
  color: #777;
}

.dropdown-menu > li > a {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.3s;
  font-size: 14px;
}

.dropdown-menu > li > a:hover {
  background: #f9f9f9;
  color: var(--primary) !important;
}

.sub-dropdown-menu {
  display: flex !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(15px);
  transition: all 0.4s ease;
  position: absolute;
  top: 0;
  left: 100%;
  background: white;
  min-width: 250px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 0;
  flex-direction: column !important;
  gap: 0 !important;
  border-top: 2px solid var(--primary);
}

.nav-sub-dropdown:hover > .sub-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.sub-dropdown-menu > li {
  width: 100%;
  border-bottom: 1px solid #eee;
}

.sub-dropdown-menu > li > a {
  display: block;
  padding: 12px 20px;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  transition: 0.3s;
}

.sub-dropdown-menu > li > a:hover {
  background: #f9f9f9;
  color: var(--primary) !important;
}

/* Home Process Section */
.home-process-wrapper {
  background-color: #1a1a1a;
  background-image: repeating-linear-gradient(45deg, #151515 0, #151515 5px, #1a1a1a 5px, #1a1a1a 10px);
  padding: 80px 20px;
}

.home-process {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.process-card {
  background-color: white;
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.process-icon {
  width: 45px;
  height: 45px;
  background-color: #f7f7f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #333;
  font-size: 16px;
}

.process-card h4 {
  color: #ff5722;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.process-card p {
  color: #777;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .home-process {
    grid-template-columns: 1fr;
  }
}

/* Mobile Menu Dropdowns */
.mobile-dropdown-menu {
  display: none;
  padding-left: 20px;
  list-style: none;
  margin-top: 10px;
}
.mobile-dropdown.open > .mobile-dropdown-menu,
.mobile-sub-dropdown.open > .mobile-dropdown-menu {
  display: block;
}
.mobile-toggle i {
  float: right;
  transition: transform 0.3s ease;
}
.mobile-dropdown.open > .mobile-toggle i,
.mobile-sub-dropdown.open > .mobile-toggle i {
  transform: rotate(180deg);
}
.mobile-dropdown-menu a {
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #ddd !important;
  padding: 8px 0 !important;
}
