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

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #1d1d1d;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

/* Header */

.navbar {
  width: 100%;
  padding: 26px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  white-space: nowrap;
}

.logo span {
  color: #b1782b;
}

.nav-links {
  display: flex;
  gap: 42px;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-size: 15px;
  font-weight: 600;
}

.contact-btn {
  background: #a87026;
  color: #fff;
  padding: 14px 24px;
  border-radius: 28px;
  font-weight: 700;
}

/* Hero */

.hero-top-badge {
  position: absolute;
  top: 62px;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.canadian-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}


.hero-section {
  padding: 0 18px;
  position: relative;
}

.hero-image {
  height: 720px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.62),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.05)
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  left: 9%;
  top: 28%;
  color: #fff;
  max-width: 650px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 76px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -3px;
  margin-bottom: 28px;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  max-width: 620px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
}

.primary-btn,
.secondary-btn {
  padding: 18px 30px;
  border-radius: 35px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.primary-btn {
  background: #fff;
  color: #111;
}

.secondary-btn {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 2px solid #fff;
}

/* Who Card */

.mini-service-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.mini-service-card h4 {
  color: #b1782b;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 8px;
  font-weight: 800;
}

.mini-service-card p {
  font-size: 14px;
  line-height: 1.45;
  color: #222222;
  font-weight: 600;
}

.image-card:not(.wide) .mini-service-card {
  height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.who-card {
  position: absolute;
  right: 46px;
  bottom: -8px;
  width: 480px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  padding: 34px 32px;
  border-radius: 28px 0 28px 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.who-card h2 {
  font-size: 38px;
  margin-bottom: 14px;
}

.who-card p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 26px;
}

.stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.stats div {
  flex: 1;
  border-right: 1px solid #aaa;
}

.stats div:last-child {
  border-right: none;
}

.stats h3 {
  color: #a87026;
  font-size: 34px;
  margin-bottom: 4px;
}

.stats span {
  font-size: 13px;
}

/* Property Match */

.property-match {
  padding: 90px 24px 30px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 50px;
  line-height: 1.15;
  letter-spacing: -2px;
}

.section-heading h2 span {
  color: #a87026;
}

.section-heading p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 680px;
  font-weight: 500;
}

.property-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.main-property-card,
.image-card,
.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.main-property-card {
  height: 700px;
}

.main-property-card img {
  height: 100%;
}

.heart-btn {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  color: #a87026;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.price-card {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 32px;
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 30px 32px;
  display: block;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.price-card h3 {
  color: #a87026;
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.price-card p {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
  color: #222222;
  max-width: 620px;
}

.property-info {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  text-align: center;
}

.property-info span {
  font-size: 16px;
  font-weight: 700;
}

.property-info small {
  font-size: 12px;
  font-weight: 500;
}

.arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #a87026;
  color: #fff;
  font-size: 24px;
}

.small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.image-card {
  height: 330px;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.image-card img {
  height: 100%;
}

.image-card.wide {
  grid-column: span 2;
  height: 346px;
}

/* About */

.about-section {
  margin: 0 24px;
  background: #121212;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
}

.about-text {
  color: #fff;
  padding: 58px 42px;
}

.about-text h2 {
  font-size: 48px;
  margin-bottom: 30px;
}

.about-text h2 span {
  color: #a87026;
}

.about-text p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.about-image img {
  height: 100%;
}

/* Showcase */

.showcase-section {
  padding: 36px 18px 60px;
  text-align: center;
}

.showcase-section h2 {
  font-size: 46px;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.tabs button {
  padding: 12px 22px;
  border-radius: 24px;
  background: transparent;
  color: #333;
  font-weight: 700;
}

.tabs button.active {
  background: #a87026;
  color: #fff;
}

.search-box {
  display: flex;
  align-items: center;
  background: #f2f2f2;
  border-radius: 24px;
  overflow: hidden;
  padding-left: 18px;
}

.search-box input {
  height: 42px;
  border: none;
  outline: none;
  background: transparent;
  width: 220px;
}

.search-box button {
  background: #a87026;
  color: #fff;
  height: 42px;
  width: 48px;
  border-radius: 50%;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: left;
}

.showcase-card {
  height: 235px;
}

.showcase-card img {
  height: 100%;
}

.showcase-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 14px;
}

.showcase-info h4 {
  margin-bottom: 10px;
}

.showcase-info div {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
}

.showcase-info small {
  font-size: 11px;
  font-weight: 500;
}

.dots {
  margin-top: 20px;
}

.dots span {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #d4d4d4;
  border-radius: 50%;
  margin: 0 4px;
}

.dots .active-dot {
  background: #111;
}

/* Responsive */

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 56px;
  }

  .who-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 40px);
    margin: -70px auto 0;
  }

  .section-heading,
  .property-grid,
  .about-section {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {


.mini-service-card {
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 14px;
}

.mini-service-card h4 {
  font-size: 20px;
}

.mini-service-card p {
  font-size: 13px;
}


  .contact-hero-page {
  padding: 0 12px 30px;
}

.contact-hero-bg {
  min-height: auto;
  border-radius: 22px;
}

.contact-page-badge {
  top: 28px;
  font-size: 14px;
  padding: 8px 16px;
  white-space: nowrap;
}

.contact-hero-content {
  min-height: auto;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 90px 22px 30px;
}

.contact-info-panel h1 {
  font-size: 42px;
  letter-spacing: -1.5px;
}

.contact-info-panel p {
  font-size: 16px;
}

.contact-mini-stats {
  flex-direction: column;
  gap: 14px;
}

.contact-form-panel {
  padding: 30px 22px;
  border-radius: 22px;
}

.contact-form-panel h2 {
  font-size: 34px;
}

.premium-submit-btn {
  font-size: 16px;
}

  .contact-page-section {
  padding: 50px 16px;
  min-height: auto;
}

.contact-card {
  padding: 40px 24px 45px;
}

.contact-card h1 {
  font-size: 40px;
  margin-bottom: 40px;
}

.simple-form-group {
  margin-bottom: 34px;
}

.simple-form-group label {
  font-size: 16px;
}

.simple-form-group input,
.simple-form-group textarea {
  font-size: 16px;
}

.simple-submit-btn {
  width: 100%;
  max-width: 240px;
  font-size: 20px;
}

  .hero-buttons {
  flex-direction: column;
  align-items: flex-start;
}

.primary-btn,
.secondary-btn {
  width: 100%;
  max-width: 310px;
}

  .logo {
    font-size: 15px;
  }
  .navbar {
    padding: 20px;
  }

  .nav-links {
    display: none;
  }

  .hero-image {
    height: 620px;
  }

  .hero-content {
    left: 32px;
    right: 32px;
    top: 22%;
  }

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

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

  .who-card {
    width: calc(100% - 24px);
    padding: 26px;
  }

  .stats {
    flex-direction: column;
  }

  .stats div {
    border-right: none;
    border-bottom: 1px solid #ddd;
    padding-bottom: 14px;
  }

  .section-heading h2,
  .showcase-section h2,
  .about-text h2 {
    font-size: 36px;
  }

  .main-property-card {
    height: 560px;
  }

  .price-card {
  left: 18px;
  right: 18px;
  padding: 24px;
}

.price-card h3 {
  font-size: 26px;
}

.price-card p {
  font-size: 15px;
}

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

  .image-card.wide {
    grid-column: span 1;
  }

  .tabs {
    flex-wrap: wrap;
  }

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

/* Contact Page - Premium Home Page Style */

.logo {
  text-decoration: none;
  color: #111111;
}

.contact-btn,
.primary-btn,
.secondary-btn {
  text-decoration: none;
}

.contact-hero-page {
  padding: 0 18px 40px;
  background: #ffffff;
}

.contact-hero-bg {
  min-height: 760px;
  border-radius: 28px;
  overflow: hidden;
  background-image: url("../assets/images/contact.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.68),
    rgba(0, 0, 0, 0.34),
    rgba(0, 0, 0, 0.12)
  );
  z-index: 1;
}

.contact-page-badge {
  position: absolute;
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 46px;
  align-items: center;
  padding: 120px 70px 70px;
}

.contact-info-panel {
  color: #ffffff;
  max-width: 720px;
}

.contact-info-panel h1 {
  font-size: 76px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -3px;
  margin-bottom: 28px;
}

.contact-info-panel p {
  font-size: 20px;
  line-height: 1.55;
  font-weight: 600;
  max-width: 650px;
  margin-bottom: 36px;
}

.contact-mini-stats {
  display: flex;
  gap: 24px;
  max-width: 680px;
}

.contact-mini-stats div {
  flex: 1;
  padding: 22px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.contact-mini-stats h3 {
  font-size: 34px;
  color: #ffffff;
  margin-bottom: 5px;
}

.contact-mini-stats span {
  font-size: 13px;
  color: #eeeeee;
  font-weight: 600;
}

.contact-form-panel {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 42px 38px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.contact-form-panel h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  color: #1d1d1d;
}

.premium-contact-form {
  width: 100%;
}

.premium-form-group {
  margin-bottom: 18px;
}

.premium-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #222222;
  margin-bottom: 8px;
}

.premium-form-group input,
.premium-form-group select,
.premium-form-group textarea {
  width: 100%;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 15px;
  padding: 15px 16px;
  font-size: 15px;
  font-family: inherit;
  color: #222222;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
}

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

.premium-submit-btn {
  width: 100%;
  background: #b1782b;
  color: #ffffff;
  padding: 17px 26px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 800;
  margin-top: 8px;
  transition: 0.25s ease;
}

.premium-submit-btn:hover {
  background: #94611f;
  transform: translateY(-1px);
}


.showcase-section h2 {
  margin-bottom: 45px;
}

.showcase-grid {
  margin-top: 0;
}


.wide-service-overlay {
  height: 135px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.wide-service-overlay > div {
  width: 100%;
}

.wide-service-overlay h3,
.wide-service-overlay h4 {
  margin: 0 0 10px 0;
}

.wide-service-overlay p {
  margin: 0;
  width: 100%;
  display: block;
}

.wide-service-overlay > div {
  width: 100%;
}

.wide-service-overlay h3,
.wide-service-overlay h4 {
  margin-bottom: 10px;
}

.wide-service-overlay p {
  margin: 0;
}


/* Before / After Project Showcase Slider */

.showcase-card.before-after-card {
  position: relative;
  overflow: hidden;
  height: 240px;
  border-radius: 28px;
  --position: 50%;
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before {
  z-index: 1;
}

.ba-after {
  z-index: 2;
  clip-path: inset(0 0 0 var(--position));
}

.ba-line {
  position: absolute;
  top: 0;
  left: var(--position);
  width: 3px;
  height: 100%;
  background: #ffffff;
  transform: translateX(-50%);
  z-index: 4;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: var(--position);
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: #b87922;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  z-index: 5;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 6;
}

.ba-label {
  position: absolute;
  top: 18px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.ba-label-left {
  left: 18px;
}

.ba-label-right {
  right: 18px;
}

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

  .showcase-card.before-after-card {
    height: 230px;
  }
}

@media (max-width: 600px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card.before-after-card {
    height: 260px;
  }
}


/* Floating WhatsApp Button */

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 62px;
  height: 62px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
}

.whatsapp-icon {
  width: 34px;
  height: 34px;
  fill: #ffffff;
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-icon {
    width: 31px;
    height: 31px;
  }
}


/* Make Project Showcase sliders 2 per row and bigger */

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  padding: 0 28px;
}

.showcase-card.before-after-card {
  height: 330px;
  border-radius: 28px;
}

.ba-slider {
  border-radius: 28px;
}

.showcase-section {
  padding-bottom: 70px;
}

/* Tablet */
@media (max-width: 900px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 0 20px;
  }

  .showcase-card.before-after-card {
    height: 280px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 18px;
  }

  .showcase-card.before-after-card {
    height: 300px;
  }
}


/* Make Project Showcase sliders taller */

.showcase-card.before-after-card {
  height: 390px;
}

/* Tablet */
@media (max-width: 900px) {
  .showcase-card.before-after-card {
    height: 330px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .showcase-card.before-after-card {
    height: 340px;
  }
}


/* Google Reviews Section */

.google-reviews-section {
  padding: 90px 6% 100px;
  background: #ffffff;
}

.google-reviews-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.google-badge {
  display: inline-block;
  background: rgba(184, 121, 34, 0.12);
  color: #b87922;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 18px;
}

.google-reviews-header h2 {
  font-size: 48px;
  line-height: 1.05;
  color: #161616;
  margin-bottom: 16px;
}

.google-reviews-header p {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
}

.google-rating {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 16px;
  color: #333;
}

.google-rating .stars {
  color: #fbbc04;
  font-size: 24px;
  letter-spacing: 2px;
}

.google-rating strong {
  font-size: 22px;
  color: #161616;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.09);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #b87922;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
}

.review-top h4 {
  font-size: 18px;
  color: #161616;
  margin-bottom: 4px;
}

.review-top span {
  font-size: 13px;
  color: #777;
  font-weight: 600;
}

.review-stars {
  color: #fbbc04;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card p {
  font-size: 15.5px;
  line-height: 1.65;
  color: #333;
  font-weight: 500;
}

.google-review-cta {
  text-align: center;
  margin-top: 42px;
}

.google-review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b87922;
  color: #ffffff;
  padding: 17px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.3s ease;
}

.google-review-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(184, 121, 34, 0.35);
}

/* Tablet */
@media (max-width: 900px) {
  .google-reviews-header h2 {
    font-size: 40px;
  }

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

/* Mobile */
@media (max-width: 600px) {
  .google-reviews-section {
    padding: 70px 22px 90px;
  }

  .google-reviews-header h2 {
    font-size: 34px;
  }

  .review-card {
    padding: 26px;
  }
}


/* Fix Who We Are card position inside hero image */

.hero-section {
  position: relative;
}

.who-card {
  bottom: 28px !important;
  right: 60px;
}


@media (max-width: 900px) {
  .who-card {
    position: relative;
    right: auto;
    bottom: auto !important;
    margin: 25px auto 0;
    width: calc(100% - 40px);
  }
}

.logo img {
  height: 70px;
  max-width: 280px;
  object-fit: contain;
}


.logo {
  display: flex;
  align-items: center;
}


/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: none;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: #222;
  text-decoration: none;
  font-weight: 500;
}

.dropdown-content a:hover {
  background: #f5f5f5;
}

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


html {
  scroll-behavior: smooth;
}





.google-review-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.google-review-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.google-review-btn {
    margin: 0 auto;
}



/* How It Works Section */

.process-section {
  padding: 90px 6% 80px;
  background: #ffffff;
}

.process-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px;
}

.process-badge {
  display: inline-block;
  background: rgba(184, 121, 34, 0.12);
  color: #b87922;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

.process-header h2 {
  font-size: 48px;
  line-height: 1.08;
  color: #161616;
  margin-bottom: 16px;
}

.process-header h2 span {
  color: #b87922;
}

.process-header p {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.process-card {
  position: relative;
  background: #ffffff;
  border-radius: 26px;
  padding: 34px 24px 32px;
  text-align: center;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.13);
}

.process-number {
  width: 54px;
  height: 54px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #b87922;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(184, 121, 34, 0.35);
}

.process-card h3 {
  font-size: 20px;
  color: #161616;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #5a5a5a;
}

/* Tablet */
@media (max-width: 1100px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .process-section {
    padding: 70px 20px 60px;
  }

  .process-header h2 {
    font-size: 36px;
  }

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

  .process-card {
    padding: 30px 24px;
  }
}



/* Service Areas Section */

.service-areas-section {
  padding: 80px 6% 90px;
  background: #f8f5f0;
}

.service-areas-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  border-radius: 30px;
  padding: 58px 44px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-areas-badge {
  display: inline-block;
  background: rgba(184, 121, 34, 0.12);
  color: #b87922;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

.service-areas-content h2 {
  font-size: 48px;
  line-height: 1.08;
  color: #161616;
  margin-bottom: 16px;
}

.service-areas-content h2 span {
  color: #b87922;
}

.service-areas-content p {
  max-width: 720px;
  margin: 0 auto 34px;
  font-size: 17px;
  line-height: 1.65;
  color: #555;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.areas-list span {
  background: #ffffff;
  color: #252525;
  border: 1px solid rgba(184, 121, 34, 0.25);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

/* Mobile */
@media (max-width: 768px) {
  .service-areas-section {
    padding: 60px 20px 70px;
  }

  .service-areas-content {
    padding: 42px 22px;
    border-radius: 24px;
  }

  .service-areas-content h2 {
    font-size: 36px;
  }

  .service-areas-content p {
    font-size: 15px;
  }

  .areas-list {
    gap: 10px;
  }

  .areas-list span {
    font-size: 14px;
    padding: 10px 14px;
  }
}


/* FAQ Section */

.faq-section {
  padding: 90px 6% 100px;
  background: #ffffff;
}

.faq-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}

.faq-badge {
  display: inline-block;
  background: rgba(184, 121, 34, 0.12);
  color: #b87922;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

.faq-header h2 {
  font-size: 48px;
  line-height: 1.08;
  color: #161616;
  margin-bottom: 16px;
}

.faq-header h2 span {
  color: #b87922;
}

.faq-header p {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
}

.faq-container {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.faq-item {
  background: #ffffff;
  border-radius: 22px;
  padding: 0 26px;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 800;
  color: #161616;
  position: relative;
  padding-right: 42px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(184, 121, 34, 0.12);
  color: #b87922;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 0 24px;
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: #555;
  max-width: 850px;
}

/* Mobile */
@media (max-width: 768px) {
  .faq-section {
    padding: 70px 20px 80px;
  }

  .faq-header h2 {
    font-size: 36px;
  }

  .faq-header p {
    font-size: 15px;
  }

  .faq-item {
    padding: 0 20px;
    border-radius: 18px;
  }

  .faq-item summary {
    font-size: 16px;
    padding: 22px 38px 22px 0;
  }

  .faq-item p {
    font-size: 14.5px;
  }
}



/* Homepage Quote Form Section - Clean Version */

.home-quote-section {
  padding: 90px 6% 100px;
  background: #ffffff;
}

.home-quote-form-card {
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 32px;
  padding: 56px 48px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.09);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.home-quote-badge {
  display: inline-block;
  background: rgba(184, 121, 34, 0.12);
  color: #b87922;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

.home-quote-form-card h2 {
  font-size: 48px;
  line-height: 1.08;
  color: #161616;
  margin-bottom: 16px;
}

.home-quote-form-card h2 span {
  color: #b87922;
}

.home-quote-form-card > p {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.65;
  color: #555;
  margin-bottom: 36px;
}

.home-quote-form {
  display: grid;
  gap: 20px;
}

.quote-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.quote-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #222;
  margin-bottom: 8px;
}

.quote-form-group label span {
  color: #777;
  font-weight: 600;
}

.quote-form-group input,
.quote-form-group select,
.quote-form-group textarea {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 15px;
  color: #222;
  background: #f7f7f7;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

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

.quote-form-group input::placeholder,
.quote-form-group textarea::placeholder {
  color: #999;
}

.quote-form-group input[type="file"] {
  background: #f7f7f7;
  cursor: pointer;
}

.home-quote-submit {
  margin-top: 8px;
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 17px 26px;
  background: #b87922;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
}

.home-quote-submit:hover {
  background: #9f671c;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(184, 121, 34, 0.35);
}

/* Mobile */
@media (max-width: 768px) {
  .home-quote-section {
    padding: 70px 20px 80px;
  }

  .home-quote-form-card {
    padding: 38px 22px;
    border-radius: 24px;
  }

  .home-quote-form-card h2 {
    font-size: 36px;
  }

  .home-quote-form-card > p {
    font-size: 15px;
  }

  .quote-form-row {
    grid-template-columns: 1fr;
  }
}


/* Match Quote Form background with Areas We Serve section */

.home-quote-section {
  background: #f8f5f0;
}


/* Center Quote Form Heading Like FAQ and Service Areas */

.home-quote-form-card {
  text-align: center;
}

.home-quote-form-card .home-quote-badge {
  margin-left: auto;
  margin-right: auto;
}

.home-quote-form-card h2 {
  text-align: center;
}

.home-quote-form-card > p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Keep form fields and labels left aligned */
.home-quote-form {
  text-align: left;
}


/* Footer Section */

.site-footer {
  background: #111111;
  color: #ffffff;
  padding: 70px 6% 28px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr 1fr;
  gap: 38px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-brand h3 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  color: #cfcfcf;
  max-width: 320px;
  margin-bottom: 22px;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact a,
.footer-column a {
  color: #d6d6d6;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.footer-contact a:hover,
.footer-column a:hover {
  color: #b87922;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-column p {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.footer-bottom {
  max-width: 1280px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom p {
  color: #cfcfcf;
  font-size: 14px;
  margin: 0;
}

.footer-bottom a {
  color: #d6d6d6;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom a:hover {
  color: #b87922;
}

/* Tablet */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: span 2;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .site-footer {
    padding: 58px 22px 26px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-brand h3 {
    font-size: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 36px;
  }
}