/* ======= Reset & Base ======= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #201f1f;
  color: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

a:hover {
  color: #f207b8;
}

img {
  max-width: 100%;
  display: block;
}

h2, h3{
  color: #f207b8;
}

/* ======= Navbar ======= */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #0b0b0b;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 25px;
}

.nav-links {
  display: flex;
  gap: 20px;
  transition: all 0.4s ease-in-out;
}

.nav-links a {
  font-size: 16px;
  font-weight: bold;
  position: relative;
}

/* Hover underline animation */
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #f207b8;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ======= Mobile Menu ======= */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  background: #fff;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  transition: 0.4s;
}

@keyframes slideDown {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ======= Banner ======= */
.banner {
  width: 100%;
  height: 350px;
  background: url('../images/pc.webp') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.banner h1 {
  background: rgba(0, 0, 0, 0.6);
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 2rem;
  animation: fadeIn 1.2s ease-in-out;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #0b0b0b;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 20px;
  }

  .nav-links.show {
    display: flex;
    animation: slideDown 0.4s ease forwards;
  }

  .menu-toggle {
    display: flex;
  }

  .banner {
    width: 100%;
    height: 150px;
  }

  .banner h1 {
    text-align: center;
    font-size: 1rem;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ======= Gallery Section ======= */
.gallery {
  background-color: #0b0b0b;
  padding: 50px 20px;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  background: #201f1f;
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  border-radius: 8px;
  display: block;
  margin-bottom: 10px;
}

/* Buttons below each image */
.gallery-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.gallery-buttons a {
  flex: 1;
  text-decoration: none;
  color: #fff;
  padding: 8px 0;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: 0.3s ease;
  text-align: center;
}

.call-btn {
  background: #7CABF8;
}

.call-btn:hover {
  background: #d96d04;
}

.whatsapp-btn {
  background: #25d366;
}

.whatsapp-btn:hover {
  background: #1ebc58;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes gradientBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ======= Side Image + Content Section ======= */
.side-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  gap: 30px;
  flex-wrap: wrap;
}

.side-section img {
  width: 350px;
  border-radius: 15px;
  animation: fadeIn 1s ease-in-out;
}

.side-content {
  max-width: 650px;
  animation: fadeIn 1.2s ease-in-out;
}

.side-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.side-content p {
  font-size: 1rem;
  color: #ccc;
}

/* ======= Pricing Table ======= */
  .pricing {
    background-color: #0b0b0b;
    padding: 60px 20px;
    text-align: center;
  }

  .pricing h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #f207b8;
  }

  .pricing-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
  }

  .pricing-card {
    background: #201f1f;
    padding: 30px 20px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  }

  .pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
  }

  .pricing-card .price {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #f58105;
  }

  .pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    color: #ccc;
    font-size: 0.95rem;
  }

  .pricing-card ul li {
    margin: 10px 0;
  }

  .pricing-btn {
    display: inline-block;
    background: linear-gradient(45deg, #f58105, #f207b8, #3226d9);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
  }

  .pricing-btn:hover {
    background: linear-gradient(45deg, #3226d9, #f207b8, #f58105);
  }

/* ======= Extra Content Section ======= */
.content-section {
  background-color: #0b0b0b;
  padding: 40px 20px;
  /*text-align: center;*/
}

.content-section h2, .content-section h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.content-section h3{
  font-size: 1.5rem;
}

.content-section p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.8;
}

/* ======= Testimonials Section ======= */
.testimonials {
  background-color: #0b0b0b;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #f207b8;
}

.testimonials-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: #201f1f;
  padding: 25px 20px;
  border-radius: 12px;
  flex: 1;
  min-width: 280px;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.testimonial-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 15px auto; /* centers image */
  display: block; /* ensures proper centering */
  border: 3px solid transparent;
  background: linear-gradient(45deg, #f58105, #f207b8, #3226d9);
  background-clip: padding-box;
}

.testimonial-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #ccc;
}

.faq {
  background-color: #0b0b0b;
  padding: 50px 20px;
  text-align: center;
}

.faq h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #333;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.1rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #f207b8;
}

.faq-question span {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
  color: #f207b8;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 10px;
}

/* ======= Locations Section ======= */
  .locations {
    background-color: #0b0b0b;
    padding: 50px 20px;
    text-align: center;
  }

  .locations h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #f207b8; /* Matching heading color */
  }

  .locations-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
  }

  .locations-container a {
    background: #201f1f;
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }

  .locations-container a:hover {
    background: linear-gradient(45deg, #f58105, #f207b8, #3226d9);
    color: #fff;
    transform: translateY(-3px);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .locations-container {
      gap: 10px;
    }
    .locations-container a {
      padding: 8px 14px;
      font-size: 0.9rem;
    }
  }
  
  /* Fixed Full-Width Bottom Buttons */
  .fixed-full-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
  }

  .fixed-full-buttons a {
    flex: 1; /* Equal width for both buttons */
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    transition: background 0.3s ease;
  }

  /* Left Call Button */
  .full-call-btn {
    background: #f58105;
  }

  .full-call-btn:hover {
    background: #d96d04;
  }

  /* Right WhatsApp Button */
  .full-whatsapp-btn {
    background: #25d366;
  }

  .full-whatsapp-btn:hover {
    background: #1ebc58;
  }

  /* Mobile optimization */
  @media (max-width: 480px) {
    .fixed-full-buttons a {
      font-size: 0.9rem;
      padding: 12px 0;
    }
  }

/* ======= Footer ======= */
.footer {
  background-color: #0b0b0b;
  color: #ccc;
  padding: 50px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 20px;
}

.footer-info {
  flex: 1;
  min-width: 260px;
}

.footer-info h5 {
  font-size: 1rem;
  color: #f207b8;
  margin-bottom: 15px;
}

.footer-info p {
  margin: 8px 0;
  font-size: 0.95rem;
}

.footer-info a {
  color: #f58105;
  text-decoration: none;
}

.footer-info a:hover {
  color: #f207b8;
}

.footer-map {
  flex: 1;
  min-width: 280px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #201f1f;
  margin-top: 20px;
  font-size: 0.9rem;
}