body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;

  html {
  scroll-behavior: smooth;
}

}

/* Reset */
body {
  margin: 0;
  padding: 0;
}

/* Outer Wrapper sits flush top */
.nav-outer-wrapper {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Main Floating Nav Card */
.header-wrapper {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 0 0 14px 14px;
  max-width: 1200px;
  width: 95%;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
}

/* Top Row: Logo + Contact */
.nav-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  margin-left: auto;
  padding: 10px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #222;
  border-radius: 3px;
}

/* Logo */
.logo img {
  height: 90px; /* Adjust as needed */
  object-fit: contain;
}

/* Bottom Row: Navigation */
.nav-bottom-row {
  display: flex;
  justify-content: center;
  transition: max-height 0.3s ease; /* ✅ Add this line */
}


/* Divider Line */
.nav-divider {
  border: none;
  border-top: 1px solid #e3e3e3;
  margin: 10px 0;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

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

/* Contact Area */
.nav-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta {
  background: #2aa7e2;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}



/* Hero */
.hero {
  position: relative;
  background-image: url('img/hero_image_main.png');
  background-size: cover;
  background-position: center;
  height: 680px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #226ea0d2, #256fa3da);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.hero-text {
  max-width: 1200px;
  width: 100%;
  color: white;
  padding: 0 30px;
}

.hero-text h1 {
  font-size: 46px;
  margin: 0 0 15px;
}

.hero-text p {
  font-size: 16px;
  margin: 0 0 30px;
  max-width: 520px;
}

.discover-btn {
  background: #2aa7e2;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}



/* Appointment Section */
.appointment-bar-wrapper {
  margin-top: -80px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10; /* 👈 THIS brings it forward */
}

.hero {
  position: relative;
  z-index: 1; /* 👈 Pushes it back */
}

.call-now {
  display: inline-block;
  background: white;
  color: #2aa7e2;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.call-now:hover {
  background: #f1f1f1;
  text-decoration: none;
}


.appointment-bar {
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  width: 90%;
  max-width: 1100px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  gap: 20px;
  flex-wrap: wrap;
}

.appointment-bar form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  flex: 1;
}

.appointment-bar input {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  min-width: 150px;
  flex: 1;
}

.appointment-bar button {
  background: #2aa7e2;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}

.consult-box {
  background: linear-gradient(to bottom, #2aa7e2, #1b84cb);
  color: white;
  padding: 15px 25px;
  border-radius: 12px;
  text-align: center;
  min-width: 220px;
}


/* Who We Are Section */
.who-we-are {
  background: #fff;
  padding: 80px 60px;
}

.who-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.who-left {
  flex: 1 1 55%;
}

.who-right {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.who-label {
  color: #f27321;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 12px;
}

.who-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #111;
}

.who-desc {
  font-size: 15px;
  color: #555;
  max-width: 500px;
  margin-bottom: 20px;
}

.who-video {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.info-card {
  display: flex;
  align-items: center;
  border-radius: 12px;
  padding: 20px 25px;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.info-card .icon {
  font-size: 26px;
  margin-right: 15px;
}

.info-card h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.info-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.info-card.blue {
  background: linear-gradient(to right, #2aa7e2, #1075c2);
}

.info-card.orange {
  background: linear-gradient(to right, #f27321, #f15a24);
}

.info-card.lightblue {
  background: linear-gradient(to right, #55c6ff, #2aa7e2);
}

.video-hero {
  position: relative;
  background-image: url('img/video_hero.png');
  background-size: cover;
  background-position: center;
  height: 680px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-overlay {
  background: rgba(0, 0, 0, 0.45); /* Dark translucent overlay */
  padding: 60px 30px;
  border-radius: 16px;
  max-width: 700px;
  width: 90%;
  text-align: center;
  color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.video-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.play-button {
  font-size: 48px;
  background: white;
  color: #2aa7e2;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  cursor: pointer;
}

.video-overlay h2 {
  font-size: 32px;
  margin: 0 0 15px;
}

.video-overlay p {
  font-size: 16px;
  margin: 0 0 25px;
}

.consult-btn {
  background: #2aa7e2;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}




/* Service Cards */
.service-cards {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.card-wrapper {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.service-card {
  background: white;
  border: 1px solid #dce6f4;
  padding: 30px 25px;
  border-radius: 16px;
  max-width: 300px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card .icon {
  font-size: 32px;
  margin-bottom: 15px;
}
.service-card h4 {
  margin: 10px 0 12px;
  font-size: 18px;
  font-weight: 600;
}
.service-card p {
  font-size: 14px;
  color: #555;
}



/* WHAT WE OFFER */
.offer-section {
  padding: 80px 20px;
  background: #f6fbff;
  text-align: center;
}
.offer-header .section-label {
  color: #f27321;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.offer-header h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.offer-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.offer-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-info {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 20px;
}

.card-info span {
  font-size: 24px;
  color: #2aa7e2;
}

.card-info h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.card-info p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #555;
}

/* OUR SERVICES SPLIT SECTION */
.services-overview {
  background: #fff;
  padding: 100px 40px;
}
.services-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.services-left {
  flex: 1 1 55%;
}
.services-right {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}
.services-left h2 {
  font-size: 28px;
  margin-bottom: 15px;
}
.services-left .subtext {
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
}

.features-list {
  list-style: none;
  padding: 0;
}
.features-list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 14px;
  color: #444;
}
.features-list li span {
  font-size: 22px;
  color: #2aa7e2;
  flex-shrink: 0;
}
.features-list li strong {
  display: block;
  font-size: 16px;
  margin-bottom: 3px;
}

/* Circle BG for Team Image */
.img-circle-bg {
  background: radial-gradient(circle at center, #eaf6fd 0%, #dbeffc 100%);
  border-radius: 50%;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.img-circle-bg img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Cooling Section */
.cooling-section {
  background-image: url('img/cooling_placeholder.png');
  background-size: cover;
  background-position: center;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Left align */
  padding: 0 60px;
  overflow: hidden;
}

.cooling-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 20%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
}

/* Frosted Glass Box */
.cooling-overlay {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.06); /* Super light */
  backdrop-filter: blur(3px); /* Softer, clearer glass */
  -webkit-backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 40px 50px;
  color: #fff;
  max-width: 460px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  text-align: left;
}

/* Text styling */
.cooling-content h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.cooling-content p {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}



.testimonials-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 1.4;
  color: #222;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background: #f3faff;
  border-radius: 16px;
  padding: 30px 25px;
  max-width: 320px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 25px;
}

.client-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.client-info strong {
  font-weight: 600;
  color: #000;
}

.client-info span {
  font-size: 13px;
  color: #666;
}


.contact-options {
  background-image: url('img/contact_background.png'); /* update to real image */
  background-size: cover;
  background-position: center;
  padding: 80px 30px;
  color: white;
  text-align: center;
}

.contact-overlay {
  background: rgba(0,0,0,0.5);
  padding: 60px 40px;
  border-radius: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-overlay h5 {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  color: #d0eaff;
  margin-bottom: 10px;
}

.contact-overlay h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.4;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.contact-card {
  background: white;
  color: #1e2c39;
  border-radius: 14px;
  padding: 30px 25px;
  width: 280px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  text-align: center;
  transition: transform 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card .icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: #2aa7e2;
}

.contact-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

.contact-card button {
  background: #2aa7e2;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.contact-card.blue {
  background: linear-gradient(to bottom, #2aa7e2, #1a7ec6);
  color: white;
}

.contact-card.blue p {
  color: #eaf7ff;
}


.how-it-works {
  background: #f6fbff;
  text-align: center;
  padding: 80px 30px;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.step-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  width: 250px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.step-card.highlighted {
  background: #2aa7e2;
  color: white;
}

.step-card .icon {
  font-size: 30px;
  margin-bottom: 15px;
}

.step-card h4 {
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
}

.step-card button {
  margin-top: 15px;
  padding: 8px 16px;
  background: #1075c2;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.why-choose {
  background: #fff;
  padding: 80px 40px;
}

.choose-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.choose-left {
  flex: 1 1 50%;
}

.choose-left h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.choose-card {
  background: white;
  border: 1px solid #cce6f6;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.choose-card .icon {
  font-size: 26px;
  color: #2aa7e2;
  margin-bottom: 10px;
}

.choose-card h4 {
  margin-bottom: 8px;
  font-size: 16px;
}

.choose-card p {
  font-size: 14px;
  color: #555;
}

.choose-right {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

.footer {
  background: linear-gradient(to right, #2aa7e2, #1075c2);
  color: white;
  padding: 60px 40px 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-left {
  flex: 1 1 250px;
}

.footer-left h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer-column input {
  margin-top: 10px;
  padding: 10px;
  border: none;
  border-radius: 6px;
  width: 100%;
  font-size: 14px;
}

.newsletter-btn {
  margin-top: 10px;
  background: white;
  color: #1075c2;
  border: none;
  padding: 10px;
  width: 100%;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
}

.footer-bottom .socials span {
  font-size: 20px;
  margin: 0 8px;
}



/* Contact Page Hero Image Override */
.hero.contact-page-hero {
  background-image: url('img/contact-hero.png');
}


.contact-us-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.contact-us-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.contact-form-box,
.contact-info-box {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  flex: 1 1 450px;
  min-width: 300px;
}

.contact-form-box h2,
.contact-info-box h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.contact-form-box p,
.contact-info-box p {
  font-size: 16px;
  margin-bottom: 20px;
}

.contact-form-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1;
}

.contact-form-box input,
.contact-form-box textarea {
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.contact-form-box button {
  padding: 14px;
  background: #2a84ff;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form-box button:hover {
  background: #176ad6;
}

.info-pair {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.social-icons {
  margin-top: 20px;
  font-size: 24px;
  display: flex;
  gap: 15px;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .contact-us-container {
    flex-direction: column;
  }

  .info-pair {
    flex-direction: column;
    gap: 10px;
  }

  .contact-form-box,
  .contact-info-box {
    padding: 20px;
  }
}



.contact-hero {
  background-image: url('img/contact-hero.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 20px 60px;
}


/* Pricing Section */
.pricing-section {
  padding: 60px 20px;
  background: #f9fbfd;
  text-align: center;
}

.pricing-header .section-label {
  color: #007bff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.pricing-header h2 {
  font-size: 28px;
  margin: 10px 0 40px;
  font-weight: 700;
  color: #111;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.pricing-card {
  background: white;
  border: 1px solid #dbe7f5;
  border-radius: 12px;
  padding: 30px;
  width: 260px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card .icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.pricing-card h3 {
  font-size: 20px;
  margin: 10px 0;
}

.pricing-card .subtext {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.pricing-card .price {
  font-size: 32px;
  color: #007bff;
  font-weight: bold;
  margin-bottom: 20px;
}

.pricing-card .price span {
  font-size: 14px;
  color: #333;
}

.features p {
  font-size: 14px;
  text-align: left;
  margin: 6px 0;
}



.choose-btn:hover {
  background: #176ad6;
}

.pricing-card.highlighted {
  background: linear-gradient(180deg, #2196f3 0%, #21cbf3 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.highlighted .subtext,
.pricing-card.highlighted .price span,
.pricing-card.highlighted .features p {
  color: white;
}

.pricing-card.highlighted .choose-btn {
  background: white;
  color: #2196f3;
}

.pricing-card.highlighted .choose-btn:hover {
  background: #e6f4ff;
}

/* Pricing Page Hero Image */
.pricing-page-hero {
  background-image: url('img/Pricing_hero.png'); /* Update to your pricing-specific image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



/* Responsive Styles */
@media (max-width: 1024px) {
  .appliance-card {
    flex: 1 1 calc(50% - 20px);
  }

  .repair-carousel img {
    height: 170px;
  }
}

@media (max-width: 768px) {
  .appliance-card {
    flex: 1 1 100%;
  }

  .repair-carousel img {
    height: 150px;
  }

  .pricing-card {
    padding: 25px 20px;
  }

  .pricing-card h3 {
    font-size: 18px;
  }

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

@media (max-width: 480px) {
  .pricing-card {
    padding: 20px 15px;
  }

  .pricing-card h3 {
    font-size: 16px;
  }

  .pricing-card .price {
    font-size: 24px;
  }

  .repair-carousel img {
    height: 140px;
  }
}


/* Appliances We Repair Section */
.appliance-cards-section {
  background: #fff;
  padding: 80px 30px;
  text-align: center;
}

.appliance-cards-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #111;
  font-weight: 700;
}

.appliance-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.appliance-card {
  background: white;
  border: 1px solid #dce6f4;
  border-radius: 16px;
  padding: 30px 25px;
  max-width: 280px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.2s ease;
}

.appliance-card:hover {
  transform: translateY(-5px);
}

.appliance-card img {
  width: 70px;
  margin-bottom: 20px;
}

.appliance-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.appliance-card p {
  font-size: 14px;
  color: #555;
}

/* Repair Carousel */
.repair-carousel-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.repair-carousel {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.repair-carousel img {
  height: 180px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

@media (max-width: 768px) {
  .appliance-cards-grid {
    flex-direction: column;
    align-items: center;
  }

  .appliance-card {
    width: 90%;
  }

  .repair-carousel img {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .appliance-cards-section h2 {
    font-size: 24px;
  }

  .appliance-card h4 {
    font-size: 16px;
  }

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

  .repair-carousel img {
    height: 120px;
  }
}


/* ========== SMALL DEVICES (Phones < 600px) ========== */
@media (max-width: 600px) {
  .nav-top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .choose-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .choose-right img {
    width: 60%;
    max-width: 200px;
    height: auto;
    margin: 0 auto;
  }

  .choose-grid {
    flex-direction: column;
    gap: 20px;
  }

  .logo img {
    height: 70px;
  }

  .nav-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .cta {
    display: none; /* Hide Contact Us button on mobile */
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 10px auto 0 auto;
    cursor: pointer;
  }

  .hamburger span {
    height: 3px;
    width: 25px;
    background: #222;
    border-radius: 3px;
  }

  .nav-bottom-row {
    display: none;
    flex-direction: column;
    background: white;
    width: 100%;
    padding: 15px 0;
    z-index: 999;
  }

  .nav-bottom-row.show {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 10px 0;
  }

  .cooling-overlay {
    padding: 30px 20px;
    max-width: 90%;
    text-align: center;
  }

  .testimonial-cards,
  .contact-cards,
  .steps,
  .offer-grid,
  .card-wrapper,
  .choose-grid {
    flex-direction: column;
    align-items: center;
  }

  .appointment-bar form {
    flex-direction: column;
    gap: 10px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
}

/* ========== SMALL–MEDIUM DEVICES (Tablets < 768px) ========== */
@media screen and (max-width: 768px) {
  .contact-cards {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  .contact-card {
    width: 100%;
    max-width: 350px;
    margin: 1rem 0;
    box-sizing: border-box;
  }
}

/* ========== MEDIUM DEVICES (Tablets 600px–900px) ========== */
@media (min-width: 601px) {
  .nav-bottom-row {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    background: none;
    padding: 0;
  }

  .hamburger {
    display: none !important;
  }
}

/* ========== SHARED STYLES FOR TABLETS & ABOVE ========== */
@media (min-width: 601px) {
  .nav-contact {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cooling-overlay {
    max-width: 90%;
  }

  .offer-grid,
  .choose-grid,
  .steps,
  .testimonial-cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .footer-content {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta {
    display: block;
    margin-top: 10px;
  }
}

/* ===== DESKTOP NAV RESTORE (Only screens wider than 1024px) ===== */
@media (min-width: 1025px) {
  .nav-outer-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .header-wrapper {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 14px 14px;
    max-width: 1200px;
    width: 95%;
    padding: 20px 30px;
  }

  .hero-overlay {
    padding-top: 200px; /* Prevent overlap from nav */
  }

}

.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  font-size: 28px;
  line-height: 50px;
  text-align: center;
  color: white;
  background: linear-gradient(to right, #00c2ff, #6a49f2);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-decoration: none;
  z-index: 9999;
  cursor: pointer;
}

.back-to-top:hover {
  transform: scale(1.1);
  background: linear-gradient(to right, #009bd3, #5434d4);
}
 /* appliance info secton */

 
