/* Landing Page Styles */

@font-face {
  font-family: CustomFont;
  src: url("fonts/Outfit-Medium.ttf") format("woff");
}

@font-face {
  font-family: Outfit-Light;
  src: url("/fonts/Outfit-Light.ttf") format("truetype");
 
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  font-family: CustomFont, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.landing-header {
  background: #171e2c;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section img {
  height: 50px;
}

/* Address Section */
.address-section {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
}

.address-section img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.address-section a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.address-section a:hover {
  opacity: 1;
  text-decoration: underline;
}

.phone-btn-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: #f9b000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
 
  transition: background 0.3s;
}

.phone-btn-header:hover {
  background: #e5a000;
}

.phone-btn-header img {
  width: 20px;
  filter: brightness(0) invert(1);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

/* Background Slider */
.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-bg-slide.active {
  opacity: 1;
}

.hero-bg-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 50px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 42px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
 
 
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.check-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Testimonials Slider */
.hero-testimonials-slider {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  position: relative;
  min-height: 200px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.testimonial-content .stars {
  color: #f9b000;
  font-size: 20px;
  margin-bottom: 15px;
}

.testimonial-content p {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
  opacity: 0.95;
}

.testimonial-author {
  color: #ccc;
  font-size: 14px;
 
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dots .dot.active {
  background: #f9b000;
}

/* Review Platform Links */
.review-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.review-platform-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
 
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.google-link {
  color: #4285F4;
  border: none;
  background: transparent;
}

.google-link:hover {
  text-decoration: underline;
}

.yelp-link {
  color: #FF1A1A;
  border: none;
  background: transparent;
}

.yelp-link:hover {
  text-decoration: underline;
}

/* Form Styles */
.form-wrapper {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}


.form-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.form-header h2 {
  color: #292d35;
  font-size: 32px;
  margin-bottom: 8px;
 
  position: relative;
}

.form-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #f9b000;
}

.form-header p {
  color: #666;
  font-size: 16px;
  margin-top: 20px;
}

/* Override existing form styles for landing */
.form-wrapper .zcwf_row {
  margin-bottom: 24px;
}

.form-wrapper .zcwf_col_fld {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-wrapper .zcwf_col_fld input,
.form-wrapper .zcwf_col_fld input[type="text"],
.form-wrapper .zcwf_col_fld input[type="email"],
.form-wrapper .zcwf_col_fld textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #666;
  border-radius: 4px;
  background: transparent;
  color: #292d35;
  font-size: 16px;
  font-family: CustomFont, sans-serif;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.form-wrapper .zcwf_col_fld input:focus,
.form-wrapper .zcwf_col_fld input[type="text"]:focus,
.form-wrapper .zcwf_col_fld input[type="email"]:focus,
.form-wrapper .zcwf_col_fld textarea:focus {
  outline: none;
  border-color: #f9b000;
  background: #fff;
}

.form-wrapper .zcwf_placeholder {
  position: absolute;
  top: 14px;
  left: 15px;
  transform: translateY(0);
  color: #666;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s;
  background: transparent;
  padding: 0 5px;
  z-index: 2;
}

.form-wrapper .style2 input:focus + .zcwf_placeholder {
  top: -10px;
  left: 10px;
  transform: translateY(0);
  font-size: 12px;
  color: #666;
  background: #fff;
  padding: 0 3px;
}

.form-wrapper .style2 input:not(:placeholder-shown) + .zcwf_placeholder {
  top: -10px;
  left: 10px;
  transform: translateY(0);
  font-size: 12px;
  color: #666;
  background: #fff;
  padding: 0 3px;
}

.form-wrapper textarea {
  resize: vertical;
  min-height: 80px;
  padding-top: 12px !important;
}

.form-wrapper .g-recaptcha {
  transform: scale(0.95);
  transform-origin: 0 0;
  margin-bottom: 15px;
}

.form-wrapper .formsubmit,
.form-wrapper .zcwf_button,
.form-wrapper input[type="submit"] {
  width: 100% !important;
  padding: 16px !important;
  background: #f9b000 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px !important;
  font-size: 16px !important;
 
  font-family: CustomFont, sans-serif !important;
  cursor: pointer !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transform: translateY(0) !important;
}
.hero-content{
  height: 100%;
    display: flex
;
    flex-direction: column;
    justify-content: space-between;
}
.form-wrapper .formsubmit:hover,
.form-wrapper .zcwf_button:hover,
.form-wrapper input[type="submit"]:hover {
  background: #e5a000 !important;
  transform: translateY(-2px) !important;
}

.form-wrapper .formsubmit:active,
.form-wrapper .zcwf_button:active,
.form-wrapper input[type="submit"]:active {
  background: #d39000 !important;
  transform: translateY(0) !important;
}

.form-wrapper .formsubmit:disabled,
.form-wrapper .zcwf_button:disabled,
.form-wrapper input[type="submit"]:disabled {
  background: #ccc !important;
  cursor: not-allowed !important;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #292d35;
  margin-bottom: 50px;
 
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  padding: 20px 20px 10px;
  color: #292d35;
  font-size: 22px;
}

.service-card p {
  padding: 0 20px 20px;
  color: #666;
  line-height: 1.6;
}

/* Why Section */
.why-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-item {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.why-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.why-item h3 {
  color: #292d35;
  font-size: 20px;
  margin-bottom: 15px;
}

.why-item p {
  color: #666;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  color: #f9b000;
  opacity: 0.3;
}

.stars {
  color: #f9b000;
  margin-bottom: 15px;
  font-size: 18px;
}

.testimonial-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: #292d35;
  font-size: 16px;
}

.testimonial-author span {
  color: #999;
  font-size: 14px;
  margin-top: 3px;
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  flex: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #f9b000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
 
  margin: 0 auto 20px;
}

.process-step h3 {
  color: #292d35;
  font-size: 20px;
  margin-bottom: 10px;
}

.process-step p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.process-arrow {
  color: #f9b000;
  font-size: 30px;
  margin: 0 20px;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1d23 0%, #292d35 50%, #1a1d23 100%);
  text-align: center;
  color: #fff;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(249, 176, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 22px;
  margin-bottom: 40px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.cta-btn-phone,
.cta-btn-quote {
  padding: 20px 45px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn-phone {
  background: #fff;
  color: #292d35;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.cta-btn-phone:hover {
  background: #f9b000;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(249, 176, 0, 0.3);
}

.cta-btn-phone:hover img {
  filter: brightness(0) invert(1);
}

.cta-btn-phone img {
  width: 20px;
  transition: filter 0.3s;
}

.cta-btn-quote {
  background: #f9b000;
  color: #fff;
  box-shadow: 0 8px 20px rgba(249, 176, 0, 0.3);
}

.cta-btn-quote:hover {
  background: #fff;
  color: #292d35;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

/* Footer */
.landing-footer {
  background: #292d35;
  color: #fff;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-info img {
  height: 40px;
  margin-bottom: 15px;
 
}

.footer-info p {
  color: #ccc;
  max-width: 300px;
}

.landing-servises
{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-contact p {
  color: #ccc;
  margin-bottom: 10px;
}

.footer-contact strong {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps {
    flex-direction: column;
    gap: 30px;
  }
  
  .process-arrow {
    transform: rotate(90deg);
    margin: 20px 0;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
  
  .hero-container {
    padding: 60px 0 40px;
  }
  
  .form-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 10px 0px;
    border-radius: 0;
    box-shadow: none;
  }
  
  .services-grid,
  .testimonials-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .hero-content, .services-section{
    padding:  0px 10px;
  }
  .hero-section, .hero-container{
    padding: 0px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .header-container {
    padding: 10px 15px;
  }
  
  .phone-btn-header span {
    display: none;
  }
  
  .g-recaptcha {
    transform: scale(0.85);
  }
}


.keys-webform{
  display: flex;  
  align-items: center;
  justify-content: space-evenly;
 
  width: 100%;
}

.keys-webform > div{
  flex: 1;
  max-width: 440px;
}