/* ---------- RESET ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #000;
  color: #fff;
  font-family: 'Roboto', sans-serif;
}
.h{
  list-style-type: none;
}
li{
  list-style-type: square;
}
/* ---------- HERO ---------- */
.hero-con {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

.hero-btn {
  display: flex;
  gap: 1rem;
  margin-top: 20px;
}

.book-btn-hero,
.phone-hero {
  background-color: transparent;
  color: #fff;
  padding: 0.8rem 1.5rem;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid #fff;
  font-weight: bold;
}

.book-btn-hero:hover,
.phone-hero:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  padding: 20px 40px;
  z-index: 10;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hamburger.active i {
  transform: rotate(90deg);
}

.nav-right {
  display: flex;
  gap: 1rem;
  margin-top: 20px;
}

.nav-right a,
.phone,
.book-btn {
  background-color: transparent;
  color: #fff;
  padding: 0.8rem 1.5rem;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid #00ff00;
  font-weight: bold;
}

.nav-right a:hover,
.phone:hover,
.book-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ---------- LOGOS ---------- */
.logo-nav {
  width: 160px;
} 

.logo-hero {
  width: 80%;
  max-width: 460px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.logo-but {
  width: 160px;
}

/* ---------- VIDEO ---------- */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- CONTACT SECTION ---------- */
.contact-con {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  gap: 20px;
}

.title-sell-con {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.location-title{
   font-size: 3.5rem;
  color: #fff;
  font-weight: bold;
}

.location-p{
  font-size: 2.0rem;
  font-weight: 300;
  color: #fff;
}

.location{
   font-size: 1.3rem;
  font-weight: 600;
  color: #00cc00;
}

#contactForm {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
}

#contactForm label {
  font-size: 1rem;
  font-weight: bold;
  margin: 4px 0;
}

#contactForm input,
#contactForm textarea {
  padding: 8px 10px;
  font-size: 1rem;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: transparent;
  color: #fff;
  margin-bottom: 8px;
}

#contactForm button {
  margin-top: 12px;
  background-color: transparent;
  color: white;
  padding: 10px 15px;
  font-size: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contactForm button:hover {
  border: 1px solid #00cc00;
  color: #00cc00;
}

/* ---------- SERVICES ---------- */
.service-title{
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: auto;
}

.service-title h2 {
  font-size: 3.5rem;
  color: #fff;
  font-weight: bold;
}


.service-p {
   font-size: 1.3rem;
  font-weight: 600;
  color: #00cc00;
  text-align: center;
  padding: 20px;
}


/* --- SERVICE CARD GRID LAYOUT --- */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
  max-width: 1600px;
  margin-top: 20px;
}

.service-con {
  flex: 1 1 calc(33.333% - 40px); /* 3 per row */
  display: flex;
  flex-direction: column;
  background-color: #000;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  min-width: 300px; /* optional for stability */
  margin: 10px;
}

/* Tablet view: 2 per row */
@media (max-width: 992px) {
  .service-con {
    flex: 1 1 calc(50% - 40px);
  }
}

/* Mobile view: 1 per row (your current column look) */
@media (max-width: 600px) {
  .service-con {
    flex: 1 1 100%;
  }
}

.card-img-con {
  position: relative;
  width: 100%;
  height: 450px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  
}

.card {
  width: 100%;
  background: #111;
  padding: 30px 40px;
  border-top: 1px solid #222;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.card-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 40px;
}

.card-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.card-price-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
}

.from {
  font-size: 1rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 8px;
}

.price {
  font-size: 4.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.card h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 10px;
}

.card p {
  color: #00ff00;
  font-weight: bold;
  margin-bottom: 15px;
}

.card ul {
  list-style: none;
  padding-left: 0;
  line-height: 1.6;
}

.card li {
  border-bottom: 1px solid #222;
  padding: 6px 0;
  font-size: 1rem;
}

.card-img-con:hover .card-overlay {
  background: rgba(0, 0, 0, 0.4);
}

/* ---------- REVIEWS ---------- */
.review-section-con {
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
  position: relative;
}

.review-section-con h4 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.review-carousel-wrapper {
  position: relative;
}

.review-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none;
}

.review-carousel::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 300px;
  background-color: #111;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.review-card img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.review-author {
  font-weight: bold;
  margin-bottom: 4px;
}

.review-date {
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 10px;
}

.review-text {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.review-rating {
  color: #FFD700;
  font-size: 1rem;
}

.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.review-arrow.left {
  left: -20px;
}

.review-arrow.right {
  right: -20px;
}

.review-arrow:hover {
  background: rgba(0,255,0,0.8);
}

/* ---------- FAQ ---------- */
.faq-section {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}

.faq-item {
  border-bottom: 1px solid #00ff00;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  background: transparent;
  padding: 15px 20px;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.faq-question .icon {
  transition: transform 0.3s ease;
  color: #00ff00;
}

.faq-question[aria-expanded="true"] .icon {
  transform: rotate(45deg);
  color: red;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}

.faq-answer p {
  margin: 15px 0;
  color: rgb(194, 194, 194);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 15px 20px;
}

.flex-con{
  display: flex;
  justify-content: center;
  margin: auto;
  max-width: 1200px;
  gap:50px;
}

/* ---------- FOOTER ---------- */
.footer-container {
  display: flex;
  justify-content: end;
  align-items: center;
  background-color: #0f0f0f;
  padding: 20px;
  margin-top: 20px;
}

.copyright,
.credit {
  color: #fff;
  font-size: 12px;
}

.credit-link {
  color: #fff;
}

.phone-title {
  margin: 20px 0;
  font-size: 1.5rem;
  font-weight: 300;
  color: #aaa;
}

.phone-bot {
  background-color: transparent;
  color: #fff;
  padding: 0.8rem 1.5rem;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid #00ff00;
  font-weight: bold;
  width: 200px;
  text-align: center;
  margin: auto;
}

.email-details {
  margin-top: 20px;
  font-size: 1.3rem;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
}

#insta-link {
  color: #00ff00;
  font-size: 2.5rem;
}

.hours {
  list-style: none;
}

.adress {
  color: #00ff00;
}

/* ---------- MOBILE / RESPONSIVE ---------- */
@media (max-width: 992px) {
  .service-con { flex: 1 1 calc(50% - 20px); }
}

@media (max-width: 768px) {
  .hamburger { display: block; }

  .nav-right {
    position: absolute;
    top: 70px;
    right: 20px;
    flex-direction: column;
    align-items: flex-start;
    background-color: #111;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
  }

  .nav-right.active {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
    padding: 15px;
  }

  .nav-right a {
    width: 100%;
    border: none;
    border-bottom: 1px solid #222;
    padding: 10px 0;
    text-align: center;
  }

  .nav-right a:last-child { border-bottom: none; }

  .contact-con {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .title-sell-con {
    width: 100%;
  }

  #contactForm {
    width: 100%;
    max-width: 100%;
  }

  .flex-con {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .review-card { flex: 0 0 250px; }
}

@media (max-width: 600px) {
  .hero-btn { flex-direction: column; gap: 10px; align-items: center; }
  .service-con { flex: 1 1 100%; }
}

@media (max-width: 480px) {
  .review-card { flex: 0 0 200px; }
  .review-arrow.left { left: -10px; }
  .review-arrow.right { right: -10px; }
  .review-carousel { justify-content: center; }
  .faq-section { padding: 20px 10px; }
  .faq-question { font-size: 1rem; padding: 10px 15px; }
  .faq-answer p { font-size: 0.9rem; }
}




/* ---------- MOBILE FIXES ---------- */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 10px 20px;
  }

  .logo-nav {
    width: 120px; /* smaller logo for mobile */
  }

  .nav-right {
    display: none; /* hidden until hamburger clicked */
    flex-direction: column;
    width: 100%;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.95);
    margin-top: 10px;
    border-radius: 8px;
  }

  .nav-right.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .phone, .book-btn {
    font-size: 1rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .logo-hero {
    max-width: 360px;
  }
}

/* Mobile button adjustments */
@media (max-width: 768px) {
  .navbar button,
  .navbar a.button,
  .btn,
  button {
    padding: 12px 24px;         /* make touch-friendly */
    font-size: 1rem;            /* readable text */
        /* consistent button size */
    text-align: center;
    border-radius: 8px;         /* smoother corners */
  }

  .navbar .nav-links {
    flex-direction: column;     /* stack vertically */
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .flex-con {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .service-title h2 { font-size: 2.5rem; }
  .service-p { font-size: 1rem; }
}

@media (max-width: 768px) {
  .location-title { font-size: 2.5rem; }
  .location-p { font-size: 1.4rem; }
  .location { font-size: 1rem; }
}

/* --- MOBILE REVIEW SPACING FIX --- */
@media (max-width: 768px) {
  .review-section-con {
    padding: 0 20px; /* space on left & right */
  }

  .review-carousel {
    padding: 20px; /* space inside the scroll area */
    gap: 15px; /* a bit tighter but clean */
  }

  .review-card {
    flex: 0 0 260px; /* better size for mobile */
  }
}

@media (max-width: 480px) {
  .review-section-con {
    padding: 0 15px;
  }

  .review-carousel {
    padding: 15px;
    gap: 10px;
  }
}
