/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}
body {
  background-color: #0F0F0F;
  color: #fff;
  line-height: 1.6;
  padding-bottom: 50px;
}
a {
  color: #F5C518;
  text-decoration: none;
}
a:hover {
  color: #FFEA80;
  text-decoration: underline;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
header {
  background-color: #1A1A1A;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 24px;
  font-weight: bold;
  color: #F5C518;
}
.nav-links {
  display: flex;
  gap: 20px;
  transition: max-height 0.3s ease-in-out;
}
.nav-links a {
  color: #F5C518;
  font-weight: bold;
}
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 28px;
  color: #F5C518;
}

/* Top Video */
.top-video {
  width: 100%;
  background: #000;
}
.top-video video {
  width: 100%;
  height: auto;
}

/* Hero Section */
.hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #F5C518;
}
.hero p {
  font-size: 20px;
}

/* Sections */
h1, h2, h3, h4, h5 {
  color: #F5C518;
  margin-bottom: 20px;
  font-size: 20px;
  text-align: center;
}
h3 {
  color: #F5C518;
  margin: 20px 0 10px;
}
p {
  margin-bottom: 15px;
  font-size: 16px;
}
ul {
  margin: 10px 0;
  padding-left: 20px;
}

/* Profile List */
.profiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.profile {
  background: #111;
  border: 1px solid #F5C518;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}
.profile:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(245, 197, 24, 0.4);
}
.profile img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Categories & Areas */
.categories, .areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}
.categories span, .areas span {
  background: #222;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
}

/* Advantages */
.advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.advantage {
  background: #111;
  padding: 20px;
  border-radius: 8px;
}

/* FAQs */
.faq {
  margin-top: 40px;
}
.faq details {
  background: #111;
  margin-bottom: 10px;
  border-radius: 6px;
  padding: 10px;
}
summary {
  font-weight: bold;
  cursor: pointer;
}

/* Testimonials */
.testimonials-carousel {
  position: relative;
  max-width: 1200px;
  margin: 40px auto;
  overflow: hidden;
}
.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 0 10px;
}
.carousel-container .testimonial {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: center;
  background: #111;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(245, 197, 24, 0.3);
}
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245, 197, 24, 0.8);
  color: white;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}
.carousel-prev:hover,
.carousel-next:hover {
  background: #F5C518;
}
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

/* Footer */
.footer-bg {
  padding: 40px 0;
  color: #fff;
  position: relative;
}
.footer-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}
.footer-columns {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-column {
  flex: 1;
  margin: 0 10px;
}
.footer-column h3 {
  color: #F5C518;
  margin-bottom: 10px;
}
.footer-column ul {
  list-style-type: none;
  padding: 0;
}
.footer-column ul li a {
  color: #fff;
  display: block;
  margin-bottom: 5px;
}
.footer-title {
  text-align: center;
  font-size: 32px;
  color: #F5C518;
  background: #000;
  padding: 10px 0;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

/* Bottom Bar */
.bottom-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.phone {
  background-color: #F5C518;
  color: #000;
  padding: 10px;
  flex: 1;
  text-align: center;
  font-weight: bold;
}
.whatsapp {
  background-color: #25D366;
  color: #fff;
  padding: 10px;
  flex: 1;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  .hero p {
    font-size: 16px;
  }
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #1A1A1A;
    padding: 20px;
    text-align: center;
  }
  .nav-links.active {
    display: flex;
  }
  h2 {
    font-size: 28px;
  }
  .profiles {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .footer-columns {
    flex-direction: column;
  }
  .bottom-bar {
    flex-direction: column;
  }
}

/* ====================== PREMIUM RATES TABLE ====================== */
.rates-card {
    max-width: 1100px;
    margin: 30px auto;
    padding: 25px;
    background: linear-gradient(145deg, #2a1a4a, #1a0f35);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    border: 2px solid #F5C518;
    overflow: hidden;
}
.rates-table {
    width: 100%;
    border-collapse: collapse;
    color: #ffffff;
    font-size: 16.5px;
    text-align: center;
}
.rates-table th {
    background: linear-gradient(135deg, #F5C518, #D4A017);
    color: #000;
    padding: 22px 15px;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.rates-table td {
    padding: 18px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}
.rates-table tr:hover {
    background: rgba(245, 197, 24, 0.2);
    transform: scale(1.03);
}
.rates-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #FFEA80;
    padding-left: 30px;
}
.rates-table td:nth-child(2),
.rates-table td:nth-child(3) {
    font-weight: 700;
    color: #00ffbb;
    font-size: 17px;
}

/* Responsive for rates */
@media (max-width: 768px) {
    .rates-card {
        margin: 20px 10px;
        padding: 15px;
    }
    .rates-table th, .rates-table td {
        padding: 14px 8px;
        font-size: 15px;
    }
}