/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  background-color: #000;
  scroll-behavior: smooth;
}

/* Navbar */
header {
  background: #0a0a0a;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
}

.logo img {
  height: 45px;
  cursor: pointer;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  transition: transform 0.3s ease;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #1e90ff;
}

/* Hamburger icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

/* Active hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero with background image */
.hero {
  height: 100vh;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("images/hero.jpeg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}


.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-content span {
  color: #1e90ff;
}

.hero-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.btn {
  background: #1e90ff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background: #0f6ed8;
}

/* Sections */
.section {
  padding: 6rem 1.5rem;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section h2 {
  color: #1e90ff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section p {
  color: #ccc;
  line-height: 1.7;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.price-card {
  background: #111;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #1e90ff33;
}

.price-card h3 {
  margin-bottom: 0.5rem;
  color: #1e90ff;
}

.price-card .price {
  font-size: 1.8rem;
  margin: 0.5rem 0;
}

.price-card ul {
  list-style: none;
  color: #ccc;
}

.price-card li {
  margin-bottom: 0.4rem;
}

.price-card.highlight {
  border: 2px solid #1e90ff;
  background: #0d0d0d;
}

/* Additional Services Section */
.services {
  padding-top: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Individual service item */
.service-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.service-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Hover zoom effect */
.service-item:hover img {
  transform: scale(1.08);
}

/* Text overlay */
.service-item h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
}


/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background: #0a0a0a;
  text-align: center;
  padding: 1rem;
  color: #888;
  font-size: 0.9rem;
  border-top: 1px solid #1e90ff33;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #0a0a0a;
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
    padding: 1rem;
    transform: translateX(100%);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    margin-bottom: 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
  }
}

/* Contact Section */

.contact {
  text-align: center;
}

.contact-text {
  margin-top: 1rem;
  color: #ccc;
  font-size: 1.1rem;
}

/* WhatsApp Button */

.whatsapp-contact-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: #25D366;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.whatsapp-contact-btn:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}

/* Image modal */

#image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

/* Image */

#modal-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  animation: zoomIn 0.3s ease;
}

/* Close button */

#close-modal {
  position: absolute;
  top: 25px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* Arrows */

.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 45px;
  color: white;
  cursor: pointer;
  user-select: none;
}

.modal-arrow.left {
  left: 30px;
}

.modal-arrow.right {
  right: 30px;
}

/* Zoom animation */

@keyframes zoomIn {
  from {transform: scale(0.8);}
  to {transform: scale(1);}
}

/* Contact Section */

.contact {
  text-align: center;
}

.contact-text {
  margin-top: 1rem;
  color: #ccc;
}

.contact-details {
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

.contact-details a {
  color: #1e90ff;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* WhatsApp button */

.whatsapp-contact-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: #25D366;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.whatsapp-contact-btn:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}

/* Contact icons */

.contact-details p {
  margin: 0.7rem 0;
  font-size: 1.05rem;
}

.contact-icon {
  color: #1e90ff;
  margin-right: 10px;
  font-size: 18px;
}

/* Footer */

footer {
  background: #0a0a0a;
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid #1e90ff33;
}

.footer-contact {
  margin-bottom: 1rem;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

/* Social media buttons */

.social-links {
  margin-top: 1.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin: 0 8px;

  background: #111;
  border: 1px solid #1e90ff33;
  border-radius: 50%;

  color: white;
  font-size: 20px;

  transition: all 0.3s ease;
}

/* Hover effect */

.social-links a:hover {
  background: #1e90ff;
  color: white;
  transform: translateY(-4px) scale(1.1);
}

.copyright {
  font-size: 0.85rem;
  color: #777;
  margin-top: 1rem;
}

.map-section {
  padding: 4rem 1.5rem;
  text-align: center;
}

.map-section h2 {
  margin-bottom: 1.5rem;
  color: #1e90ff;
}

/* Google Button Styling */

.google-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* space between icon and text */
  padding: 12px 24px;
  background: #1e90ff; /* site blue */
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.google-btn i {
  font-size: 18px;
}

/* Hover effect */
.google-btn:hover {
  background: white;
  color: #1e90ff;
  border: 2px solid #1e90ff;
  transform: translateY(-2px);
}

.google-map-section {
  text-align: center;
  padding: 2rem 1rem;
}

.google-map-section .google-btn {
  margin-bottom: 2rem; /* space between button and map */
}

.google-map-section iframe {
  border-radius: 8px;
}
/* Google Reviews Section */

.google-reviews {
  background: #111;
  color: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
}

.google-reviews h2 {
  color: #1e90ff;
  margin-bottom: 2rem;
}

.reviews-window {
  max-width: 700px;
  margin: 0 auto;
  background: #0a0a0a;
  border: 1px solid #1e90ff33;
  border-radius: 10px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  height: 160px; /* fixed height for slides */
}

.review-item {
  display: none;
  text-align: left;
  color: #ccc;
  font-style: italic;
  transition: all 0.5s ease;
}

.review-item.active {
  display: block;
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #1e90ff;
}

.stars {
  color: #FFD700; /* gold stars */
}

.review-nav {
  margin-top: 1rem;
}

.review-nav span {
  cursor: pointer;
  font-size: 24px;
  margin: 0 15px;
  color: #1e90ff;
  transition: 0.3s;
}

.review-nav span:hover {
  color: #0f6ed8;
  transform: translateY(-2px);
}

/* Contact section: Google Map + Reviews side by side */

.contact-google-section {
  display: flex;
  flex-wrap: wrap; /* stack on mobile */
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.contact-google-section .google-map,
.contact-google-section .google-reviews-widget {
  flex: 1 1 450px; /* grow equally, min width 450px */
  min-width: 300px;
}

/* Reviews Widget Styling (reuse previous review styles) */
.google-reviews-widget {
  background: #0a0a0a;
  border: 1px solid #1e90ff33;
  border-radius: 10px;
  padding: 1.5rem;
}

.google-reviews-widget h2 {
  color: #1e90ff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.review-slider {
  position: relative;
  overflow: hidden;
  height: 160px; /* fixed height */
}

.review-slide {
  display: none;
  text-align: left;
  font-style: italic;
  color: #ccc;
}

.review-slide.active {
  display: block;
}

.review-slide h4 {
  color: #1e90ff;
  margin-top: 0.5rem;
  font-weight: bold;
}

.review-buttons {
  text-align: center;
  margin-top: 1rem;
}

.review-buttons span {
  cursor: pointer;
  font-size: 24px;
  margin: 0 10px;
  color: #1e90ff;
  transition: 0.3s;
}

.review-buttons span:hover {
  color: #0f6ed8;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-google-section {
    flex-direction: column;
    padding: 2rem 1rem;
  }
}

/* Pricing Cards Hover */
.price-card {
  background: #111;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #1e90ff33;
  transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(30, 144, 255, 0.5);
}

/* Highlight Card */
.price-card.highlight {
  border: 2px solid #1e90ff;
  background: #0d0d0d;
}

/* Google Map + Reviews Side by Side */
.contact-google-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.contact-google-section .google-map,
.contact-google-section .google-reviews-widget {
  flex: 1 1 450px; /* responsive widths */
  min-width: 300px;
}

/* Reviews Widget */
.google-reviews-widget {
  background: #0a0a0a;
  border: 1px solid #1e90ff33;
  border-radius: 10px;
  padding: 1.5rem;
}

.google-reviews-widget h2 {
  color: #1e90ff;
  margin-bottom: 1rem;
  text-align: center;
}

.review-slider {
  position: relative;
  overflow: hidden;
  height: 160px;
}

.review-slide {
  display: none;
  text-align: left;
  font-style: italic;
  color: #ccc;
}

.review-slide.active {
  display: block;
}

.review-slide h4 {
  color: #1e90ff;
  margin-top: 0.5rem;
  font-weight: bold;
}

/* Slider buttons */
.review-buttons {
  text-align: center;
  margin-top: 1rem;
}

.review-buttons span {
  cursor: pointer;
  font-size: 24px;
  margin: 0 10px;
  color: #1e90ff;
  transition: 0.3s;
}

.review-buttons span:hover {
  color: #0f6ed8;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-google-section {
    flex-direction: column;
    padding: 2rem 1rem;
  }
}