/* style.css - plumbing services, fresh palette, no form in contact */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ----- new color palette (deep teal, warm sand, crisp white) ----- */

:root {
  --deep-teal: #0F172A;        /* primary brand / headings */
  --soft-sand: #F8FAFC;        /* section background */
  --warm-stone: #E2E8F0;       /* borders / subtle lines */
  --slate-light: #F1F5F9;      /* page background */
  --charcoal: #1E293B;         /* body text */
  --white: #FFFFFF;
  --accent-pebble: #6366F1;    /* buttons / highlights */
  --accent-light: #EEF2FF;     /* soft accent background */
  --shadow: 0 12px 30px -8px rgba(15, 23, 42, 0.15);
  --radius-card: 18px;
  --radius-btn: 50px;
  --transition: 0.3s ease;
  --font-main: 'Rubik', sans-serif;
}



body {
  font-family: var(--font-main);
  background-color: var(--slate-light);
  color: var(--charcoal);
  line-height: 1.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
/* remove underline from all links */
a {
  text-decoration: none;
  color: inherit;
}

/* ----- top bar ----- */
.top-bar {
  background-color: var(--deep-teal);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.top-contact span {
  margin-right: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.top-contact i { font-style: normal; font-weight: 300; }
.top-info { color: var(--warm-stone); }

/* ----- sticky header ----- */
.header {
  background-color: var(--white);
  box-shadow: 0 4px 18px rgba(0,0,0,0.02);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--warm-stone);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 2rem;
  font-weight: 500;
  color: var(--deep-teal);
  text-decoration: none;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.logo span {
  font-weight: 300;
  color: var(--accent-pebble);
}

.nav-list {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-link {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 500;
  transition: color var(--transition);
  font-size: 1.05rem;
}
.nav-link:hover {
  color: var(--accent-pebble);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius-btn);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  font-size: 1rem;
  cursor: pointer;
}
.btn-call {
  background: var(--accent-pebble);
  color: white;
}
.btn-call:hover {
  background: #6366F1;
  transform: scale(1.02);
  box-shadow: var(--shadow);
}
/* Hide Call Button on Mobile Screens */
@media (max-width: 768px) {
  .btn-call {
    display: none;
  }
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--deep-teal);
  border-radius: 4px;
  transition: 0.3s;
}

/* ----- hero ----- */
/* new hero section with full background image (no side image) */
.hero {
  padding: 6rem 0 8rem;
  background: linear-gradient(#0F172A6b 0%, rgba(44, 62, 63, 0.85) 100%), 
              url('images/hero-bg.jpg') center/cover no-repeat;
  background-color: var(--deep-teal);
  position: relative;
  isolation: isolate;
  text-align: center;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  color: white;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-description {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero .btn-primary {
  background: var(--accent-pebble);
  color: white;
  border: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.hero .btn-primary:hover {
  background: #6366F1;
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.3);
}

.hero .btn-outline {
  border: 2px solid white;
  color: white;
  background: transparent;
  backdrop-filter: blur(4px);
}

.hero .btn-outline:hover {
  background: white;
  color: var(--deep-teal);
  border-color: white;
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 0 6rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-description {
    font-size: 1.1rem;
  }
}


/* ===== WHY CHOOSE US SECTION – exactly 3 points, no heading/description ===== */
.why-choose-fresh {
  background: #F8F6F2;
  padding: 5rem 0;
}

.why-choose-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.why-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* individual point card */
.why-point {
  background: #FFFFFF;
  padding: 2.5rem 1.8rem;
  border-radius: 28px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid #EEE7DE;
}

.why-point:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 32px -12px rgba(0, 0, 0, 0.1);
  border-color: #DCD0C2;
}

/* icon styling */
.point-icon {
  width: 70px;
  height: 70px;
  background: #EEF2FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.point-icon i {
  font-size: 2rem;
  color: #6366F1;
}

/* title */
.point-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1D2A2A;
  margin-bottom: 0.9rem;
  letter-spacing: -0.2px;
}

/* description text */
.point-text {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #5A6B6B;
  margin: 0;
}

/* responsive */
@media (max-width: 900px) {
  .why-points-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .why-choose-fresh {
    padding: 3.5rem 0;
  }
  
  .why-point {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .why-choose-container {
    padding: 0 1.2rem;
  }
  
  .point-title {
    font-size: 1.25rem;
  }
  
  .point-icon {
    width: 60px;
    height: 60px;
  }
  
  .point-icon i {
    font-size: 1.6rem;
  }
}
/* ----- about ----- */
/* ===== NEW ABOUT US SECTION ===== */
/* completely fresh style – no old classes, no backgrounds from previous versions */
.about-fresh {
  position: relative;
  background: #FEFCF8;
  padding: 7rem 0 8rem 0;
  isolation: isolate;
}

/* subtle organic accent */
.about-fresh::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(162, 136, 106, 0.02) 100%);
  pointer-events: none;
  z-index: 0;
}

.fresh-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* asymmetrical grid layout */
.fresh-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 4.5rem;
  align-items: stretch;
}

/* image side styling */
.fresh-media {
  position: relative;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: 0 32px 48px -20px rgba(0, 0, 0, 0.22);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  background: #F2EBE1;
}

.fresh-media:hover {
  transform: scale(1.01) translateY(-5px);
  box-shadow: 0 40px 56px -20px rgba(0, 0, 0, 0.3);
}

.fresh-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.fresh-media:hover img {
  transform: scale(1.03);
}

/* content side */
.fresh-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fresh-subheading {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #A58E73;
  font-weight: 500;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
  background: #F0EBE2;
  padding: 0.3rem 1rem;
  border-radius: 40px;
  width: fit-content;
}

.fresh-headline {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1D2A2A;
  margin-bottom: 1.8rem;
  letter-spacing: -0.02em;
}

.fresh-headline span {
  background: linear-gradient(120deg, #5B5CE7 0%, #8486F5 80%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
  display: inline-block;
}

.fresh-description {
  font-size: 1.08rem;
  line-height: 1.65;
  color: #3B4A4A;
  margin-bottom: 1.5rem;
  max-width: 92%;
}

.fresh-description strong {
  color: #4F46E5;
  font-weight: 600;
}

/* feature chips with CDN icons */
.fresh-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.8rem 0;
}

.feature-chip {
  background: #FFFFFF;
  border: 1px solid #E7E0D4;
  padding: 0.7rem 1.3rem;
  border-radius: 60px;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #2C3E3B;
  transition: all 0.2s ease;
  backdrop-filter: blur(2px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.feature-chip:hover {
  background: #F9F7F2;
  border-color: #C7BCAB;
  transform: translateY(-2px);
}

.chip-icon {
  font-size: 1rem;
  color: #6366F1;
  width: 1.2rem;
  text-align: center;
}

/* callout section */
.fresh-callout {
  margin-top: 2rem;
  padding: 1rem 0 0 0;
  border-top: 2px dotted #E2D9CF;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.callout-sign {
  background: #6366F110;
  border-radius: 60px;
  padding: 0.45rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4A5B5B;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.callout-sign i {
  font-size: 0.95rem;
  color: #6366F1;
}

/* responsive design */
@media (max-width: 992px) {
  .fresh-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .fresh-headline {
    font-size: 2.6rem;
  }
  
  .fresh-media {
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-fresh {
    padding: 4rem 0;
  }
  
  .fresh-headline {
    font-size: 2.2rem;
  }
  
  .fresh-description {
    max-width: 100%;
    font-size: 1rem;
  }
  
  .fresh-feature-list {
    gap: 0.75rem;
  }
  
  .feature-chip {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .fresh-container {
    padding: 0 1.2rem;
  }
  
  .fresh-headline {
    font-size: 1.9rem;
  }
  
  .fresh-subheading {
    font-size: 0.75rem;
  }
  
  .fresh-callout {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== CONTACT SECTION – long heading, indirect content, phone button ===== */
.contact-quick {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.contact-quick-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* main card */
.contact-quick-card {
  background: #FFFFFF;
  border-radius: 32px;
  padding: 2.5rem 3rem;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.contact-quick-card:hover {
  transform: translateY(-4px);
}

/* text section */
.contact-quick-text {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-quick-heading {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  color: #0F172A;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

.contact-quick-desc {
  font-size: 0.95rem;
  color: #6B7A76;
  line-height: 1.5;
  max-width: 550px;
  margin: 0 auto;
}

/* divider */
.contact-quick-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #E2D9CF, #E2D9CF, transparent);
  margin: 1.5rem 0;
}

/* action section with phone and button */
.contact-quick-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-quick-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #EEF2FF;
  padding: 0.7rem 1.5rem;
  border-radius: 60px;
}

.contact-quick-phone i {
  font-size: 1.2rem;
  color: #6366F1;
}

.contact-quick-phone span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.3px;
}

/* button */
.contact-quick-btn {
  display: inline-block;
  background: #6366F1;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.contact-quick-btn:hover {
  background: #4F46E5;
  transform: translateX(5px);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.35);
}

/* responsive */
@media (max-width: 700px) {
  .contact-quick-card {
    padding: 2rem 1.5rem;
  }
  
  .contact-quick-heading {
    font-size: 1.3rem;
  }
  
  .contact-quick-desc {
    font-size: 0.9rem;
  }
  
  .contact-quick-action {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-quick-phone span {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-quick {
    padding: 3rem 0;
  }
  
  .contact-quick-heading {
    font-size: 1.1rem;
  }
  
  .contact-quick-card {
    padding: 1.5rem;
  }
  
  .contact-quick-btn {
    width: 100%;
    text-align: center;
  }
}
/* ===== SERVICES SECTION – completely new ===== */
/* services-new.css — simple and fresh */

/* ===== SERVICES SECTION – new layout, no images, colors unchanged ===== */
.services-new {
  padding: 5rem 0;
  background: #F8F6F2;
}

.container-new {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.services-heading-wrap {
  text-align: center;
  margin-bottom: 3rem;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.services-sub {
  font-size: 1rem;
  color: #6B7A76;
}

/* new grid layout for services */
.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

/* service card - new layout without images */
.service-block {
  background: white;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.25s ease;
  border: 1px solid #E8E0D5;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.service-block:hover {
  box-shadow: 0 8px 24px rgba(29, 91, 94, 0.1);
  transform: translateY(-4px);
  border-color: #D4C9BC;
}

/* large icon styling - replaces images */
.service-icon-large {
  width: 70px;
  height: 70px;
  background: #EEF2FF;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  transition: all 0.2s ease;
}

.service-block:hover .service-icon-large {
  background: #E0E7FF;
  border-radius: 24px;
}

.service-icon-large i {
  font-size: 2rem;
  color: #6366F1;
}

/* info section */
.service-block-info {
  width: 100%;
}

.service-block-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 0.6rem;
}

.service-block-text {
  font-size: 0.9rem;
  color: #5A6E6A;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.service-block-link {
  color: #6366F1;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
}

.service-block-link:hover {
  color: #4F46E5;
  gap: 8px;
}

/* responsive */
@media (max-width: 900px) {
  .services-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .services-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .services-list {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .services-new {
    padding: 3rem 0;
  }
  
  .services-title {
    font-size: 1.8rem;
  }
  
  .service-block {
    padding: 1.5rem 1.2rem;
  }
  
  .service-icon-large {
    width: 60px;
    height: 60px;
  }
  
  .service-icon-large i {
    font-size: 1.6rem;
  }
}
/* ===== FAQ SECTION – accordion style, fresh layout, general plumbing content ===== */
.faq-fresh {
  padding: 5rem 0;
  background: #FFFFFF;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* header styling */
.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6366F1;
  font-weight: 600;
  background: #EEF2FF;
  padding: 0.3rem 1rem;
  border-radius: 40px;
  margin-bottom: 1rem;
}

.faq-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.faq-subtitle {
  font-size: 1rem;
  color: #6B7A76;
}

/* accordion styling */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: #F8F6F2;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.2s ease;
  border: 1px solid #E8E0D5;
}

.accordion-item:hover {
  border-color: #D4C9BC;
}

/* accordion button */
.accordion-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #0F172A;
  text-align: left;
  transition: all 0.2s ease;
}

.accordion-button:hover {
  background: #F3F0EA;
}

.accordion-question {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: #1D2A2A;
  letter-spacing: -0.2px;
}

.accordion-icon {
  width: 28px;
  height: 28px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion-icon i {
  font-size: 0.8rem;
  color: #6366F1;
  transition: transform 0.3s ease;
}

/* active state for open accordion */
.accordion-item.active .accordion-icon i {
  transform: rotate(45deg);
}

.accordion-item.active .accordion-button {
  border-bottom: 1px solid #E8E0D5;
}

/* accordion content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem 1.5rem;
  transition: max-height 0.4s ease-in;
}

.accordion-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5A6E6A;
  margin: 0;
}

/* responsive */
@media (max-width: 768px) {
  .faq-fresh {
    padding: 3.5rem 0;
  }
  
  .faq-title {
    font-size: 1.9rem;
  }
  
  .accordion-button {
    padding: 1rem 1.2rem;
  }
  
  .accordion-question {
    font-size: 0.95rem;
  }
  
  .accordion-content p {
    font-size: 0.9rem;
  }
  
  .accordion-item.active .accordion-content {
    padding: 0 1.2rem 1rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .faq-fresh {
    padding: 2.5rem 0;
  }
  
  .faq-title {
    font-size: 1.6rem;
  }
  
  .faq-badge {
    font-size: 0.7rem;
  }
  
  .accordion-button {
    padding: 0.9rem 1rem;
  }
  
  .accordion-question {
    font-size: 0.9rem;
  }
  
  .accordion-icon {
    width: 24px;
    height: 24px;
  }
  
  .accordion-icon i {
    font-size: 0.7rem;
  }
}

/* ----- contact (no form) new style ----- */
/* ===== CONTACT SECTION – no forms, no maps, address added, Mon–Sun 24/7 ===== */
.contact-fresh {
  padding: 6rem 0;
  background: linear-gradient(145deg, #FEFCF8 0%, #FBF9F5 100%);
}

.contact-fresh-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.8rem;
}

/* header styles */
.contact-fresh-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-fresh-badge {
  display: inline-block;
  background: #6366F1;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.contact-fresh-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.contact-fresh-subtitle {
  font-size: 1rem;
  color: #6B7A76;
  max-width: 500px;
  margin: 0 auto;
}

/* 3-column grid layout */
.contact-fresh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

/* individual cards */
.contact-fresh-card {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #EDE6DC;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.contact-fresh-card:hover {
  transform: translateY(-6px);
  border-color: #D4C9BC;
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.08);
}

/* icon styling */
.card-icon-bg {
  width: 70px;
  height: 70px;
  background: #EEF2FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  transition: all 0.2s ease;
}

.contact-fresh-card:hover .card-icon-bg {
  background: #E0E7FF;
  transform: scale(1.02);
}

.card-icon-bg i {
  font-size: 1.8rem;
  color: #6366F1;
}

/* card text */
.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.6rem;
}

.card-detail {
  font-size: 1.1rem;
  font-weight: 500;
  color: #2C3E3F;
  margin-bottom: 0.25rem;
}

.card-detail:last-of-type {
  margin-bottom: 0.4rem;
}

.card-note {
  font-size: 0.85rem;
  color: #8A9A95;
  margin-top: 0.5rem;
}

/* card link */
.card-link {
  display: inline-block;
  margin-top: 0.8rem;
  color: #6366F1;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}

.card-link:hover {
  transform: translateX(5px);
  color: #4F46E5;
}

/* hours section – simplified Mon–Sun 24/7 */
.contact-fresh-hours {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 1.5rem 2rem;
  border: 1px solid #EDE6DC;
  margin-bottom: 1.5rem;
  text-align: center;
}

.hours-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #EEF2FF;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6366F1;
}

.hours-header i {
  font-size: 0.9rem;
}

.hours-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.hours-days {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0F172A;
}

.hours-time {
  font-size: 1.3rem;
  font-weight: 700;
  color: #6366F1;
  background: #EEF2FF;
  padding: 0.2rem 1rem;
  border-radius: 40px;
}

/* simple note */
.contact-fresh-note {
  text-align: center;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #6B7A76;
  flex-wrap: wrap;
}

.contact-fresh-note i {
  color: #6366F1;
  font-size: 0.9rem;
}

/* responsive */
@media (max-width: 900px) {
  .contact-fresh-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .contact-fresh-title {
    font-size: 2.2rem;
  }
  
  .contact-fresh {
    padding: 4rem 0;
  }
}

@media (max-width: 650px) {
  .contact-fresh-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-fresh-title {
    font-size: 1.9rem;
  }
  
  .contact-fresh-card {
    padding: 1.8rem 1.2rem;
  }
  
  .card-icon-bg {
    width: 60px;
    height: 60px;
  }
  
  .card-icon-bg i {
    font-size: 1.5rem;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
  
  .hours-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .hours-time {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .contact-fresh {
    padding: 3rem 0;
  }
  
  .contact-fresh-container {
    padding: 0 1.2rem;
  }
  
  .contact-fresh-title {
    font-size: 1.7rem;
  }
  
  .contact-fresh-hours {
    padding: 1.2rem;
  }
}

/* ===== CONTACT SECTION – new class names, no contact details ===== */
/* ===== CONTACT SECTION – new class names, no contact details, with button ===== */
.contact-simple {
  padding: 6rem 0;
  background: linear-gradient(145deg, #FEFCF8 0%, #FBF9F5 100%);
}

.contact-simple-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.8rem;
}

/* header styles */
.contact-simple-header {
  text-align: center;
}

.contact-simple-badge {
  display: inline-block;
  background: #6366F1;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.contact-simple-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.contact-simple-subtitle {
  font-size: 1rem;
  color: #6B7A76;
  max-width: 500px;
  margin: 0 auto 2rem auto;
}

/* button styles */
.contact-simple-btn {
  display: inline-block;
  background: #6366F1;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
  border: none;
  cursor: pointer;
}

.contact-simple-btn:hover {
  background: #4F46E5;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

/* responsive */
@media (max-width: 900px) {
  .contact-simple-title {
    font-size: 2.2rem;
  }
  
  .contact-simple {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .contact-simple {
    padding: 3rem 0;
  }
  
  .contact-simple-container {
    padding: 0 1.2rem;
  }
  
  .contact-simple-title {
    font-size: 1.7rem;
  }
  
  .contact-simple-btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.8rem;
  }
}

/* ----- footer ----- */
/* ===== FOOTER – brand new layout, same color theme, no contact details ===== */
.footer-plumb {
  background: #0F172A;
  color: #D1D8D4;
  padding: 4rem 0 0;
  
}

.footer-plumb-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* 4-column grid layout */
.footer-plumb-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* brand section */
.footer-plumb-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-plumb-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-plumb-logo i {
  font-size: 1.8rem;
  color: #6366F1;
  background: rgba(99, 102, 241, 0.15);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-plumb-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.3px;
}

.footer-plumb-motto {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.7;
  max-width: 220px;
}

/* navigation columns */
.footer-plumb-nav h4 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: 0.3px;
  position: relative;
  display: inline-block;
}

.footer-plumb-nav h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #6366F1;
  border-radius: 2px;
}

.footer-plumb-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-plumb-nav li {
  margin-bottom: 0.7rem;
}

.footer-plumb-nav a {
  color: #D1D8D4;
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.25s ease;
  opacity: 0.75;
  display: inline-block;
}

.footer-plumb-nav a:hover {
  color: #6366F1;
  opacity: 1;
  transform: translateX(5px);
}

/* bottom bar */
.footer-plumb-bottom {
  text-align: center;
  padding: 1.8rem 0;
}

.footer-plumb-bottom p {
  font-size: 0.8rem;
  opacity: 0.5;
  margin: 0;
  letter-spacing: 0.3px;
}

/* responsive */
@media (max-width: 950px) {
  .footer-plumb-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-plumb-brand {
    grid-column: span 3;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .footer-plumb-motto {
    max-width: none;
  }
}

@media (max-width: 700px) {
  .footer-plumb-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
  
  .footer-plumb-brand {
    grid-column: span 2;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-plumb {
    padding: 3rem 0 0;
  }
}

@media (max-width: 500px) {
  .footer-plumb-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-plumb-brand {
    grid-column: span 1;
  }
  
  .footer-plumb-container {
    padding: 0 1.5rem;
  }
  
  .footer-plumb-logo span {
    font-size: 1.3rem;
  }
  
  .footer-plumb-logo i {
    font-size: 1.5rem;
    width: 42px;
    height: 42px;
  }
}

/* ----- responsive & mobile menu ----- */
@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 130px;
    left: -100%;
    width: 260px;
    background: white;
    height: 100vh;
    box-shadow: 2px 0 20px rgba(0,0,0,0.1);
    padding: 2rem;
    transition: left 0.3s;
    z-index: 99;
  }
  .nav.active {
    left: 0;
  }
  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
  }
  .hamburger {
    display: flex;
  }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }

  .hero-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-title { font-size: 2.5rem; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .top-bar .container { flex-direction: column; align-items: start; gap: 0.2rem; }
  .top-contact span { margin-right: 1rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 2rem; }
}

/* helper */
.text-center {
  text-align: center;
}