* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

/* header */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  padding: 1.5rem 5.5rem;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {

  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.navbar-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo {
  font-size: 24px;
  font-weight: 600;
  color: #f17714;
  text-decoration: none;
  align-items: center;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.navbar-links {
  display: flex;
  gap: 3rem;
  list-style: none;
  align-items: center;
}

.navbar-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-links a:hover {
  color: #ff8c00;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff8c00;
  transition: width 0.3s ease;
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-contact-btn {
  background: #ff8c00;
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.navbar-contact-btn:hover {
  background: #e67e00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.navbar-contact-btn svg {
  width: 20px;
  height: 20px;
}

.navbar-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.navbar-mobile-toggle span {
  width: 28px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.navbar-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.navbar-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.page-content {
  padding-top: 90px;
}

/* Hero */
.hero {
  position: relative;
  height: 75vh;
  background: url("../image/_.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: 100px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  max-width: 900px;
  z-index: 2;
}

.subtitle {
  color: #e0b36c;
  font-size: 14px;
  letter-spacing: 2px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  margin: 20px 0;
  line-height: 1.1;
}

.hero h1::content {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px; /* Adjust the width of the line */
  height: 4px; /* Adjust the thickness of the line */
  background-color: red; /* Adjust the color of the line */
}

.hero p {
  color: #e0b36c;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1.7;
  max-width: 540px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  margin-top: 35px;
  padding: 14px 38px;
  border: 2px solid #e0b36c;
  border-radius: 50px;
  color: #e0b36c;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.btn:hover {
  background: #e0b36c;
  color: #000;
}

/* services */
.services-section {
  max-width: 1200px;
  margin: 5rem auto;
}

.services-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 3rem;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-card.highlighted {
  background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
  color: white;
  transform: rotate(-3deg);
  box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3);
}

.service-card.highlighted .service-icon {
  background: rgba(255, 255, 255, 0.2);
}

.service-card.highlighted h3,
.service-card.highlighted p {
  color: white;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.service-card:hover::before {
  opacity: 0.9;
}

.service-card[data-service="renovation"]::before {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1581858726788-75bc0f6a952d?w=800');
}

.service-card[data-service="plumbing"]::before {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1607472586893-edb57bdc0e39?w=800');
}

.service-card[data-service="electrical"]::before {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1621905251918-48416bd8575a?w=800');
}

.service-card[data-service="maintenance"]::before {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=800');
}

.service-card[data-service="painting"]::before {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1562259949-e8e7689d7828?w=800');
}

.service-card[data-service="flooring"]::before {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1615876234886-fd9a39fda97f?w=800');
}

.service-content {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.service-card:hover .service-content {
  transform: translateY(-10px);
  color: white;
}

.service-card:hover h3,
.service-card:hover p {
  color: white;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: #ff8c42;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.service-card h3 {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 600;
  transition: color 0.4s ease;
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  transition: color 0.4s ease;
}
       
/* why choose us */
.why-choose-section {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?w=1600') center/cover no-repeat;
  padding: 5rem 2rem;
  color: white;
  overflow: hidden;
}

.why-choose-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-header h2 .highlight {

  color: #b5812c;
  font-style: italic;
}

.section-header .subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  color: #e0e0e0;
  line-height: 1.4;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: #0066cc;
  margin: 2rem auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: #e3ba7a;
  border-color: #e3ba7a;
  transform: scale(1.1);
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  line-height: 1.3;
}

.feature-underline {
  width: 50px;
  height: 2px;
  background: white;
  margin: 1rem auto;
}

.feature-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 2rem;
}

.feature-button {
  background: white;
  color: #1a1a1a;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.feature-button:hover {
  background: #e3ba7a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(158, 175, 76, 0.4);
}
    
/* how it works */
.how-it-works-section {
  overflow: hidden;
  position: relative;
  background: #212121;
  padding: 5rem 2rem;
  color: white;
}

.how-it-works-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-left h2 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.content-left .subtitle {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #e0e0e0;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-weight: 500;
}

.content-left .divider {
  width: 80px;
  height: 3px;
  background: white;
  margin-bottom: 2.5rem;
}

.quote-button {
  background: white;
  color: #1a1a1a;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.hidden{
  display: none ;
}

.quote-button:hover {
  background: #4CAF50;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.step-icon {
  width: 90px;
  height: 90px;
  min-width: 90px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.step-item:hover .step-icon {
  background: #4CAF50;
  transform: scale(1.1);
}

.step-icon svg {
  width: 45px;
  height: 45px;
  stroke: #1a1a1a;
  fill: none;
  stroke-width: 2;
}

.step-item:hover .step-icon svg {
  stroke: white;
}

.step-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  line-height: 1.3;
}

.step-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}    

.how-it-works {
  padding: 80px 20px;
  background: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 60px;
}

.steps {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  color: #ff4d4d;
}

.icon svg {
  width: 100%;
  height: 100%;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.step p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.divider {
  width: 1px;
  background: #e0e0e0;
}

/* gallery */
.gallery-section {
  padding: 5rem 2rem;
  background: white;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-label {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #dea04a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.gallery-header h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.gallery-header p {
  font-size: 1.05rem;
  color: #666;
}

.gallery-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.75rem 2rem;
  background: white;
  border: 2px solid #e5e5e5;
  border-radius: 50px;
  color: #666;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: #1a1a1a;
  color: #1a1a1a;
}

.tab-btn.active {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: white;
}

.view-more-btn {
  padding: 0.75rem 2rem;
  background: transparent;
  border: 2px solid #d4af37;
  border-radius: 50px;
  color: #d4af37;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-more-btn:hover {
  background: #d4af37;
  color: white;
}

.gallery-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 4rem;
}

.gallery-slider {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
  padding: 2rem 0;
}

.gallery-slide {
  min-width: calc(33.333% - 1.333rem);
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.gallery-slide:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  z-index: 10;
}

.gallery-slide.center {
  transform: scale(1.1);
  z-index: 5;
}

.gallery-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-slide:hover .slide-overlay {
  opacity: 1;
}

.slide-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.slide-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-arrow:hover {
  background: #d4af37;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left {
  left: 0;
}

.slider-arrow-right {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e5e5e5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #1a1a1a;
  width: 30px;
  border-radius: 5px;
}

/* FAQ Section */
.cta-section {
  background: #f8f9fa;
  padding: 5rem 2rem;
  text-align: center;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

.phone-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #ff6b35;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.phone-number:hover {
  color: #bb3504;
  transform: scale(1.05);
}

.phone-number svg {
  width: 35px;
  height: 35px;
  fill: #e3ba7a;
  transition: fill 0.3s ease;
}

.phone-number:hover svg {
  fill: #e3ba7a;
}

.cta-heading {
  font-size: 2.8rem;
  color: #e3ba7a;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-divider {
  width: 80px;
  height: 3px;
  background: #cc7a00;
  margin: 0 auto 2.5rem;
}

.cta-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: #e3ba7a;
  color: white;
  padding: 1.1rem 3rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}    

/* footer */
.footer {
  background: #2d2420;
  padding: 5rem 2rem 2rem;
  position: relative;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23c9a96e"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z"/></svg>') no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

.footer-brand-content h2 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 400;
}

.footer-brand-content p {
  color: #a0a0a0;
  line-height: 1.7;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.newsletter-form {
  position: relative;
  margin-top: 1.5rem;
}

.newsletter-form input {
  width: 100%;
  padding: 1rem 3.5rem 1rem 1rem;
  background: white;
  border: none;
  color: #333;
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form input:focus {
  outline: none;
}

.newetter-form button {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #c9a96e;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.5rem;
}

.newsletter-form button:hover {
  transform: translateY(-50%) translateX(3px);
}

.footer-column h3 {
  font-size: 1rem;
  color: white;
  margin-bottom: 2rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-column h3::before {
  content: '';
  width: 12px;
  height: 12px;
  background: #c9a96e;
  display: block;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
  position: relative;
}

.footer-links li a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: white;
  transform: translateX(5px);
}

.contact-info {
  list-style: none;
}

.contact-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  fill: #c9a96e;
}

.contact-item p,
.contact-item a {
  color: #a0a0a0;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0a0a0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #c9a96e;
  border-color: #c9a96e;
  color: white;
}

.footer-copyright {
  color: #a0a0a0;
  font-size: 0.85rem;
  font-weight: 300;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: #c9a96e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  z-index: 100;
  text-decoration: none;
}

.back-to-top:hover {
  background: #b8945d;
  transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE MEDIA QUERIES ONLY
   Add these at the END of your style.css file
======================================== */

/* Large Tablets and Laptops (1200px) */
@media (max-width: 1200px) {
  .nav-container {
    margin: 0 2rem;
  }

  .hero {
    padding-left: 50px;
  }

  .hero h1 {
    font-size: 65px;
  }

  .about-container,
  .ba-container {
    gap: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets (1024px) */
@media (max-width: 1024px) {
  .nav-container {
    margin: 0 1.5rem;
  }

  .nav-links {
    gap: 2rem;
  }

  .hero {
    padding-left: 40px;
  }

  .hero h1 {
    font-size: 55px;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .about-visual {
    height: 500px;
    max-width: 600px;
    margin: 0 auto;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-content {
    grid-template-columns: 1fr;
  }

  .why-image {
    order: -1;
  }

  .ba-container {
    grid-template-columns: 1fr;
    height: auto;
  }

  .ba-content-left {
    padding-right: 0;
  }

  .ba-images-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .ba-slider-wrapper {
    height: 350px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile and Small Tablets (900px) */
@media (max-width: 900px) {
  .nav-links,
  .cta-buttons {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-links.active,
  .cta-buttons.active {
    transform: translateX(0);
  }

  .navbar-right.active{
    background-color: #000;
  }

  .cta-buttons {
    top: auto;
    bottom: 0;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.98);
  }

  .nav-links a {
    color: white !important;
    font-size: 1.1rem;
  }

  .call-btn {
    color: white !important;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle span {
    background: #fff;
  }

  nav.scrolled .mobile-toggle span {
    background: #0066cc;
  }

  .hero {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .about-section {
    padding: 3rem 1.5rem;
  }

  .about-content h2 {
    font-size: 2.2rem;
  }

  .about-visual {
    height: 450px;
  }

  .main-image {
    width: 75%;
    height: 70%;
  }

  .experience-badge {
    padding: 1.5rem 2rem;
    top: 35%;
  }

  .experience-badge h3 {
    font-size: 3rem;
  }

  .small-preview {
    width: 30%;
    height: 25%;
  }

  .services-section {
    padding: 4rem 1rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .slider-wrapper {
    padding: 0 30px;
  }

  .service-card {
    min-width: 300px;
    height: 400px;
  }

  .areas-section {
    padding: 4rem 1.5rem;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-choose-us {
    padding: 4rem 1.5rem;
  }

  .why-header h2 {
    font-size: 2rem;
  }

  .before-after-section {
    padding: 4rem 1.5rem;
  }

  .ba-content-left h2 {
    font-size: 2.5rem;
  }

  .ba-content-left h3 {
    font-size: 1.2rem;
  }

  .ba-images-container {
    grid-template-columns: 1fr;
  }

  .ba-slider-wrapper {
    height: 300px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 80px 20px;
  }

  .cta-title {
    font-size: 3rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    gap: 2rem;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* Mobile (768px) */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
    padding: 0 20px;
    /* align-items: flex-end; */
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 15px;
  }

  .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .services-title {
        font-size: 2rem;
        margin-bottom: 2rem;
      }

      .service-card {
        min-height: 240px;
        transform: none !important;
      }

      .service-card.highlighted {
        transform: rotate(-2deg) !important;
      }

  .why-choose-section {
        padding: 3rem 1.5rem;
      }

      .section-header {
        margin-bottom: 3rem;
      }

      .section-header h2 {
        font-size: 2rem;
      }

      .section-header .subtitle {
        font-size: 1.1rem;
      }

      .features-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .feature-icon {
        width: 70px;
        height: 70px;
      }

      .feature-icon svg {
        width: 35px;
        height: 35px;
      }

      .feature-title {
        font-size: 1.4rem;
      }

      .feature-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
      }

      .feature-button {
        width: 100%;
        max-width: 300px;
      }

  .how-it-works-section {
        padding: 3rem 1.5rem;
        background: linear-gradient(rgba(26, 26, 26, 0.92), rgba(26, 26, 26, 0.92)), url('https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?w=1600') center/cover no-repeat;
      }

      .how-it-works-container {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .content-left{
        text-align: center;
      }

      .content-left h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
      }

      .content-left .subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
      }

      .content-left .divider {
        margin-bottom: 2rem;
        width: 100%;
      }

      .quote-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
      }

      .steps-list {
        gap: 2rem;
      }

      .step-item {
        gap: 1.5rem;
      }

      .step-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
      }

      .step-icon svg {
        width: 35px;
        height: 35px;
      }

      .step-content h3 {
        font-size: 1.2rem;
      }

      .step-content p {
        font-size: 0.95rem;
      }
  
  .gallery-section {
    padding: 3rem 1rem;
  }

  .gallery-header h2 {
        font-size: 2rem;
  }

  .gallery-tabs {
    gap: 0.75rem;
  }

  .tab-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
  }

  .gallery-slider-wrapper {
    padding: 0 3rem;
  }

  .gallery-slide {
    min-width: 100%;
  }

  .gallery-slide img {
    height: 300px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .cta-section {
        padding: 3rem 1.5rem;
      }

      .phone-number {
        font-size: 1.5rem;
        margin-bottom: 2rem;
      }

      .phone-number svg {
        width: 28px;
        height: 28px;
      }

      .cta-heading {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
      }

      .cta-divider {
        width: 60px;
        margin-bottom: 2rem;
      }

      .cta-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
      }

      .cta-button {
        width: 100%;
        max-width: 350px;
        padding: 1rem 2.5rem;
      }

  .ba-slider-wrapper {
    height: 280px;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .navbar-logo img {
    height: 40px;
  }

  .navbar-right {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  /* background: rgba(216, 193, 78, 0.98); */
  backdrop-filter: blur(10px);
  flex-direction: column;
  padding: 2rem;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .navbar-right.active {
    transform: translateX(0);
  }

  .navbar-links {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .navbar-links li {
    width: 100%;
    text-align: center;
  }

  .navbar-links a {
    font-size: 1.3rem;
  }

  .navbar-contact-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.2rem;
  }

  .navbar-mobile-toggle {
    display: flex;
  }

  .hero {
    height: 60vh;
    min-height: 500px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero p {
    font-size: 14px;
  }

  .btn {
    padding: 12px 28px;
    font-size: 13px;
  }
  
  .show{
    display: none;
  }

  .hidden{
    display: block;
  }

  .about-section,
  .services-section,
  .areas-section,
  .why-choose-us,
  .before-after-section,
  .cta-section {
    padding: 3rem 1rem;
  }

  .about-visual {
    height: 350px;
  }

  .experience-badge {
    padding: 1rem 1.5rem;
  }

  .experience-badge h3 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .slider-wrapper {
    padding: 0 20px;
  }

  .service-card {
    min-width: 260px;
    height: 360px;
    padding: 2rem 1.5rem;
  }

  .service-number {
    font-size: 4rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon svg {
    width: 30px;
    height: 30px;
  }

  .service-content h3 {
    font-size: 1.5rem;
  }

  .service-content p {
    font-size: 0.9rem;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .section-subtitle {
    font-size: 0.75rem;
  }

  .section-subtitle::before,
  .section-subtitle::after {
    width: 30px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .area-title {
    font-size: 1.2rem;
  }

  .area-description {
    font-size: 0.875rem;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .ba-content-left h2 {
    font-size: 2rem;
  }

  .ba-content-left h3 {
    font-size: 1rem;
  }

  .ba-content-left p {
    font-size: 0.95rem;
  }

  .ba-slider-wrapper {
    height: 250px;
  }

  .ba-slider::before {
    width: 48px;
    height: 48px;
  }

  .ba-label-tag {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-text {
    font-size: 1rem;
  }

  .footer {
    padding: 3rem 1rem 1.5rem;
  }

  .footer-brand-content h2 {
    font-size: 1.5rem;
  }

  .footer-brand-content p {
    font-size: 0.85rem;
  }

  .footer-column h3 {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
}

/* Extra Small Mobile (360px) */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 28px;
  }

  .service-card {
    min-width: 240px;
    height: 340px;
  }

  .ba-slider-wrapper {
    height: 220px;
  }

  .area-image {
    height: 180px;
  }
}

/* Landscape Orientation */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    height: 100vh;
    align-items: center;
  }

  .nav-links,
  .cta-buttons {
    height: calc(100vh - 70px);
    overflow-y: auto;
  }
}



/* @media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .services-title {
    font-size: 2.2rem;
  }

  .service-card {
    min-height: 260px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .navbar-logo img {
    height: 40px;
  }

  .navbar-right {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  /* background: rgba(216, 193, 78, 0.98); 
  backdrop-filter: blur(10px);
  flex-direction: column;
  padding: 2rem;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .navbar-right.active {
    transform: translateX(0);
  }

  .navbar-links {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .navbar-links li {
    width: 100%;
    text-align: center;
  }

  .navbar-links a {
    font-size: 1.3rem;
  }

  .navbar-contact-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.2rem;
  }

  .navbar-mobile-toggle {
    display: flex;
  }

  .hero {
    height: 60vh;
    min-height: 500px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 14px;
  }

  .footer {
    padding: 3rem 1rem 1.5rem;
  }

  .footer-brand-content h2 {
    font-size: 1.5rem;
  }

  .footer-brand-content p {
    font-size: 0.85rem;
  }

  .footer-column h3 {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .cta-buttons {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-links.active,
  .cta-buttons.active {
    transform: translateX(0);
  }

  .cta-buttons {
    top: auto;
    bottom: 0;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.98);
  }

  .nav-links a {
    color: white !important;
    font-size: 1.1rem;
  }

  .call-btn {
    color: white !important;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle span {
    background: #fff;
  }

  nav.scrolled .mobile-toggle span {
    background: #0066cc;
  }

  .hero {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .service-card {
    min-height: 240px;
    transform: none !important;
  }

  .service-card.highlighted {
    transform: rotate(-2deg) !important;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    gap: 2rem;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}     */