@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Playfair+Display:wght@600;700&display=swap');

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #111;
}

a {
  text-decoration: none;
  color: inherit;
}

/* GLOBAL */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  width: 180px;
  margin-left: -40px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #333;
}


.nav-links a.active {
  color: #2F80ED;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #333;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #ffffff; /* SOLID white */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;

  transform: translateY(-100%);
  transition: transform 0.35s ease;
  z-index: 3000; /* higher than hero overlays */
}


.mobile-menu a {
  font-size: 1.7rem;
  font-weight: 600;
  color: #111;
}

.mobile-menu.open {
  transform: translateY(0);
}

.close-btn {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 2rem;
  cursor: pointer;
}

/* HERO */
.hero {
  min-height: 100vh;      /* instead of height */
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;      /* navbar compensation */
  background-image: url('assets/backgroundCCC.png');
  background-size: cover;
  background-position: center;
  position: relative;
}


.hero-content {
  background: rgba(255,255,255,0.9);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.subheading {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 30px;
  color: #444;
  font-size: 1.15rem;
}

.btn-cta {
  display: inline-block;
  background: #3bbcf4;
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
}

/* ABOUT PREVIEW */
/* ABOUT PREVIEW */
.about-preview {
  position: relative;
  background:
    linear-gradient(rgba(255,255,255,0.86), rgba(255,255,255,0.86)),
    url("assets/victorian-terrace.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);

  padding: 140px 20px;
  text-align: center;
}

.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 6vw, 4.0rem);
  font-weight: 700;
  color: #111;
  margin-bottom: 28px;
  letter-spacing: -0.8px;
}
.accent-word {
  font-style: italic;
  font-weight: 600;
  color: #3bbcf4;
  display: inline-block;
  transform: translateY(1px);
}
.about-description {
  font-size: 1.3rem;
  color: #555;
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.about-description strong {
  font-family: 'Space Grotesk', sans-serif;
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

.about-btn {
  background: transparent;
  border: 2px solid #3bbcf4;
  color: #3bbcf4;
  padding: 12px 30px;
  border-radius: 999px;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.about-btn:hover {
  background: #3bbcf4;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.about-content {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width: 768px) {
  .about-preview{
    padding: 100px 20px;
  }
}

/* =========================
   HOME SERVICES (DARK)
========================= */

.home-services-dark{
  background: #5c646d;
  padding: 120px 0 120px;
}

.home-services-wrap{
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 56px;
}

.home-services-title{
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 4.5vw, 3.7rem);
  color: #6fd6ff;
  text-align: center;
  margin-bottom: 70px;
  letter-spacing: -0.5px;
}

/* 2 columns like Spray */
.home-services-list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 160px;
  row-gap: 0;
}

/* each row */
.service-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  transition: opacity 0.22s ease;
}

/* Spray hover: fades slightly (no rotation) */
.service-row:hover{
  opacity: 0.6;
}

/* plus on the right */
.plus{
  font-size: 1.5rem;
  font-weight: 300;
  color: #6fd6ff;
  opacity: 0.95;
}

/* Button under LEFT column */
.services-cta{
  margin-top: 55px;
  display: flex;
  justify-content: flex-start;
}

.services-btn{
  display: inline-block;
  padding: 14px 44px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid #6fd6ff;
  color: #6fd6ff;
  background: transparent;
  transition: all 0.22s ease;
}

.services-btn:hover{
  background: #6fd6ff;
  color: #2b2f33;
}

/* Mobile = single column + centred button */
@media (max-width: 900px){
  .home-services-wrap{ padding: 0 22px; }
  .home-services-list{
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .services-cta{
    justify-content: center;
  }
}
/* =========================
   MOBILE HERO – SPRAY STYLE
========================= */
@media (max-width: 768px) {
  .hero {
    min-height: calc(100vh - 70px);
    padding-top: 120px;
    background-position: center 18%;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28); /* subtle, not heavy */
    z-index: 1;
  }

  .hero-content {
    background: none;          /* removes the box */
    padding: 0;
    border-radius: 0;
    text-align: left;          /* matches your second screenshot */
    max-width: 100%;
    margin-left: 0;
    transform: translateY(10px);
    position: relative;
    z-index: 2;
  }

  .hero h1 {
    color: #ffffff;
    font-family: 'Playfair Display' , serif;
    font-weight: 600;
    font-size: 2.7rem;
    line-height: 1.40;
    letter-spacing: 0.3px;
    margin-bottom: 26px;
    text-shadow: 0 3px 12px rgba(0,0,0,0.35); /* readability */
  }

  .subheading {
    color: #eaeaea;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 36px;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
  }

  .btn-cta {
   padding: 14px 34px;
  }
}


/* =========================*/
   /*MOBILE NAVBAR / HAMBURGER*/
   @media (max-width: 900px) {
    .hamburger {
      display: flex;
    }
    .nav-links {
      display: none;
    }
  }


/* =========================
   ABOUT HERO
========================= */

.about-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;

  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)
    ),
    url("assets/clean-bubbles.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* content above overlay */
.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding-top: 200px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 40px;

}

/* heading */
.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4rem);
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

/* sub text */
.about-hero .hero-tagline {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #eaeaea;
  opacity: 0.9;

  transform: skewX(-18deg);
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 85vh;
  }

  .about-hero-content {
    padding-top: 120px; /* FIXES disappearing text */
  }

  .about-hero h1 {
    font-size: 2.4rem;
  }

  .about-hero .hero-tagline {
    transform: skewX(-12deg); /* still slanted but readable */
    font-size: 0.85rem;
    letter-spacing: 0.01em;
    display: block;
    margin-top: 12px;
  }
}
/* =========================
   ABOUT INFO SECTION
========================= */

.about-info {
  font-family: 'Inter' , sans-serif;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 0px;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.75),
      rgba(255, 255, 255, 0.75)
    ),
    url("assets/window-cleaning.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* inner wrapper */
.about-info-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px;
  width: 100%;
}
/* centered heading */
.about-info-heading {
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3.2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 90px;
  color: #111;
  letter-spacing: -0.8px;
}
/* two-column layout */
.about-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* paragraphs */
.about-info-grid p {
  max-width: 560px;
}
.about-info-right p {
  font-family: 'Inter' , sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.5;
  color: #0895d1;
}
.about-info-left p {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.5;
  color: #111;
}


/* left column */
.about-info-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about-services-btn {
  align-self: flex-start;
  padding: 16px 44px;
  border-radius: 999px;
  border: 2px solid #3bbcf4;
  color: #3bbcf4;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
.about-services-btn:hover {
  background: #3bbcf4;
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
   MOBILE BEHAVIOUR
========================= */

@media (max-width: 900px) {
  .about-info {
    min-height: 80vh;
    padding-top: 80px;
  }

  .about-info-inner {
    padding: 90px 24px;
  }

  .about-info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* reorder for mobile */
  .about-info-left {
    order: 1;
  }

  .about-info-right {
    order: 2;
  }

  .about-services-btn {
    order: 3;
  }
}

/* =========================
   ABOUT – SOLID COLOUR SECTION
========================= */

.about-solid {
  background-color: #45baec;
  padding: 120px 40px;
}

.about-solid-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* heading */
.about-solid h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 4.2vw, 3.4rem);
  color: #ffffff;
  margin-bottom: 28px;
  letter-spacing: -0.6px;
}

/* paragraph */
.about-solid p {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  max-width: 720px;
  margin: 0 auto;
}

/* mobile */
@media (max-width: 768px) {
  .about-solid {
    padding: 90px 24px;
  }
}
/* =========================
   ABOUT – VALUES & MISSION
========================= */

.about-values {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 60px;
  margin: 60px auto 80px;
  max-width: 900px;
  padding: 0;
  transform: translateX(70px);
}

.about-values li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}

/* mission block */
.about-mission {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-mission h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  margin-bottom: 22px;
  color: #ffffff;
  letter-spacing: -0.4px;
}

.about-mission p {
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 18px;
}

/* mobile */
@media (max-width: 768px) {
  .about-values {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 60px;
    transform: none;
  }

  .about-mission h3 {
    font-size: 1.8rem;
  }
}
.about-values li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

/* base icon */
.icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* individual icons */
.icon-clock {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 1.75A10.25 10.25 0 1022.25 12 10.26 10.26 0 0012 1.75zm0 18.5A8.25 8.25 0 1120.25 12 8.26 8.26 0 0112 20.25zm.75-8.5V6.5a.75.75 0 10-1.5 0v5.75c0 .2.08.39.22.53l3.25 3.25a.75.75 0 101.06-1.06z'/%3E%3C/svg%3E");
}

.icon-smile {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1010 10A10.01 10.01 0 0012 2zm0 18a8 8 0 118-8 8.01 8.01 0 01-8 8zm4-7a4 4 0 01-8 0 .75.75 0 011.5 0 2.5 2.5 0 005 0 .75.75 0 011.5 0z'/%3E%3C/svg%3E");
}

.icon-detail {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M3 4.75A1.75 1.75 0 014.75 3h14.5A1.75 1.75 0 0121 4.75v14.5A1.75 1.75 0 0119.25 21H4.75A1.75 1.75 0 013 19.25zm2 .75v13.5h14V5.5zm4.25 3a.75.75 0 000 1.5h5.5a.75.75 0 000-1.5zm0 4a.75.75 0 000 1.5h5.5a.75.75 0 000-1.5z'/%3E%3C/svg%3E");
}

.icon-shield {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l7 3v6c0 5-3.5 9-7 11-3.5-2-7-6-7-11V5z'/%3E%3C/svg%3E");
}

/* =========================
   ABOUT – MISSION SPLIT LAYOUT
========================= */

.about-mission-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 100px auto 0;
}

.about-mission-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 40px;
  width: 100%;
  height: 100%;
}

.about-mission-image img {
  width: 85%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* mission text on the RIGHT */
.about-mission-text {
  text-align: left;
}

.about-mission-text h3 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.5px;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.about-mission-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 18px;
}
@media (max-width: 900px) {
  .about-mission-row {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 80px;
  }

  .about-mission-text {
    text-align: center;
  }
}
/* =========================
   ABOUT – MISSION BUTTON
========================= */

.mission-btn {
  display: inline-block;
  margin-top: 32px;
  padding: 16px 46px;
  border-radius: 999px;
  background: #ffffff;
  color: #0895d1;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}

.mission-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
}




/* =========================
   SERVICES HERO (SOLID COLOUR)
========================= */

.services-hero {
  padding-top: 250px; /* navbar clearance */
  padding-bottom: 30px;
  background-color:#6fd6ff;
}

.services-hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.services-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 3.3rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
  color: #fff;
}

.services-hero p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #555;
  letter-spacing: 0.3px;
}
/* =========================
   SERVICES GRID
========================= */

.services-grid {
  padding: 50px 0;
}

.services-grid .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  cursor: pointer;
}

.service-image {
  height: 230px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.service-image h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  color: #fff;
}

/*.service-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #f7f9fb;
}
*/
.service-content {
  background:transparent;
}
.service-content p {
  padding: 22px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}
  

/* OPEN STATE 
.service-card.active .service-content {
  max-height: 260px;
}
*/
/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
  .services-grid .container {
    grid-template-columns: 1fr;
  }

  .services-hero {
    padding-top: 200px;
    padding-bottom: 45px;
  }

  .services-hero h1 {
    font-size: 2.3rem;
  }

  .services-hero p {
    font-size: 0.85rem;
  }
}
/* =========================
   SERVICES TRUST CARD
========================= */

.service-trust {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-trust-inner {
  padding: 40px;
  width: 100%;
}

.service-trust h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: #111;
}

/* LIST */
.trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;

  font-size: 1.1.rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 18px;
}
.tick {
  color: #3bbcf4;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  margin-top: 3px;
}


/* BUTTON */
.service-trust-btn {
  display: inline-block;
  padding: 14px 42px;
  border-radius: 999px;
  background: #3bbcf4;
  color: #ffffff;

  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;

  transition: all 0.25s ease;
}
.service-trust-btn:hover {
  background: #2fa9de;
  transform: translateY(-2px);
}

/* =========================
   CONTACT HERO RESET
========================= */

.contact-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 150px; /* reduced */
  display: flex;
  align-items: center; /* FIX */
  background: url('assets/backgroundCCC.png') center / cover no-repeat;
}


/* DARK OVERLAY */
.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* CARD CONTAINER */
.contact-cards {
  position: relative;
  z-index: 2;

  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;

  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: stretch; /* IMPORTANT */
}


/* SHARED CARD STYLE 
.contact-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.4);
}

/* INFO CARD 
.info-card {
  background: #0f2c3d;
  padding: 60px;
  color: #fff;
}

.info-card h1 {
  font-size: 3rem;
  margin-bottom: 35px;
}

.info-card a {
  display: block;
  font-size: 1.3rem;
  color: #4fc3f7;
  margin-bottom: 22px;
  text-decoration: none;
}

.info-card a:hover {
  text-decoration: underline;
}

.info-card .location {
  margin-top: 35px;
  font-size: 1.1rem;
  opacity: 0.85;
}


/* MAP CARD 
.map-card {
  background: #fff;
}

.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
*/

/* REMOVE BOX LOOK */
.contact-card {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

/* LEFT TEXT AREA */
.info-card {
  color: #ffffff;
  padding: 0;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* FIX */
}


/* TEXT STYLING */
.info-card h1 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.info-card a {
  display: block;
  font-size: 1.5rem;
  color: #4fc3f7;
  margin-bottom: 18px;
  text-decoration: none;
}

.info-card .location {
  margin-top: 25px;
  font-size: 1.1rem;
  opacity: 0.9;
}
.info-card .location {
  margin-top: 28px;        /* space after email */
  margin-bottom: 20px;     /* space before opening hours */
  font-size: 1.5rem;
  opacity: 0.8;
  letter-spacing: 0.2px;
}
.info-card .location::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  margin-top: 18px;
}


/* OPENING HOURS */
/* =========================
   OPENING HOURS
========================= */

.opening-hours {
  margin-top: 0px;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1.6;
  opacity: 0.95;
}

.opening-hours strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.opening-hours p {
  margin: 0 0 6px 0;
}
.map-card{
  display: flex;
}

/* MAP — KEEP CLEAN */
.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  padding-top: 100px;
}

@media (max-width: 900px) {
  .contact-hero {
    padding-top: 200px;
    padding-bottom: 60px;
    min-height: auto;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 50px;
    display: flex;
    flex-direction: column;
  }

  .info-card {
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
    padding: 0;
  }

  .info-card h1 {
    font-size: 2.6rem;
    margin-top: 0;
  }
  .map-card {
    display: block;
    width: 100%;
  }

  .map-card img {
    width: 100%;
    height: 280px;       /* guarantees visibility */
    object-fit: cover;
    padding-top: 0;
    border-radius: 12px;
  }
}


@media (max-width: 900px) {
  .logo {
    margin-left: 0;     /* removes the left pull */
    width: 150px;       /* optional: slightly smaller on mobile */
  }
}
/* =========================
   WHATSAPP FLOATING BUTTON
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.30);
}

/* Slightly smaller on mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 18px;
    right: 18px;
  }

  .whatsapp-float img {
    width: 24px;
    height: 24px;
  }
}

/* =========================
   WHATSAPP PULSE ANIMATION
========================= */

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  animation: whatsappPulse 2.8s infinite;
}

/* Stop pulsing when user interacts */
.whatsapp-float:hover {
  animation: none;
}
.whatsapp-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.85);
}
.site-footer {
  background: #f8f9fb;
  border-top: 1px solid #eaeaea;
  padding: 22px 0;
}

.site-footer p {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: #777;
  letter-spacing: 0.3px;
}



