:root {
  --primary: #355C5A;
  --primary-dark: #234240;
  --secondary: #C79A56;
  --gold: #D8B06A;
  --cream: #F7F3EC;
  --light: #FBFBFB;
  --white: #ffffff;
  --black: #1D1D1D;
  --text: #70807F;
  --border: rgba(199, 154, 86, .16);
  --shadow: 0 25px 80px rgba(35, 66, 64, .14);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: var(--primary-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.btn-main,
.quote-btn,
.section-tag {
  font-family: "Barlow", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all .3s ease;
}

img {
  max-width: 100%;
  display: block;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--primary-dark);
  display: grid;
  place-items: center;
  transition: opacity .5s ease, visibility .5s ease;
}

.loaded .preloader {
  opacity: 0;
  visibility: hidden;
}

.door-loader {
  width: 70px;
  height: 70px;
  border: 5px solid rgba(255,255,255,.2);
  border-top-color: var(--secondary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.section-pad {
  padding: 110px 0;
  position: relative;
}

.section-tag {
  color: var(--secondary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.section-tag::before {
  content: "";
  width: 34px;
  height: 3px;
  background: currentColor;
}

.center-tag {
  justify-content: center;
}

.center-tag::after {
  content: "";
  width: 34px;
  height: 3px;
  background: currentColor;
}

.section-title {
  color: var(--primary);
  font-size: clamp(34px, 4vw, 58px);
  line-height: .98;
  font-weight: 900;
  margin: 0 0 22px;
}

.lead-text {
  /* max-width: 680px; */
  color: var(--text);
  font-size: 18px;
  line-height: 1.8;
}

.btn-main,
.quote-btn,
.phone-btn,
.btn-outline-light,
.join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  font-weight: 700;
  font-size: 1.3em;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.btn-main,
.quote-btn {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(241, 107, 40, .26);
}

.btn-main:hover,
.quote-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
}

.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.78);
  padding: 12px 0;
  font-size: 14px;
}

.topbar-info,
.topbar-social {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar i {
  color: var(--secondary);
 
}

.topbar-social a {
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(255,255,255,.08);
}

.topbar-social a:hover {
  background: var(--secondary);
}

.site-header {
  position: relative;
  z-index: 50;
}

.main-nav {
  background: rgba(255,255, 255, 1);
  min-height: 92px;
  box-shadow: 0 12px 40px rgba(7,31,45,.08);
  transition: all .3s ease;
}

.main-nav.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: stickyDown .35s ease both;
}

@keyframes stickyDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 25px;
  font-weight: 900;
  color: var(--primary);
}

.logo-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--secondary);
  color: var(--white);
  clip-path: polygon(50% 0, 100% 28%, 100% 100%, 0 100%, 0 28%);
}

.logo-text {
  line-height: .9;
}

.logo-text strong {
  display: block;
  font-size: 15px;
  color: var(--secondary);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-family: "Barlow", sans-serif;
  color: var(--primary);
  font-weight: 800;
  padding: 35px 16px !important;
  text-transform: uppercase;
  font-size: 15px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.show {
  color: var(--secondary);
}

.dropdown-menu {
  border: 0;
  border-radius: 0;
  box-shadow: var(--shadow);
  padding: 14px 0;
  min-width: 230px;
}

.dropdown-item {
  font-weight: 700;
  padding: 11px 22px;
  color: var(--primary);
}

.dropdown-item:hover {
  color: var(--white);
  background: var(--secondary);
}

.mega-menu {
  columns: 2;
  min-width: 420px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-btn {
  color: var(--primary);
  background: var(--cream);
  gap: 8px;
}

.phone-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.navbar-toggler {
  border: 0;
  color: var(--primary);
  font-size: 26px;
  box-shadow: none !important;
}

.hero-section {
  position: relative;
}

.hero-slide {
  min-height: 790px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 31, 29, 0.8),  rgba(35,66,64,.7), rgba(64, 95, 94, 0.5));
}

.hero-content {
  position: relative;
  max-width: 820px;
  color: var(--white);
  padding-top: 60px;
}

.hero-sub {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Barlow", sans-serif;
  color: var(--secondary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}

.hero-sub::before {
  content: "";
  width: 46px;
  height: 4px;
  background: var(--secondary);
}

.hero-content h1 {
  font-size: clamp(46px, 6vw, 92px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
}

.hero-content p {
  color: rgba(255,255,255,.82);
  font-size: 19px;
  line-height: 1.8;
  max-width: 660px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
  width: 58px;
  height: 58px;
  background: var(--white);
  color: var(--primary);
  transition: all .3s ease;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
  background: var(--secondary);
  color: var(--white);
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 900;
}

.heroSwiper .swiper-pagination-bullet {
  background: var(--white);
  opacity: .45;
}

.heroSwiper .swiper-pagination-bullet-active {
  background: var(--secondary);
  opacity: 1;
}

.hero-side-card {
  position: absolute;
  right: 5%;
  bottom: -46px;
  z-index: 3;
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow);
  padding: 28px 30px;
  width: 280px;
  border-left: 6px solid var(--secondary);
}

.hero-side-card i {
  font-size: 34px;
  color: var(--secondary);
  margin-bottom: 12px;
}

.hero-side-card strong,
.hero-side-card span {
  display: block;
}

.hero-side-card strong {
  font-family: "Barlow", sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.hero-side-card span {
  color: var(--text);
}

.feature-strip {
  padding-top: 84px;
  background: var(--cream);
}

.feature-row {
  transform: translateY(0);
  box-shadow: var(--shadow);
}

.feature-box {
  background: var(--white);
  padding: 38px 28px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.feature-box::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(42, 114, 96, 0.08);
  right: -35px;
  bottom: -35px;
  transition: all .4s ease;
}

.feature-box:hover::after {
  transform: scale(1.6);
}

.feature-box i {
  font-size: 42px;
  color: var(--secondary);
  margin-bottom: 16px;
}

.feature-box h4 {
  font-weight: 900;
  color: var(--primary);
}

.feature-box p {
  margin: 0;
  color: var(--text);
}
.feature-box{
    background: var(--white);
    padding: 38px 28px;
    border-right: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

/* الدايرة */
.feature-box::after{
    content:"";
    position:absolute;
    width:100px;
    height:100px;
    border-radius:50%;
    background:rgba(42,114,96,.08);
    right:-35px;
    bottom:-35px;
    transition:.45s ease;
}

.feature-box:hover::after{
    transform:scale(1.9);
    background:rgba(199,154,86,.16);
}

/* زرار Call */
.call-hover{
    position:absolute;
    right:8px;
    bottom:8px;

    width:120px;
    height:120px;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
    color:#C79A56;
    font-size:18px;
    font-weight:900;
    letter-spacing:2px;

    opacity:0;
    transform:scale(.5) rotate(0deg);

    border:2px dashed rgba(199,154,86,.45);
    background:rgba(255,255,255,.55);
    backdrop-filter:blur(4px);

    transition:.45s ease;
    z-index:3;
}

.feature-box:hover .call-hover{
    opacity:1;
    transform:
        scale(1)
        rotate(360deg);
}


.about-section {
  background: var(--cream);
}

.about-image-wrap {
  position: relative;
  padding-right: 70px;
  padding-bottom: 80px;
}

.about-main {
  width: 86%;
  height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-main2 {
  width: 100%;
  height: 580px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 270px;
  object-fit: cover;
  border: 12px solid var(--cream);
}

.about-small2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 400px;
  object-fit: cover;
  border: 12px solid var(--cream);
}

.experience-card {
  position: absolute;
  left: 30px;
  bottom: 38px;
  background: var(--secondary);
  color: var(--white);
  padding: 26px 34px;
  box-shadow: 0 18px 40px rgba(241,107,40,.26);
}

.experience-card strong {
  display: block;
  font-family: "Barlow", sans-serif;
  font-size: 48px;
  line-height: 1;
}

.experience-card span {
  display: block;
  max-width: 110px;
  font-weight: 700;
}

.about-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.about-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--primary);
  font-weight: 700;
}

.about-list i {
  color: var(--secondary);
  margin-top: 4px;
}

.services-section {
  background: var(--primary-dark);
  overflow: hidden;
}

.services-section::before {
  content: "SERVICES";
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Barlow", sans-serif;
  font-size: 160px;
  font-weight: 900;
  letter-spacing: .06em;
  color: rgba(255,255,255,.035);
}

/* Equal height service cards */
.services-section .row.g-4 > [class*="col-"] {
  display: flex;
}

.service-card {
  background: var(--white);
  padding: 42px 30px;
  min-height: 340px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all .35s ease;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 0;
  background: var(--secondary);
  z-index: -1;
  transition: all .35s ease;
}

.service-card:hover::before,
.service-card.active::before {
  height: 100%;
}

.service-card:hover,
.service-card.active {
  color: var(--white);
  transform: translateY(-10px);
}

.service-card span {
  position: absolute;
  top: 22px;
  right: 28px;
  font-family: "Barlow", sans-serif;
  font-size: 54px;
  font-weight: 900;
  color: rgba(17,56,73,.09);
}

.service-card:hover span,
.service-card.active span {
  color: rgba(255,255,255,.18);
}

.service-card i {
  font-size: 52px;
  color: var(--secondary);
  margin-bottom: 24px;
}
.service-card a i {
  font-size: 30px;
  color: var(--secondary);
  margin-left:10px;
  
}

.service-card:hover i,
.service-card.active i {
  color: var(--white);
}

.service-card h3 {
  font-size: 25px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 14px;
}

.service-card:hover h3,
.service-card.active h3,
.service-card:hover p,
.service-card.active p,
.service-card:hover a,
.service-card.active a {
  color: var(--white);
}

.service-card p {
  color: var(--text);
  line-height: 1.75;
  flex-grow: 1;
}

.service-card a {
  color: var(--primary);
  font-weight: 900;
  font-family: "Barlow", sans-serif;
  margin-top: auto;
}

.offers-section {
  background: var(--white);
}

.coupon-card {
  position: relative;
  min-height: 250px;
  padding: 36px 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.82)),
    url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=900&q=85');
  background-size: cover;
  background-position: center;
  border: 2px dashed rgba(241,107,40,.45);
  overflow: hidden;
}

.coupon-card::before,
.coupon-card::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.coupon-card::before { left: -18px; }
.coupon-card::after { right: -18px; }

.coupon-card.dark {
  background:
    linear-gradient(135deg,rgba(53, 92, 90, .92),rgba(35, 66, 64, .88)),
    url('https://images.unsplash.com/photo-1605146769289-440113cc3d00?auto=format&fit=crop&w=900&q=85');color: var(--white);
}

.coupon-top {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 7px 15px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .05em;
  margin-bottom: 18px;
}

.coupon-card h3 {
  font-size: 56px;
  font-weight: 900;
  color: var(--secondary);
  margin: 0;
}

.coupon-card p {
  font-size: 21px;
  color: inherit;
  font-weight: 800;
  margin: 6px 0 25px;
}

.coupon-card a {
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  color: var(--primary);
  background: var(--white);
  padding: 12px 18px;
}

.coupon-card:not(.dark) a {
  background: var(--primary);
  color: var(--white);
}

.gallery-section {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  min-height: 280px;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,31,45,0), rgba(7,31,45,.78));
  opacity: .7;
  transition: all .4s ease;
}

.gallery-item::after {
  content: "+";
  position: absolute;
  top: 26px;
  right: 26px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--secondary);
  color: var(--white);
  font-size: 34px;
  font-weight: 300;
  transform: scale(0) rotate(180deg);
  transition: all .35s ease;
}

.gallery-item:hover::after {
  transform: scale(1) rotate(0);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-info {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  color: var(--white);
  transform: translateY(18px);
  opacity: 0;
  transition: all .35s ease;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
  opacity: 1;
}

.gallery-info h4 {
  font-size: 26px;
  font-weight: 900;
  margin: 0;
}

.gallery-info span {
  color: var(--secondary);
  font-weight: 800;
}
.video-cta {
  background:
    linear-gradient(
      90deg,
      rgba(53, 92, 90, .94),
      rgba(35, 66, 64, .88)
    ),
    url('https://images.unsplash.com/photo-1600566752229-250ed79470cb?auto=format&fit=crop&w=1600&q=85');

  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 92px 0;
}

.video-cta h2 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  line-height: 1;
}

.play-btn {
  width: 70px;
  height: 70px;
  display: inline-grid;
  place-items: center;
  background: var(--white);
  color: var(--secondary);
  border-radius: 50%;
  margin-right: 16px;
  position: relative;
}

.play-btn::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  from { transform: scale(.9); opacity: 1; }
  to { transform: scale(1.3); opacity: 0; }
}

.join-btn {
  background: var(--secondary);
  color: var(--white);
}

.process-section {
  background: var(--white);
}

.process-card {
  background: var(--cream);
  padding: 38px 28px;
  min-height: 255px;
  position: relative;
  transition: all .35s ease;
}

.process-card:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-8px);
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: var(--secondary);
  color: var(--white);
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  margin-bottom: 24px;
}

.process-card h3 {
  color: var(--primary);
  font-size: 24px;
  font-weight: 900;
}

.process-card p {
  color: var(--text);
  line-height: 1.75;
  margin: 0;
}

.process-card:hover h3,
.process-card:hover p {
  color: var(--white);
}

.brand-section {
  padding: 85px 0;
  background: var(--primary-dark);
  color: var(--white);
  overflow: hidden;
}

.brand-section h2 {
  font-weight: 900;
  font-size: 42px;
  line-height: 1;
}

.brandSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.brand-card {
  background: rgba(255,255,255, 1);
  border: 2px solid var(--secondary);
  min-height: 110px;
  display: grid;
  place-items: center;
  font-family: "Barlow", sans-serif;
  font-size: 25px;
  font-weight: 900;
  color: var(--white);
  text-align: center;
  
}

.testimonials-section {
  background:
    linear-gradient(90deg, rgba(248,244,236,.98), rgba(248,244,236,.92)),
    radial-gradient(circle at top right, rgba(241,107,40,.18), transparent 35%);
}

.testimonials-section {
  background:
    linear-gradient(
      90deg,
      rgba(247, 243, 236, .98),
      rgba(247, 243, 236, .92)
    ),
    radial-gradient(
      circle at top right,
      rgba(199, 154, 86, .14),
      transparent 35%
    );

  overflow: hidden;
}

.testimonialSwiper {
  padding-bottom: 10px;
}

.testimonial-card {
  background: var(--white);
  padding: 42px;
  box-shadow: 0 18px 45px rgba(35, 66, 64, .08);
  min-height: 300px;
  height: auto;
  border: 1px solid rgba(199, 154, 86, .08);
}

.stars {
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 22px;
}

.testimonial-card p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.8;
}

.testimonial-card h4 {
  color: var(--primary);
  font-weight: 900;
  margin: 24px 0 3px;
}

.testimonial-card span {
  color: var(--secondary);
  font-weight: 800;
}

.testimonial-pagination {
  position: static;
  margin-top: 18px;
}

.blog-section {
  background: var(--white);
}

.blog-card {
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  ;
}

.blog-img {
  height: 350px;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transition: all .45s ease;
  border-bottom: #C79A56 5px solid
}

.blog-card:hover .blog-img {
  transform: scale(1.08);
}

.blog-body {
  padding: 30px;
  position: relative;
  background: var(--white);
}

.blog-body span {
  color: var(--secondary);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
}

.blog-body h3 {
  color: var(--primary);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.18;
  margin: 14px 0 22px;
}

.blog-body a {
  color: var(--primary);
  font-weight: 900;
  font-family: "Barlow", sans-serif;
}

.blog-body a:hover {
  color: var(--secondary);
}

.contact-section {
  background: var(--cream);
  padding: 0 0 110px;
}

.contact-box {
  box-shadow: var(--shadow);
  background: var(--white);
}

.contact-left {
  background: var(--primary);
  color: var(--white);
  padding: 60px 45px;
  position: relative;
  overflow: hidden;
}

.contact-left::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(241,107,40,.24);
}

.contact-left h2 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.contact-left p {
  color: rgba(255,255,255,.76);
  line-height: 1.8;
}

.contact-left ul {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.contact-left li {
  font-weight: 700;
}

.contact-left i {
  color: var(--secondary);
  margin-right: 10px;
}

.contact-right {
  padding: 60px 45px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--light);
  min-height: 58px;
  padding: 0 18px;
  outline: none;
  color: var(--primary);
  font-weight: 600;
}

.quote-form textarea {
  min-height: 145px;
  padding-top: 18px;
  resize: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--secondary);
  background: var(--white);
}

.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.74);
  padding: 90px 0 25px;
}

.footer h3,
.footer h4 {
  color: var(--white);
  font-weight: 900;
  margin-bottom: 22px;
}

.footer h3 {
  font-size: 32px;
}

.footer p {
  line-height: 1.8;
}

.footer a {
  display: block;
  color: rgba(255,255,255,.74);
  margin-bottom: 11px;
}

.footer a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  color: var(--white);
  margin: 0;
}

.footer-social a:hover {
  background: var(--secondary);
  padding-left: 0;
  color: var(--white);
}

.copyright {
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  padding-top: 24px;
  margin-top: 60px;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  background: var(--secondary);
  color: var(--white);
  z-index: 20;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

@media (max-width: 1199px) {
  .nav-actions {
    display: none;
  }

  .navbar-nav .nav-link {
    padding-left: 11px !important;
    padding-right: 11px !important;
  }
}

@media (max-width: 991px) {
  .main-nav {
    min-height: auto;
    padding: 14px 0;
  }

  .navbar-collapse {
    background: var(--white);
    padding: 18px 0;
    max-height: 80vh;
    overflow-y: auto;
  }

  .navbar-nav .nav-link {
    padding: 12px 0 !important;
  }

  .dropdown-menu,
  .mega-menu {
    columns: 1;
    min-width: 100%;
    box-shadow: none;
    border-left: 3px solid var(--secondary);
    background: var(--cream);
  }

  .hero-slide {
    min-height: 700px;
  }

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

  .section-pad {
    padding: 80px 0;
  }

  .about-image-wrap {
    padding-right: 0;
  }

  .about-main {
    width: 100%;
  }

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

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .contact-section {
    padding-bottom: 80px;
  }
}

@media (max-width: 575px) {
  .logo-text {
    font-size: 20px;
  }

  .logo-icon {
    width: 46px;
    height: 46px;
  }

  .hero-slide {
    min-height: 640px;
  }

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

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

  .heroSwiper .swiper-button-next,
  .heroSwiper .swiper-button-prev {
    display: none;
  }

  .feature-box {
    padding: 28px 20px;
  }

  .about-small,
  .experience-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    border: 0;
    margin-top: 18px;
  }

  .about-image-wrap {
    padding-bottom: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .contact-left,
  .contact-right {
    padding: 42px 24px;
  }
}
.scroll-top{
  position: fixed;
  right: 24px;
  bottom: 80px;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 0;

  background: linear-gradient(
    135deg,
    var(--secondary),
    var(--gold)
  );

  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  z-index: 999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition:
    opacity .3s ease,
    transform .3s ease,
    visibility .3s ease;
}

/* soft background square */
.scroll-top::before{
  content: "";
  position: absolute;

  width: 92px;
  height: 92px;

  border-radius: 0;

  background: rgba(199, 154, 86, .18);

  z-index: -2;
}

/* ringing animation */
.scroll-top::after{
  content: "";
  position: absolute;

  width: 92px;
  height: 92px;

  border-radius: 0;

  border: 2px solid rgba(199, 154, 86, .35);

  z-index: -1;

  animation: ringPulse 1.8s linear infinite;
}

.scroll-top.show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover{
  transform: translateY(-4px);
}

.scroll-top i{
  transition: transform .3s ease;
}

.scroll-top:hover i{
  transform: translateY(-2px);
}

@keyframes ringPulse{

  0%{
    transform: scale(1);
    opacity: .55;
  }

  70%{
    transform: scale(1.35);
    opacity: 0;
  }

  100%{
    transform: scale(1.35);
    opacity: 0;
  }

}

form.quote-form input.subject{display:none}
.topbar i:hover{color: white;}
.upgrade-steps-section {
  padding: 90px 0;
  background: #f7f3ec;
  position: relative;
  overflow: hidden;
}

.upgrade-steps-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 55px;
  align-items: center;
}


/* LEFT CONTENT */

.upgrade-content .section-tag {
  display: inline-block;
  margin-bottom: 16px;
  color: #c79a56;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.upgrade-content h2 {
  color: #234240;
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 800;
}

.upgrade-content p {
  color: #70807f;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 28px;
}


.upgrade-btn {
  display: inline-block;
  background: #355c5a;
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;

  box-shadow:
  0 18px 45px rgba(35,66,64,.18);

  transition:.4s;
}


.upgrade-btn:hover{
    transform:translateY(-4px);
}



/* STEPS */

.upgrade-steps {
  position: relative;
  padding-left: 35px;
}


/* Animated vertical line */

.upgrade-steps::before {

  content:"";

  position:absolute;

  left:58px;
  top:20px;
  bottom:20px;

  width:3px;

  background:
  linear-gradient(
      to bottom,
      transparent,
      #d8b06a,
      #355c5a,
      transparent
  );

  background-size:
  100% 200%;

  animation:
  lineFlow 4s linear infinite;
}


@keyframes lineFlow{

    0%{
        background-position:0 0;
    }

    100%{
        background-position:0 200%;
    }

}



/* CARD */

.step-card {

  position: relative;

  background:#fff;

  padding:
  22px 25px 22px 90px;

  border-radius:18px;

  margin-bottom:18px;

  border:
  1px solid rgba(199,154,86,.16);

  box-shadow:
  0 25px 80px rgba(35,66,64,.14);

  transition:
  .45s ease;
}



/* hover */

.step-card:hover{

    transform:
    translateY(-10px)
    translateX(6px);

    box-shadow:
    0 35px 90px rgba(35,66,64,.18);

}



/* Number */

.step-number {

  position:absolute;

  left:18px;
  top:50%;

  transform:
  translateY(-50%);

  width:52px;
  height:52px;

  border-radius:50%;

  background:#355c5a;

  color:#d8b06a;

  display:flex;

  align-items:center;
  justify-content:center;

  font-weight:800;

  border:
  4px solid #f7f3ec;

  animation:
  softPulse 2.8s infinite;
}


.step-card:hover .step-number{

    transform:
    translateY(-50%)
    scale(1.12)
    rotate(8deg);

}



@keyframes softPulse{


    0%{

        box-shadow:
        0 0 0 0 rgba(
        199,
        154,
        86,
        .35
        );

    }


    70%{

        box-shadow:
        0 0 0 14px rgba(
        199,
        154,
        86,
        0
        );

    }


    100%{

        box-shadow:
        0 0 0 0 rgba(
        199,
        154,
        86,
        0
        );

    }

}



.step-card p{

    margin:0;

    color:#234240;

    font-size:16px;

    font-weight:600;

    line-height:1.6;

}



/* Bottom CTA */

.upgrade-bottom{

    margin-top:40px;

    background:#234240;

    color:#fff;

    padding:22px 30px;

    border-radius:18px;

    text-align:center;

    font-size:18px;

    font-weight:600;

    overflow:hidden;

    position:relative;

}


.upgrade-bottom::after{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:70%;
    height:100%;

    background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.12),
      transparent
    );

    animation:
    shine 5s infinite;

}



@keyframes shine{

    100%{

        left:140%;

    }

}



/* Responsive */

@media(max-width:991px){

.upgrade-steps-wrap{

grid-template-columns:
1fr;

}


.upgrade-content h2{

font-size:34px;

}

}



@media(max-width:575px){

.upgrade-steps-section{

padding:65px 0;

}


.step-card{

padding:
22px 20px 22px 78px;

}


.upgrade-steps{

padding-left:0;

}


.upgrade-steps::before{

left:24px;

}


.step-number{

left:-2px;

}

}


.lasting-install-section {
  padding: 95px 0;
  background: var(--cream);
}

.lasting-install-card {
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 0;
  overflow: hidden;
}

.lasting-install-text {
  padding: 58px;
  position: relative;
}

.lasting-install-text::after {
  content: "";
  position: absolute;
  right: 0;
  top: 58px;
  bottom: 58px;
  width: 1px;
  background: var(--border);
}

.lasting-install-text h2 {
  color: var(--primary);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  font-weight: 950;
  margin: 16px 0 24px;
  max-width: 760px;
}

.lasting-install-text p {
  color: var(--text);
  line-height: 1.85;
  font-size: 16px;
  margin-bottom: 16px;
}

.lasting-install-list {
  background: var(--primary);
  padding: 42px;
  display: grid;
  gap: 16px;
}

.lasting-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(216,176,106,.18);
  transition: .35s ease;
}

.lasting-item:hover {
  transform: translateX(-8px);
  background: rgba(199,154,86,.16);
}

.lasting-item i {
  color: var(--gold);
  font-size: 26px;
  min-width: 32px;
}

.lasting-item h4 {
  color: var(--white);
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 6px;
}

.lasting-item p {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .lasting-install-card {
    grid-template-columns: 1fr;
  }

  .lasting-install-text::after {
    display: none;
  }

  .lasting-install-text,
  .lasting-install-list {
    padding: 36px;
  }
}

@media (max-width: 575px) {
  .lasting-install-section {
    padding: 70px 0;
  }

  .lasting-install-text,
  .lasting-install-list {
    padding: 26px;
  }

  .lasting-install-text h2 {
    font-size: 32px;
  }

  .lasting-item {
    padding: 16px;
  }
}


.faq-section{
padding:100px 0;
background:#F7F3EC;
overflow:hidden;
}

.faq-title{
text-align:center;
margin-bottom:55px;
}

.faq-title span{
font-size:13px;
letter-spacing:4px;
font-weight:700;
color:#C79A56;
}

.faq-title h2{
font-size:clamp(35px,4vw,60px);
font-weight:800;
color:#355C5A;
margin:12px 0;
}

.faq-title p{
color:#70807F;
margin:0;
}

.faq-wrap{
max-width:1050px;
margin:auto;
}

.faq-item{
display:grid;
grid-template-columns:1fr 55px;
gap:14px;
align-items:center;
margin-bottom:18px;
}

.faq-item details{
background:rgba(255, 255, 255, .8);
border-radius:16px;
box-shadow:0 15px 40px rgba(35,66,64,.08);
overflow:hidden;
transition:.35s;
}

.faq-item details:hover{
transform:translateY(-4px);
}

.faq-item summary{
padding:24px 75px 24px 30px;
list-style:none;
cursor:pointer;
font-size:18px;
font-weight:700;
color:#234240;
position:relative;
}

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

.faq-item summary::after{
content:"+";
position:absolute;
right:22px;
top:50%;
transform:translateY(-50%);
width:34px;
height:34px;
border-radius:50%;
background:#355C5A;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
font-weight:700;
}

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

.faq-item p{
padding:0 30px 24px;
line-height:1.7;
color:#70807F;
margin:0;
}

.faq-arrow{
height:48px;
width:48px;
background:#355C5A;
border-radius:8px;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
transition:.3s;
}

.faq-arrow i{
font-size:26px;
color:#fff;
transition:.3s;
}

.faq-arrow:hover{
background:#C79A56;
transform:translateX(6px);
}

.faq-arrow:hover i{
transform:translateX(3px);
}

@media(max-width:768px){

.faq-item{
grid-template-columns:1fr 44px;
gap:10px;
}

.faq-arrow{
width:44px;
height:44px;
}

.faq-item summary{
font-size:16px;
padding:20px 55px 20px 20px;
}

.faq-title h2{
font-size:34px;
}

}
.footer #obfuscatedEmail a {display: inline;}


.locations-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
}

.location-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:70px;
    padding:18px 22px;
    text-decoration:none;
    font-weight:700;
    font-size:1.05rem;
    color:#234240;
    background:#fff;
    border:1px solid rgba(199,154,86,.2);
    border-radius:18px;
    box-shadow:0 10px 30px rgba(35,66,64,.08);
    transition:.35s ease;
}

.location-btn:hover{
    background:#234240;
    color:#fff;
    border-color:#234240;
    transform:translateY(-5px);
}

.location-btn::after{
    content:"→";
    margin-left:10px;
    color:#C79A56;
    transition:.3s;
}

.location-btn:hover::after{
    color:#fff;
}

.footer-social a,
.topbar-social a {
    min-width: 37px;
    min-height: 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}