/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* COLORS */
:root {
  --white: #ffffff;
  --black: #000000;
  --red: #e10600;
  --gray: #f5f5f5;
}

/* GLOBAL */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: white;
  color: black;
}

/* HEADER UPGRADE */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: 0.3s;
}

/* LOGO */
.logo-img {
  height: 55px;
}

.logo-text {
  font-weight: 700;
  font-size: 20px;
}

/* NAV */
nav a {
  margin-left: 30px;
  text-decoration: none;
  color: black;
  font-weight: 500;
  transition: 0.3s;
}

/* HOVER EFFECT */
nav a:hover {
  color: #e10600;
}

/* CTA BUTTON (KEY PART 🔥) */
.quote-btn {
  background: #e10600;
  color: white !important;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
}

.quote-btn:hover {
  background: #b00500;
}

/* SHRINK ON SCROLL */
.site-header.scrolled {
  padding: 12px 60px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.logo-text {
  font-weight: 700;
  font-size: 20px;
}

/* NAV */
nav a {
  margin-left: 30px;
  text-decoration: none;
  color: black;
  font-weight: 500;
  position: relative;
}

/* NAV HOVER ANIMATION */
nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--red);
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* HERO */


/* HERO CONTENT */
.hero-overlay {
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 20px;
}

/* BUTTON */
.hero-btn {
  background: var(--red);
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #b00500;
  transform: scale(1.05);
}

/* SECTION */
.section {
  padding: 120px 40px;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD (HIGH-END STYLE) */
.card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: var(--red);
}

/* CTA SECTION */
.cta {
  text-align: center;
  padding: 80px 20px;
  background: var(--gray);
}

.btn {
  background: var(--red);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* FORM */
form input, form select, form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
}

form button {
  background: var(--red);
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
}

/* FOOTER */
footer {
  background: black;
  color: white;
  text-align: center;
  padding: 30px;
}

.map-container {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 1px solid #eee;
}


/* NEW GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* CARD STYLE */
.service-card {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
}

/* TITLE */
.service-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

/* DESCRIPTION */
.service-card p {
  color: #555;
  margin-bottom: 10px;
}

/* DETAILS (HIDDEN BY DEFAULT) */
.details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* EXPAND ON HOVER (DESKTOP) */
.service-card:hover .details {
  max-height: 200px;
}

/* LIST */
.details ul {
  margin: 0;
  padding-left: 18px;
}

.details li {
  margin: 6px 0;
  color: #333;
}

/* PREMIUM CARD */
.premium {
  border: 2px solid var(--red);
  background: linear-gradient(to bottom, #fff, #fff5f5);
}

.service-card.open .details {
  max-height: 300px;
}

.services-hero-img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.services-hero-img:hover {
  transform: scale(1.01);
}

footer a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  color: #e10600;
  text-decoration: underline;
}
.page-hero {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero-overlay {
  position: relative;
  text-align: center;
  color: white;
  z-index: 2;
}

.page-hero {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

/* TEXT STYLING */
.hero-title {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 58px;   /* slight increase */
  width: auto;    /* keeps proportions */
  object-fit: contain;
}

/* HAMBURGER ICON */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
    border-top: 1px solid #eee;
  }

  nav a {
    padding: 15px;
    display: block;
    margin: 0;
  }

  nav.active {
    display: flex;
  }
}

.text-float {
  position: fixed;
  bottom: 80px; /* above call button */
  right: 20px;
  background: #25d366;
  color: white;
  padding: 14px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: 0.3s;
}

.text-float:hover {
  transform: scale(1.1);
}

#searchInput {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 200px;
  margin-left: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  #searchInput {
    width: 100%;
    margin: 10px 0;
  }
}

/* REVIEW CARD */
.review-card {
  background: white;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid #eee;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: #e10600;
}

/* HEADER */
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

/* AVATAR CIRCLE */
.avatar {
  width: 40px;
  height: 40px;
  background: #e10600;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

/* STARS */
.stars {
  color: #fbbc05; /* Google yellow */
  font-size: 14px;
}