* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
/*prevents white strip on right due to layout overflow*/
html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  padding-top: 110px;
  overflow-x: clip;
  font-family: 'Poppins', sans-serif;
  font-size:16px;
  line-height:1.7;
  color:#222
    /*background-color: #000;  default page background black  was 90 padd*/

}


/*fade in on scroll down*/
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   ABOUT
   ========================= */
.about-section {
  padding: 80px 20px;
  background: #fff;
  color: #333;/*force color so its readable*/
  position:relative;
  z-index:5;
}



.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.6rem;
  margin-bottom: 25px;
 color: #222;
 
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #222;
}

.about-image img {
  width: 100%;
  max-width:500px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba (0,0,0,0.15)
}

.about-info {
  margin-top: 20px;
  padding: 15px 20px;
  background: #f9f9f9;
  border-left: 4px solid #ff4c4c;
  display: inline-block;
  border-radius: 6px;
}

.about-info p {
  margin: 5px 0;
  font-size: 1rem;
  color: #333;
}


.about-image {
  display: flex;
  justify-content: center;
}

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

  .about-image {
    margin-top: 40px;
  }

  .about-info {
    display: block;
    margin: 20px auto 0 auto;
  }
}
/*stat section*/

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

.stats-container {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
}

.stat h3 {
  font-size: 2.8rem;
  color: #ff4c4c;
  margin-bottom: 10px;
}

.stat p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
}

.cta-section {
  padding: 80px 20px;
  background: #222;
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-section .btn {
  background-color: #ff4c4c;
  padding: 12px 30px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-section .btn:hover {
  background-color: #e04343;
}

/* =========================
   GLOBAL
   ========================= */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  box-sizing: border-box;
  color: white;
}

a {
  text-decoration: none;
}

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

h1, h2, h3 {
  font-weight: 700;
}
h1,h2,h3,h4{
  font-family:'Playfair Display', serif;
  font-weight:600;
  line-height:1.2

}

p {
  color: #555;
}

/* =========================
   NAVBAR
   ========================= */

   /* GLASSMORPHISM NAVBAR */
   
/* =========================
   NAVBAR
   ========================= */

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  /*background: #000 !important;  /* fully black */
  background-color: white;
  height: auto; /* controls how far down everything sits */
  
}


/* CONTAINER */

.navbar {
  position: sticky;

  top: 0;
  left: 0;

  width: 100%;
  height: auto;
  min-height: 110px;
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 99999;

  box-shadow: 0 2px 10px rgba(0,0,0,0.06);

  overflow:visible;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.nav-container {
  display: flex;
  align-items: center;
  flex-direction: column; /* will stack logo, nv bar verticallt*/
  width: 100%;
  margin:0 auto;
    max-width: 1300px;
  height: 100%;
  padding: 8px 20px;/* pushes down padding*/
  /*background:white;*/
  position:relative;
  justify-content:center;
}
/* LOGO */
.logo {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
}

/* Logo Image */
.logo img {
  height: auto;
  width:150px;
  display:block;
  margin-bottom: 0px;
}

.logo:hover img {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .logo img {
    height: auto;
    width:80px;
    margin-left: 30px;
  }
}

/* NAV LINKS + RIGHT SIDE */
.nav-right {
  display: flex;
  justify-content: center; /* center links in remaining space */
  align-items: center;
  gap: 25px;               /* space between links */
  margin-left: 0;
  margin-top:10px;
  width:100%;

}

/* LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px; /* desktop spacing */
  font-family: "Playfair Display", serif; /* nicer modern font */
    font-weight: 500;
letter-spacing: 1px;
  justify-content: center; /* center between logo and button */
  position: relative;
  z-index: 100000;
  /*margin-top: 18px; ⬅️ moves nav text DOWN */

}

/* LINK STYLE */
.nav-links a {
  color: #222 !important;        /* always visible */
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.95rem;
  position: relative;
  padding: 10px 0;               /* vertical spacing */
  transition: color 0.3s ease;
}

/* UNDERLINE EFFECT */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: #ff4c4c;
  transition: width 0.3s ease;
}

/* HOVER & ACTIVE LINK */
.nav-links a:hover,
.nav-links a.active {
  color: #ff4c4c !important;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* CALL BUTTON */
.call-btn {
  position:absolute;
  right: 30px;
  /*margin-left:20px;*/
  bottom: 25px;
  /*top:50%;*/
  transition: translateY(-50%);
  background: white;
  color: black;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration:none;
  box-shadow: 0 0 18px rgba(255, 76, 76, 0.6),
              0 0 30px rgba(255, 140, 0, 0.35);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  z-index: 100000;;
  font-family:"Merriweather", serif !important;
  font-weight:525;
  letter-spacing:0.5px;

}
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}


.call-btn:hover {
  transform: translateY(-2px);/*lift effect*/
  box-shadow: 0 12px 35px rgba(255,76,76,0.6);/*more visible shadow on hovr*/
  filter: brightness(1.05);
} 





/* DROPDOWN */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  min-width: 220px;
  background: #0f0f0f !important;
  border-radius: 10px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100000;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 12px 22px;
  font-size: 0.9rem;
  color: #fff !important;
}
.dropdown-menu li a:hover {
  background: rgba(255,255,255,0.08);
  color: #ff4c4c !important;
}

/* Desktop: hide the hamburger menu */
.menu-toggle {
  display: none;
}

/* MOBILE NAVBAR lastt */
@media (max-width: 768px) {
  .nav-container {
    
    align-items: center;
    
    justify-content: space-between;
    flex-direction: row;
    padding-right: 25px;
  }

  .navbar{
    height:auto;
  }

  .nav-right {
    flex-direction: row;
    width: auto;
    position: relative;
    display: flex;
    align-items: center;
    gap:10px;
  }

  .nav-links {
    flex-direction: column;
    position:fixed;

    top:110px;
    left:0;
    width: 100%;

    background:white !important;
    display: none;

    padding: 15px 0;

    box-shadow: 0 8px 25px rgba(0,0,0,0,0.2);
    
    
    z-index:99999;


  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    width:100%;
    padding: 18px 0px;
    color:#222 !important;
    font-size:1rem;
    font-weight:600;
    text-align: center;

    
  }

  .call-btn {
    display:none;
  }
  /* Mobile dropdown fixes */
  .dropdown-menu {
    position: static;
    opacity:1;
    visibility: visible;
    transform: none;

    display: none; /* hidden by default */
    flex-direction: column;
    background: #f8f8f8;
    padding: 0;
    box-shadow: none;
  }

  .dropdown.open .dropdown-menu {
    display: block; /* show when open */
  }

  /* Mobile toggle button */
  .menu-toggle {
      display: block;
  font-size: 2rem;
  border: none;
  color: #222;
  cursor: pointer;
    margin-right:60px;
  margin-left: auto;  /* pushes it to far right safely */
  margin-right: 10px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 999999;

  
  }
}




/* =========================
   BASE HERO for all pages
   ========================= */
.hero,.hero-gallery,.hero-home,.hero-services{
  text-align: center;
  padding: 80px 20px;
  background-size: cover;
  background-position: center center;
  position:relative;
  /*color:white;*/
  color:orangered;
  min-height:70vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  margin-bottom:60px;
  width:100%;
  max-width:100%;
  margin-left:0;
  margin-right:0;
  background-repeat: no-repeat;
}

.hero{
  position:relative;
  overflow:hidden;
}



/* Small label above heading */
.hero-eyebrow {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffb3b3;
  margin-bottom: 18px;
  font-weight: 600;
}
/* Buttons container */
.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  
}
/*dark overlay for readability*/
.hero::before, .hero-home::before,.hero-gallery::before,.hero-services::before {
  content:'';
  /*background: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.4) 100%);
*/
  background: linear-gradient(
  to bottom,
  rgba(0,0,0,0.75) 0%,
  rgba(0,0,0,0.35) 35%,
  rgba(0,0,0,0.0) 55%
);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
  inset:0;
  max-height:100vh;
}





.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 30px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.7;
  
}


.hero-content .btn {
  padding: 12px 30px;
  background-color: #ff4c4c;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-content .btn:hover {
  background-color: #e04343;
}


/* Dropdown styling */
.category-filter {
  margin-bottom: 20px;
}

.category-filter label {
  margin-right: 10px;
  font-weight: 500;
}

.category-filter select {
  padding: 8px 12px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
}
@media (max-width: 768px) {
  .hero-content h1 {
    /*font-size: clamp(1.8rem, 5vw, 3rem);*/
    font-size:2.2rem;
    margin-bottom: 15px;
    line-height:1.2;
    word-wrap: break-word;
  overflow-wrap: break-word;
  }
  body{
    padding-top:0px;

  }
  .hero,
  .hero-home,
  .hero-gallery,
  .hero-services {
    min-height: 60vh;
    padding: 0 20px;   /* ❗ remove vertical padding */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 16px;
    padding-right: 16px;
    overflow: hidden;
  }
  .hero-content p {
    font-size: clamp(1rem, 3.5vw, 1.3rem);
    line-height: 1.5;
  }
  .hero-content{
    text-align: center;
    align-items: center;
    justify-content: center;
    width:100%;
    margin: 0 auto;
    max-width: 100%;
    display:flex;
    flex-direction: column;
    box-sizing:border-box;
    padding:0 16px;
  }
  .hero-trust {
    display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  }

}

section {
  color: #333;
}

.hero,
.hero * {
  color: #fff;
}

.hero,
.hero-home,
.hero-gallery,
.hero-services {
  margin-top: 0 !important;  /* remove any extra top margin */
  padding-top: 80px;        /* keep some padding if needed */
    overflow: visible; /* ensures content below isn’t hidden */

}
.hero-gallery{
  background-size:cover;
  background-position: center center;
}

/* =========================
   SERVICES
  ========================= */
 
.services-section,
.services-section * {
  color: #333;
}

@media (max-width: 768px) {
  .hero-services .hero-content h1 {
    font-size: 2rem;
  }
  .hero-services .hero-content p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }
}
/* Services Section */
/* Strong headline */
.hero-services h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 25px;
}

/* Supporting text */
.hero-services p {
  font-size: 1.25rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 40px;
}


.services-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  color: #333;
}

.services-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 15px;
  color: #ff4c4c;
}

.service-card ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 1.05rem;

}

.service-card  li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height:1.7;


}

/* Secondary button */
.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #111;
}

.materials-strip {
  background: linear-gradient(135deg, #1a1a1a, #111);
  padding: 60px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.materials-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.materials-container span {
  font-family: "Georgia", serif;
  font-size: 1.1rem;
  color: #f5f5f5;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  opacity: 0.85;
  transition: color 0.3s ease, opacity 0.3s ease;
  
}

/* subtle gold underline */
.materials-container span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 40%;
  height: 2px;
  background: linear-gradient(to right, #c9a24d, #f2d27d);
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.materials-container span:hover {
  color: #ff4c4c;
  opacity: 1;
}
.materials-container span:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    justify-items:center;
  }


  .services-section {
    text-align: center;
  }

  

  .service-card {
    text-align: center;
    width: 100%;
    max-width: 400px;
  }

  .service-card ul {
    text-align: left; /* keeps readability for lists */
  }

  .services-section h2 {
    text-align: center;
  }



}



/* =========================
   Gallery
   ========================= */


   .gallery-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-section h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  text-align: center;
  color: #222;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
 justify-items: center;
}

.gallery-grid img {
  cursor: pointer; /*allows users to know you can click on img*/
  width: 100%;
  height: 260px;
  border-radius:10px;
  object-fit: cover;
  border-radius: 10px;
  max-width:420px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.gallery-section {
  scroll-margin-top: 110px; /* match navbar height */
}

/*section separators*/
.gallery-section:not(:last-child)::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #ff4c4c;
  margin: 80px auto 0;
  border-radius: 2px;
}

/*lightbox*/
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 99999;
}

/* Show lightbox */
.lightbox.show {
  opacity: 1;
  visibility: visible;
}

/* Image */
.lightbox-content {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: zoom-in;

}
/*being able to zoom in*/
.lightbox-content.zoomed {
  transform: scale(1.5);
  cursor: zoom-out;
}
/* Close button */
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
}

/* Arrows */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  padding: 10px;
  user-select: none;
  transform: translateY(-50%);
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* Hide arrows on very small screens */
@media (max-width: 600px) {
  .lightbox-prev,
  .lightbox-next {
    font-size: 2.2rem;
  }
}
/* =========================
   CONTACT
   ========================= */
.hero-contact {
  min-height: 45vh;     /* shorter than services/about */
}


.hero-trust {
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items:center;
  margin-top: 25px;
  font-size: 0.95rem;
  opacity: 0.9;
  flex-wrap: wrap;
  text-align:center;
  flex-direction: column;
}

.contact-info{
  text-align:center;
}
.contact {
  padding: 80px 20px;
      color: #333;             /* text color */
  background-color: #f4f4f4;
  position:relative;
  z-index:5;
  margin-top:30px;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
}

.contact-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
  text-align: center;
}

.contact-intro h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 15px;
}

.contact-intro p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
}
.contact h1 {
  text-align: center;
  margin-bottom: 10px;
}
.contact h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #ff4c4c;
  margin: 15px auto 30px;
  border-radius: 2px;
}
.contact p {
  text-align: center;
  margin-bottom: 30px;
}
.contact h1, .contact p, .contact label {
    color: #222;             /* make headings and labels visible */
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info p, .contact-info h3 {
  margin: 10px 0;
  font-size: 16px;
}

.contact-info a {
  color: #f39c12;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background-color: #f39c12;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #e08e0b;
}

#contactSuccess {
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.success-message{
  display: none;
  color: #ff4c4c;
  margin-top: 15px;
  text-align: center;
  font-weight: 600;
  animation: fadeIn 0.5s ease;
}
.form-trust {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-top: 10px;
}

/* GOOGLE RATING */
.google-rating {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.google-rating .stars {
  color: #f39c12;
}

/* SOCIAL LINKS */
.social-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  color: #c40000;
  font-weight: 600;
}

.social-link a:hover {
  color: #a80000;
}

.social-link i {
  font-size: 1.4rem;
}

/* Mobile Contact Grid */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-info {
    margin-bottom: 30px;
  }
}
/*ill it work?*/
.contact-form input,
.contact-form textarea,
.contact-form select {
    background-color: #fff;    /* white background for visibility */
    color: #333;               /* dark text inside inputs */
    border: 1px solid #ccc;    /* light gray border */
    padding: 12px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    z-index:10;
    position:relative;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;               /* placeholder text color */
}

.contact-form button {
    background-color: #ff4c4c;  /* accent color */
    color: #fff;                /* white text */
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #e04343;
}
/* =========================
   REVIEWS
   ========================= */

   

  .reviews {
  padding: 80px 20%;
  background: #f9f9f9;
  color:#333;
  text-align:center;
  font-family: "Georgia", serif;
}

.reviews-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.reviews h2 {
  font-family: "Georgia", serif;
  font-size: 2.6rem;
  margin-bottom: 10px;
  color:#222;
  font-weight:600;
  letter-spacing: 1px;
}


.reviews p {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

/*individual review cards*/
.review {
  background: white;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.review .name {
  font-weight: 600;
  margin-top: 20px;
}
.review .rating {
  color: #f4b400;
  margin-bottom: 10px;
}

.leave-review,
.review-approval {
  padding: 60px 20px;
  background-color: #f4f4f4;
}

.leave-review-container,
.review-approval-container {
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.google-review-link {
  margin-top: 10px;
  font-size: 14px;
}

.google-review-link a {
  color: black;
  font-weight: 600;
  text-decoration: none;
}

.google-review-link a:hover {
  text-decoration: underline;
}
/*review-form */


/*title*/

.reviews-title {
  font-family: "Georgia", serif;
  font-size: 2rem;       /* matches nav styling */
  font-weight: 700;
  color: #ff4c4c;
  margin-bottom: 15px;
  text-align: center;
}


.reviews .leave-review-title {
  font-family: "Georgia", serif;  /* matches your nav/headings font */
  font-size: 1.8rem;              /* large and bold */
  font-weight: 700;
  color: black;                 /* matches your accent color */
  margin-bottom: 25px;            /* space between title and form */
  text-align: center;             /* centered above form */
}
.reviews-subtitle {
  font-family: "Arial", sans-serif;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  text-align: center;
}
.review-form {
  margin-top: 30px;
  background: white;
  padding: 40px 35px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  box-sizing:border-box;
}

.review-form input,
.review-form select,
.review-form textarea {
  font-size: 1rem;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 100%;
  font-family: "Georgia", serif;
  box-sizing: border-box;
}

.review-form textarea {
  min-height: 120px;
  resize: vertical;
}
.review-form input:focus,
.review-form textarea:focus,
.review-form select:focus {
  outline: none;
  border-color: #000;
}


/*btn*/
.review-form .btn {
  background-color: #ff4c4c;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  border: none;
}

.review-form button:hover {
  background-color: #e04343;
}
/*success msg*/
#reviewSuccess {
  font-weight: 500;
  text-align: center;
}
.review-success {
  display: none;
  margin-top: 20px;
  color: orange;
  font-weight: 500;
}
/*avg rating*/
.average-rating {
  text-align: center;
  margin-bottom: 50px;
    font-family: "Georgia", serif; /* match navbar */

  
}

.average-rating .avg-stars {
  font-size: 3rem;
  color: #ffb400; /* gold stars */
  letter-spacing: 2px;
  margin-bottom: 8px;
    display: inline-block;

}

.average-rating .avg-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ff4c4c;
}

.average-rating p {
  font-size: 1rem;
  color: #555;
}

/*patial star fill*/

/* Stars container */
.average-rating .stars-outer {
  display: inline-block;
  position: relative;
  font-family: "Font Awesome 5 Free"; /* or fallback to ★ */
  font-weight: 900;
  font-size: 2rem;
  color: #ccc; /* grey background stars */
}

.average-rating .stars-inner {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  color: #ffb400 ; /* gold stars */
}

.stars-outer::before {
  content: "★★★★★";
}

.stars-inner::before {
  content: "★★★★★";
}
/*reviews stars*/
#approvedReviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

#approvedReviews .service-card {
  background: white;
  padding: 30px 20px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  width: 100%;
  max-width: 350px;
}

#approvedReviews .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 40px rgba(0,0,0,0.18);
}

#approvedReviews .service-card h3 {
  font-family: "Georgia", serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #ff4c4c;
  font-weight:600;
}

#approvedReviews .service-card p {
  font-size: 1rem;
  margin-top: 12px;
  color: #333;
  line-height:1.6;
}

/* stars for each review */
#approvedReviews .stars-outer {
  display: inline-block;
  position: relative;
  font-size: 1.2rem;
  color: #ccc;
}

#approvedReviews .stars-inner {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  color: #f39c12;
}

/* Admin review approval buttons */
.review-approval button {
  background: green;
  color: white;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
}

.review-approval button:hover {
  opacity: 0.9;
}
/* Make the entire navbar background solid black 
header,
.nav-container,
.navbar {
    /*background-color: #000 !important;  
    background-color: white;
    width: 100%;                        
}*/


/* Mobile adjustments */
@media (max-width: 768px) {
  #approvedReviews {
    grid-template-columns: 1fr;
  }

  .average-rating .avg-number {
    font-size: 2.5rem;
  }

  .average-rating .stars-outer {
    font-size: 1.5rem;
  }
}


.contact, 
.contact * {
position: relative; /* make sure no parent z-index hides it */
    color: #222 !important; /* make text visible */}

/* =========================
   FOOTER
   ========================= */

  .site-footer {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  padding: 70px 20px 30px;
  font-family: 'Poppins', sans-serif;
}


.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
}


.footer-section h4 {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 19x;
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
}



.footer-section li {
  font-size: 12px;
  line-height: 1.5;
  color: #999;
}

.site-footer p,
.site-footer a {
   font-size: 0.9rem;
   line-height: 1.6;
   color: #999;

}

.footer-section ul {
  list-style: none;
  padding: 0;
  
}
.footer-section ul li {
  margin-bottom: 8px;
}


.footer-section a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s ;
}


.footer-section a:hover {
  color: #ff4c4c;
}


.footer-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  border: 1px solid #fff;
  background: #ff4c4c;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}


.footer-btn:hover {
  background: #e04343;
  transform:translateY(-2px);
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 12px;
  color: #777;
}
/* CTA block */
.footer-cta {
  background: rgba(255,255,255,0.03);
  padding: 18px;
  border-radius: 10px;
  text-align: center;
}


/* Mobile footer spacing */
@media (max-width: 768px) {
  .footer-container {
    text-align: center;
  }
}




/*
.location-info{
  display:flex;
  gap:40px;
  padding:40px;
  align-items :flex-start;
}

business-info{
  flex:1;
  max-width:400px;

background: #f7f7f7;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);   
}

@media (max-width: 768px) {
  .location-section {
    flex-direction: column;
  }

  #map {
    width: 100%;
    height: 300px;
  }
}*/

/* ===== LOCATION SECTION ===== */

.contact-location {
  display: flex;
  gap: 50px;
  padding: 60px 8%;
  align-items: stretch;
  background: #f9f9f9;
  min-height:450px;
}

/* Google Map */

#map {
  flex: 1.2;
  height: 450px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  min-width: 300px;
  width:100%;
  min-height:450px;
  display:block;
  

}

/* Info Card */

.info-card {
  flex: 1;
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-card h2 {
  margin-top: 0;
  font-size: 28px;
}

.tagline {
  color: #666;
  margin-bottom: 20px;
}

.hours {
  padding-left: 18px;
  margin-top: 10px;
}

/* Buttons */

.buttons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.btn {
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  transition: 0.25s;
}

.call {
  background: #000;
  color: white;
}

.call:hover {
  background: #333;
}

.directions {
  background: #e5e5e5;
  color: black;
}

.directions:hover {
  background: #d0d0d0;
}

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

@media (max-width: 900px) {
  .contact-location {
    flex-direction: column;
    padding: 40px 5%;
  }

  #map {
    height: 320px;
  }
}
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 9999;
}

.sticky-call,
.sticky-quote {
  flex: 1;
  text-align: center;
  padding: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.sticky-call {
  background: #1f1f1f;
  color: white;
}

.sticky-quote {
  background: #1f1f1f; /* gold accent works well for countertops */
  color: white;
}

/* Hide on desktop */
@media (min-width: 768px) {
  .mobile-sticky-bar {
    display: none;
  }
}
