/* style.css */
/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  color: #1a2c3e;
  background-color: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6E1A37;
  background: rgba(11, 94, 94, 0.08);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem auto;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #6E1A37;
  margin-bottom: 1rem;
}

.section-header p {
  color: #AE2448;
  font-size: 1.1rem;
}

/* ========== TOP BAR ========== */
.top-bar {
  background: linear-gradient(90deg, #6E1A37 0%, #AE2448 100%);
  color: #ffffff;
  font-size: 0.85rem;
  padding: 10px 0;
  position: relative;
  z-index: 102;
}

.top-bar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  white-space: nowrap;
}

.top-bar-item i {
  font-size: 0.85rem;
  opacity: 0.9;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.95);
}

.top-bar a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar-social a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.top-bar-social a:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

/* ========== HEADER / STICKY NAV ========== */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  position: sticky;
  top: 0;
  z-index: 101;
  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(10px);
  padding: 14px 0;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: 800;
  color: #6E1A37;
}

.logo i {
  color: #AE2448;
  font-size: 1.8rem;
}

.logo .accent {
  color: #AE2448;
}

.main-nav {
  justify-self: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: #2c4b5c;
  transition: 0.2s;
  padding: 10px 2px;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #AE2448;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.main-nav a:hover {
  color: #AE2448;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

.cta-phone {
  text-align: right;
}

.need-help-txt {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: #5e7b8c;
  letter-spacing: 0.3px;
}

.phone-number {
  font-weight: 800;
  font-size: 1.2rem;
  color: #AE2448;
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-number i {
  font-size: 1rem;
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #AE2448;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 14px 30px rgba(174, 36, 72, 0.25);
}

.header-cta-btn:hover {
  background: #8f1e3b;
  transform: translateY(-1px);
}

.nav-cta {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #6E1A37;
}

.mobile-menu-close {
  display: none;
}

/* ========== RESPONSIVE MODE ONLY ========== */
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 340px);
    height: 100vh;
    background: white;
    box-shadow: 2px 0 30px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 1000;
    padding: 18px 0 22px;
    display: flex;
    flex-direction: column;
  }

  .main-nav.active {
    transform: translateX(0);
  }

  .mobile-menu-close {
    display: block;
    text-align: right;
    padding: 16px 24px;
    font-size: 1.6rem;
    cursor: pointer;
    color: #6E1A37;
    border-bottom: 1px solid #eef2f5;
    margin-bottom: 20px;
  }

  .mobile-menu-close i {
    font-size: 1.6rem;
  }

  .main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 24px;
  }

  .main-nav ul li {
    border-bottom: 1px solid #f0f4f7;
  }

  .main-nav ul li a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
    margin: 18px 24px 0;
  }

  .header-container {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    justify-self: auto;
  }

  .cta-phone {
    text-align: left;
  }

  .need-help-txt {
    display: none;
  }

  .phone-number {
    font-size: 1.05rem;
  }

  .header-cta-btn.header-cta {
    display: none;
  }

  .top-bar-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .top-bar-left,
  .top-bar-right {
    width: 100%;
    justify-content: space-between;
  }

  .top-location {
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .top-location {
    display: none;
  }

  .top-bar-social {
    display: none;
  }
}

/* Overlay for mobile menu */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.menu-overlay.active {
  display: block;
}

/* ========== HERO SECTION ========== */
/* plumbing-hero-new.css */
.plumbing-hero-new {
  position: relative;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center 20%;
  padding: 90px 0;
}

.plumbing-hero-new__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 46, 58, 0.85);
}

.plumbing-hero-new__container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.plumbing-hero-new__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.plumbing-hero-new__text {
  flex: 1;
  color: white;
}

.plumbing-hero-new__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #5fc1b0;
}

.plumbing-hero-new__label i {
  font-size: 1rem;
}

.plumbing-hero-new__heading {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
}

.plumbing-hero-new__divider {
  width: 60px;
  height: 3px;
  background-color: #AE2448;
  margin-bottom: 22px;
}

.plumbing-hero-new__paragraph {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.88;
  margin-bottom: 30px;
  max-width: 85%;
}

.plumbing-hero-new__action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 35px;
}

.plumbing-hero-new__primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #AE2448;
  color: white;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.2s;
}

.plumbing-hero-new__primary-btn:hover {
  background-color: #8a1d3a;
}

.plumbing-hero-new__secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: 0.2s;
}

.plumbing-hero-new__secondary-btn:hover {
  border-color: #5fc1b0;
  background: rgba(95, 193, 176, 0.1);
}

.plumbing-hero-new__info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.plumbing-hero-new__info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
}

.plumbing-hero-new__info-item i {
  color: #5fc1b0;
  font-size: 1rem;
}

.plumbing-hero-new__icon-area {
  flex: 0.5;
  display: flex;
  justify-content: center;
}

.plumbing-hero-new__icon-bubble {
  width: 180px;
  height: 180px;
  background: rgba(95, 193, 176, 0.1);
  border-radius: 60% 40% 50% 50% / 45% 50% 50% 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(95, 193, 176, 0.4);
}

.plumbing-hero-new__icon-bubble i {
  font-size: 80px;
  color: #5fc1b0;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 850px) {
  .plumbing-hero-new__grid {
    flex-direction: column;
    text-align: center;
  }
  .plumbing-hero-new__paragraph {
    max-width: 100%;
  }
  .plumbing-hero-new__divider {
    margin-left: auto;
    margin-right: auto;
  }
  .plumbing-hero-new__action-group {
    justify-content: center;
  }
  .plumbing-hero-new__info-row {
    justify-content: center;
  }
  .plumbing-hero-new__heading {
    font-size: 2.2rem;
  }
  .plumbing-hero-new__icon-bubble {
    width: 140px;
    height: 140px;
  }
  .plumbing-hero-new__icon-bubble i {
    font-size: 60px;
  }
}
/* ========== WHY CHOOSE US ========== */
/* why-new.css */
.why-new {
  padding: 80px 0;
  background: #f8fbfa;
}

.why-new__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.why-new__grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.why-new__card {
  flex: 1;
  min-width: 260px;
  max-width: 350px;
  background: white;
  padding: 44px 32px;
  text-align: center;
  border-bottom: 4px solid #AE2448;
  transition: all 0.25s ease;
}

.why-new__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
}

.why-new__icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px auto;
  background: #eef5f3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.why-new__icon-wrap i {
  font-size: 2rem;
  color: #AE2448;
}

.why-new__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0A2E3A;
  margin-bottom: 14px;
  line-height: 1.3;
}

.why-new__desc {
  font-size: 0.95rem;
  color: #567a8a;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .why-new__grid {
    gap: 30px;
  }
  .why-new__card {
    padding: 36px 24px;
  }
  .why-new {
    padding: 60px 0;
  }
}

@media (max-width: 700px) {
  .why-new__card {
    min-width: 100%;
    max-width: 100%;
  }
  .why-new__icon-wrap {
    width: 60px;
    height: 60px;
  }
  .why-new__icon-wrap i {
    font-size: 1.6rem;
  }
  .why-new__title {
    font-size: 1.2rem;
  }
  .why-new {
    padding: 48px 0;
  }
}

@media (max-width: 480px) {
  .why-new__container {
    padding: 0 20px;
  }
}
/*=============Contact Heading Section=======*/
.cta-contact-heading {
  background: #6E1A37;
  padding: 70px 20px;
  text-align: center;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-contact-heading h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 32px;
}

.cta-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #AE2448;
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-contact-btn i {
  font-size: 1.3rem;
}

.cta-contact-btn:hover {
  background: #6E1A37;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-contact-heading {
    padding: 50px 16px;
  }
  
  .cta-contact-heading h2 {
    font-size: 1.6rem;
  }
  
  .cta-contact-btn {
    font-size: 1.1rem;
    padding: 14px 32px;
  }
}

@media (max-width: 480px) {
  .cta-contact-heading h2 {
    font-size: 1.4rem;
  }
  
  .cta-contact-btn {
    font-size: 1rem;
    padding: 12px 28px;
  }
}

/* ========== ABOUT US ========== */
/* about-new.css */
.about-new {
  padding: 100px 0;
  background: #ffffff;
}

.about-new__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.about-new__row {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-new__image {
  flex: 1;
  position: relative;
}

.about-new__image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  filter: brightness(0.98);
}

.about-new__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  background-color: #AE2448;
  z-index: 1;
}

.about-new__content {
  flex: 1;
}

.about-new__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.about-new__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #e6f4f1;
  border-radius: 12px;
  color: #AE2448;
  font-size: 1.2rem;
}

.about-new__preheader {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #AE2448;
  text-transform: uppercase;
}

.about-new__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0A2E3A;
  margin-bottom: 24px;
}

.about-new__text {
  color: #4a6a74;
  line-height: 1.55;
  margin-bottom: 18px;
  font-size: 1rem;
}

.about-new__contact-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 32px 0 28px 0;
  padding: 18px 0;
  border-top: 1px solid #e0ece9;
  border-bottom: 1px solid #e0ece9;
}

.about-new__location {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0A2E3A;
  font-weight: 500;
  font-size: 0.9rem;
}

.about-new__location i {
  color: #5fc1b0;
  font-size: 1.1rem;
}

.about-new__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #AE2448;
  color: white;
  padding: 10px 22px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color 0.2s;
}

.about-new__phone:hover {
  background-color: #8a1d3a;
}

.about-new__footer {
  margin-top: 8px;
}

.about-new__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0A2E3A;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s;
}

.about-new__link i {
  transition: transform 0.2s;
}

.about-new__link:hover {
  gap: 12px;
}

.about-new__link:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 992px) {
  .about-new__row {
    gap: 50px;
  }
  .about-new__title {
    font-size: 2rem;
  }
  .about-new__image img {
    height: 400px;
  }
  .about-new__image-accent {
    width: 140px;
    height: 140px;
    bottom: -15px;
    right: -15px;
  }
}

@media (max-width: 768px) {
  .about-new {
    padding: 60px 0;
  }
  .about-new__row {
    flex-direction: column;
    gap: 50px;
  }
  .about-new__image img {
    height: 340px;
  }
  .about-new__image-accent {
    width: 100px;
    height: 100px;
    bottom: -10px;
    right: -10px;
  }
  .about-new__contact-line {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-new__title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .about-new__container {
    padding: 0 20px;
  }
  .about-new__title {
    font-size: 1.6rem;
  }
  .about-new__image img {
    height: 260px;
  }
  .about-new__phone {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}

/* ========== SERVICES SECTION ========== */
/* services-fresh.css */
.services-fresh {
  padding: 100px 0;
  background: #ffffff;
}

.services-fresh__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.services-fresh__intro {
  margin-bottom: 60px;
}

.services-fresh__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0eef2;
  padding: 8px 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #AE2448;
  margin-bottom: 24px;
}

.services-fresh__badge i {
  font-size: 0.8rem;
}

.services-fresh__heading {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0A2E3A;
  line-height: 1.2;
  margin-bottom: 20px;
}

.services-fresh__line {
  width: 70px;
  height: 3px;
  background: #5fc1b0;
}

.services-fresh__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 50px;
}

.services-fresh__item {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #e8eeec;
  padding-bottom: 28px;
}

.services-fresh__number {
  font-size: 1rem;
  font-weight: 700;
  color: #5fc1b0;
  letter-spacing: 1px;
  opacity: 0.7;
  min-width: 35px;
}

.services-fresh__item-content {
  display: flex;
  gap: 18px;
  flex: 1;
}

.services-fresh__item-icon {
  width: 48px;
  height: 48px;
  background: #f4f8f7;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  flex-shrink: 0;
}

.services-fresh__item-icon i {
  font-size: 1.4rem;
  color: #AE2448;
}

.services-fresh__item-text {
  flex: 1;
}

.services-fresh__item-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0A2E3A;
  margin-bottom: 8px;
}

.services-fresh__item-text p {
  font-size: 0.9rem;
  color: #6a8d98;
  line-height: 1.45;
}

/* Responsive */
@media (max-width: 900px) {
  .services-fresh {
    padding: 70px 0;
  }
  .services-fresh__list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .services-fresh__heading {
    font-size: 2.1rem;
  }
}

@media (max-width: 600px) {
  .services-fresh__container {
    padding: 0 24px;
  }
  .services-fresh__item-content {
    flex-direction: column;
    gap: 12px;
  }
  .services-fresh__item-icon {
    width: 42px;
    height: 42px;
  }
  .services-fresh__item-icon i {
    font-size: 1.2rem;
  }
  .services-fresh__heading {
    font-size: 1.7rem;
  }
  .services-fresh {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .services-fresh__item {
    gap: 12px;
    padding-bottom: 20px;
  }
  .services-fresh__number {
    font-size: 0.85rem;
    min-width: 28px;
  }
  .services-fresh__item-text h3 {
    font-size: 1rem;
  }
  .services-fresh__item-text p {
    font-size: 0.85rem;
  }
}

/* ========== FAQ SECTION (ACCORDION) ========== */
/* faq-new.css */
.faq-new {
  padding: 90px 0;
  background: #f7fbfa;
}

.faq-new__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.faq-new__header {
  margin-bottom: 55px;
}

.faq-new__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #5fc1b0;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.faq-new__tag i {
  font-size: 0.85rem;
}

.faq-new__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0A2E3A;
  line-height: 1.2;
  margin-bottom: 18px;
}

.faq-new__divider {
  width: 55px;
  height: 3px;
  background: #AE2448;
}

.faq-new__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 50px;
}

.faq-new__col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-new__item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  border: 1px solid #e2ece9;
}

.faq-new__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: white;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #0A2E3A;
  transition: all 0.2s;
}

.faq-new__question span {
  flex: 1;
  line-height: 1.4;
}

.faq-new__question i {
  color: #AE2448;
  font-size: 1rem;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-new__question:hover {
  background: #fef8f9;
}

.faq-new__item.active .faq-new__question i {
  transform: rotate(45deg);
}

.faq-new__answer {
  display: none;
  padding: 0 24px 22px 24px;
  border-top: 1px solid #eef3f1;
  background: #fefefe;
}

.faq-new__answer p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #5a7e8a;
}

/* Responsive */
@media (max-width: 850px) {
  .faq-new__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .faq-new {
    padding: 65px 0;
  }
  .faq-new__title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .faq-new__container {
    padding: 0 24px;
  }
  .faq-new__title {
    font-size: 1.6rem;
  }
  .faq-new__question {
    padding: 16px 18px;
    font-size: 0.9rem;
  }
  .faq-new__answer {
    padding: 0 18px 18px 18px;
  }
  .faq-new {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .faq-new__title {
    font-size: 1.4rem;
  }
  .faq-new__question span {
    font-size: 0.85rem;
  }
  .faq-new__answer p {
    font-size: 0.8rem;
  }
}

/* ========== CONTACT SECTION (NO FORMS/MAPS) ========== */
/* contact-fresh.css */
.contact-fresh {
  padding: 100px 0;
  background:#6E1A37;
}

.contact-fresh__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.contact-fresh__card {
  max-width: 750px;
  width: 100%;
  background: white;
  border-radius: 48px;
  position: relative;
  overflow: hidden;
}

.contact-fresh__pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(95,193,176,0.08) 0%, rgba(95,193,176,0) 70%);
  border-radius: 0 48px 0 100%;
}

.contact-fresh__inner {
  padding: 52px 48px;
  position: relative;
  z-index: 2;
}

.contact-fresh__icon {
  width: 64px;
  height: 64px;
  background: #eef5f3;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.contact-fresh__icon i {
  font-size: 1.8rem;
  color: #AE2448;
}

.contact-fresh__heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0A2E3A;
  line-height: 1.25;
  margin-bottom: 16px;
}

.contact-fresh__subhead {
  font-size: 1rem;
  color: #5a7e8a;
  line-height: 1.5;
  margin-bottom: 36px;
  max-width: 85%;
}

.contact-fresh__methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-fresh__method {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-fresh__method-icon {
  width: 48px;
  height: 48px;
  background: #f4f8f7;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-fresh__method-icon i {
  font-size: 1.2rem;
  color: #AE2448;
}

.contact-fresh__method-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-fresh__method-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #5fc1b0;
  text-transform: uppercase;
}

.contact-fresh__method-value {
  font-size: 1rem;
  font-weight: 500;
  color: #0A2E3A;
  text-decoration: none;
}

.contact-fresh__method-value:hover {
  color: #AE2448;
}

.contact-fresh__action {
  border-top: 1px solid #e8eeec;
  padding-top: 32px;
}

.contact-fresh__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #AE2448;
  color: white;
  padding: 14px 32px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.contact-fresh__button:hover {
  background: #8a1d3a;
  gap: 16px;
}

.contact-fresh__badge {
  text-align: center;
  max-width: 500px;
}

.contact-fresh__badge-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.contact-fresh__badge-icon i {
  font-size: 1.4rem;
  color: #5fc1b0;
}

.contact-fresh__badge p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 700px) {
  .contact-fresh {
    padding: 65px 0;
  }
  .contact-fresh__container {
    padding: 0 20px;
  }
  .contact-fresh__inner {
    padding: 36px 28px;
  }
  .contact-fresh__heading {
    font-size: 1.7rem;
  }
  .contact-fresh__subhead {
    max-width: 100%;
    font-size: 0.9rem;
  }
  .contact-fresh__method {
    gap: 14px;
  }
  .contact-fresh__method-icon {
    width: 42px;
    height: 42px;
  }
  .contact-fresh__method-value {
    font-size: 0.85rem;
  }
  .contact-fresh__button {
    padding: 12px 26px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .contact-fresh__heading {
    font-size: 1.4rem;
  }
  .contact-fresh__inner {
    padding: 28px 20px;
  }
  .contact-fresh__icon {
    width: 50px;
    height: 50px;
  }
  .contact-fresh__icon i {
    font-size: 1.4rem;
  }
  .contact-fresh__method {
    flex-wrap: wrap;
  }
  .contact-fresh__badge p {
    font-size: 0.8rem;
  }
}
/* ========== FOOTER ========== */
/* footer-new.css */
.footer-new {
  background: #ffffff;
  padding: 60px 0 30px;
  border-top: 1px solid #e8eeec;
}

.footer-new__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-new__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
  padding-bottom: 45px;
  border-bottom: 1px solid #e8eeec;
}

.footer-new__brand {
  flex: 1;
  min-width: 200px;
}

.footer-new__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0A2E3A;
  margin-bottom: 12px;
}

.footer-new__logo i {
  color: #AE2448;
  font-size: 1.4rem;
}

.footer-new__logo-accent {
  color: #AE2448;
}

.footer-new__tagline {
  font-size: 0.85rem;
  color: #6a8d98;
  margin: 0;
}

.footer-new__links {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.footer-new__group h4 {
  color: #0A2E3A;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-new__group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-new__group li {
  margin-bottom: 12px;
}

.footer-new__group a {
  color: #6a8d98;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-new__group a:hover {
  color: #AE2448;
}

.footer-new__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 28px;
}

.footer-new__bottom p {
  color: #8aabb5;
  font-size: 0.75rem;
  margin: 0;
}

.footer-new__legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-new__legal a {
  color: #8aabb5;
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.2s;
}

.footer-new__legal a:hover {
  color: #AE2448;
}

.footer-new__legal span {
  color: #c0d4da;
  font-size: 0.7rem;
}

/* Responsive */
@media (max-width: 750px) {
  .footer-new__top {
    flex-direction: column;
    gap: 40px;
  }
  .footer-new__links {
    gap: 40px;
  }
  .footer-new__bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .footer-new__container {
    padding: 0 24px;
  }
  .footer-new {
    padding: 45px 0 25px;
  }
}

@media (max-width: 480px) {
  .footer-new__links {
    flex-direction: column;
    gap: 30px;
  }
  .footer-new__logo {
    font-size: 1.3rem;
  }
  .footer-new__tagline {
    font-size: 0.75rem;
  }
}
/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .about-grid {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-description {
    max-width: 100%;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 680px) {
  .container, .header-container, .top-bar-container {
    padding: 0 20px;
  }
  .hero-features {
    flex-direction: column;
    gap: 12px;
  }
  .section-header h2 {
    font-size: 1.7rem;
  }
  .btn {
    padding: 10px 24px;
  }
  .contact-info-card {
    padding: 32px 24px;
  }
  .faq-question {
    padding: 16px 20px;
  }
  .faq-question h3 {
    font-size: 1rem;
  }
}
