/* arpitamalik.com - Simplified Modern Styles */
:root {
    --primary-red: #e53e3e;
    --red-gradient: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    --green-shade: #276641;
    --red-shade: #612525;
    --beige-bg: #f7fafc;
    --light-gray: #edf2f7;
    --purple-shade: #5D3FD3;
    --purple-shade-video: #FFFDD0;
    --content-section-color: #FFFFF0;
    --section-gray: #f8f9fa;
    --section-blue: #ebf8ff;
    --section-green: #f0fff4;
    --text-primary: #2d3748;
    --text-secondary: #000000;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Highlighted Text */
.text-highlight {
  background: #301934;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-weight: 600;
  color: #fff;
}

/* Strong Emphasis Text */
.text-strong {
  font-weight: 700;
  color: #ff007f; /* seductive neon pink accent */
  text-shadow: 0 0 6px rgba(255, 0, 127, 0.5);
}

/*Strong Text with Light Color*/
.text-strong-light {
    font-size: 1.2em;
    font-weight: 500;
    color: #DFFF00;
}

/* Styled Hyperlink */
.text-link {
  color: #ffd700;
  font-weight: 600;
  font-size: 1.3em;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 215, 0, 0.6);
  transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.text-link:hover {
  color: #ff007f;
  border-bottom-color: #ff007f;
  text-shadow: 0 0 6px rgba(255, 0, 127, 0.5);
}

/* Blockquote - Luxury Style */
blockquote {
  position: relative;
  background: rgba(255, 0, 127, 0.05);
  border-left: 5px solid #ff007f;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ddd;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(255, 0, 127, 0.2);
}

blockquote::before {
  content: "❝";
  font-size: 2.5rem;
  color: #ff007f;
  position: absolute;
  top: -10px;
  left: 10px;
  opacity: 0.7;
}

blockquote::after {
  content: "❞";
  font-size: 2.5rem;
  color: #ff007f;
  position: absolute;
  bottom: -10px;
  right: 15px;
  opacity: 0.7;
}

blockquote strong {
  color: #ffd700; /* golden emphasis inside blockquote */
  font-weight: 700;
}


/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: #191970;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
/* Header Styles */
.header {
  background: rgba(0, 0, 0, 0.7); /* transparent black */
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 2000; /* ensure above other elements */
  /* overflow: hidden; REMOVE this line */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

/* Logo */
.logo img {
  max-height: 60px;
  width: auto;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
}

.nav-menu a {
  position: relative;
  text-decoration: none;
  color: white; /* for contrast */
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--primary-red);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* Hamburger Button Reset */
.hamburger {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 1rem;
  z-index: 1001; /* stays above nav */
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff !important; /* force white */
  margin: 3px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0,0,0,0.95); /* ✅ dark background so white text is visible */
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
    box-shadow: var(--shadow);
  }

  .nav-menu a {
    color: #000000; /* ✅ force white text */
    font-size: 1.2rem; /* ✅ slightly bigger for touch */
    padding: 10px 0;
  }

  .nav-menu a:hover {
    color: #ffd700; /* ✅ luxury gold hover effect */
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}





/* Call to Action Button */
.header-cta .btn-whatsapp {
  background: var(--primary-red);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 1.5rem;
  transition: background 0.3s ease;
  text-decoration: none;
}

.header-cta .btn-whatsapp:hover {
  background: #b30000;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 1.5rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    left: 0;
  }

  .header-cta {
    margin-top: 1rem;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}


/* Hero Section */
.hero {
  position: relative;
  height: 100vh; /* full screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Background Image */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* push behind text */
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

/* Title & Subtitle */
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #191970; /* dark navy */
  opacity: 0.9;   /* subtle transparency */
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #191970;
  opacity: 0.9;
  margin-bottom: 2rem;
  font-weight: 500;
}

/* Button */
.btn-transparent {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-transparent:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 600px; /* shorter for mobile */
  }
  .hero-bg {
    object-position: 37% center; /* shift subject for mobile */
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .btn-transparent {
    padding: 0.65rem 1.2rem;
  }
}




/* Breadcrumb */
.breadcrumb {
  background: rgba(0, 0, 0, 0.7); /* matches hero style */
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb .separator {
  color: #ff007f; /* neon pink separator */
  margin: 0 0.25rem;
  font-weight: bold;
}

.breadcrumb a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #ff007f; /* hover glow */
  text-shadow: 0 0 5px #ff3399;
}

/* About Us Section */
.about-us {
 padding: 4rem 0;
  background: linear-gradient(135deg, #1a0000, #660000, #0a0a0a);
  color: #fff;
  text-align: center;
  margin: 10px;
  border-radius: 15px;

  /* Neon Purple Border */
  border: 2px solid #a020f0; /* base purple border */
  box-shadow: 0 0 15px rgba(160, 32, 240, 0.8), 
              0 0 15px rgba(160, 32, 240, 0.6), 
              0 0 20px rgba(160, 32, 240, 0.4);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 0, 127, 0.4);
}

.about-content h2 {
  font-size: 2rem;
  color: #ffd700; /* Gold for luxury */
  margin-bottom: 1rem;
}

.about-content h2::after {
  content: "";
  position: relative;
  bottom: -6px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ff007f, #ffcc00);
  border-radius: 2px;
}

.about-content p {
   font-size: 1rem;
  line-height: 1.6;
  color: #ddd; /* Slightly lighter for readability */
  margin-bottom: 1rem;;
}

.about-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #ff007f, #ffcc00);
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 0, 127, 0.5);
}

/* Video Section */
.video-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a0000, #660000, #0a0a0a);
  color: #fff;
  text-align: center;
  margin: 10px;
  border-radius: 15px;

  /* Neon Purple Border */
  border: 2px solid #a020f0; /* base purple border */
  box-shadow: 0 0 15px rgba(160, 32, 240, 0.8), 
              0 0 15px rgba(160, 32, 240, 0.6), 
              0 0 20px rgba(160, 32, 240, 0.4);
}

.video-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700; /* luxury gold */
  margin-bottom: 0.5rem;
  padding: 5px;
}

.video-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
  padding: 5px;
}

.video-wrapper {
  display: flex;
  justify-content: center;
}

.video-player {
  max-width: 100%;
  width: 1000px; /* good size for desktop */
  border-radius: 10px;
  border: 2px solid #ff007f;
  box-shadow: 0 0 25px rgba(255, 0, 127, 0.7);
  margin-left: 5px;
  margin-right: 5px;
}

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

  .about-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Gallery Section */

.gallery-section {
  padding: 4rem 0;
  background: #191970; /* nightclub feel */
  color: #fff;
  text-align: center;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

/* Neon Glow Border for Model Cards */
.model-card {
  position: relative;
  border-radius: 12px;
  background: #111;
  border: 3px solid rgba(255, 0, 127, 0.6);
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.5);
  transition: border-color 1.2s ease, box-shadow 1.2s ease;
}


/* Pink glow when activated */
.model-card.active {
  border-color: rgba(255, 0, 127, 1);
  box-shadow: 0 0 25px rgba(255, 0, 127, 0.9),
              0 0 50px rgba(255, 0, 127, 0.6);
}

/* Green glow after transition */
.model-card.shifted {
  border-color: rgba(0, 255, 127, 1);
  box-shadow: 0 0 25px rgba(0, 255, 127, 0.9),
              0 0 50px rgba(0, 255, 127, 0.6);
}

.model-image {
  position: relative;
  width: 100%;
  height: 550px; /* adjust height as needed */
  overflow: hidden;
}

.model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures it covers top, left, right */
  display: block;
  border-top-left-radius: 10px; /* no extra padding */
  border-top-right-radius: 10px;
}

.model-info {
  padding: 1rem;
  background: #111; /* keeps text readable */
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.gallery-title {
  text-align: center;
  font-size: 2.5rem;   /* Bigger font */
  font-weight: 700;
  color: #ffd700;      /* Luxury gold */
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
}

.gallery-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
  font-style: italic;
}

/* Badges */
.badge {
  position: absolute;
  top: 12px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  border-radius: 5px;
  text-transform: uppercase;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.badge.verified {
  left: 12px;
  background: linear-gradient(135deg, #25D366, #128C7E); /* green shades */
}

.badge.featured {
  right: 12px;
  background: linear-gradient(135deg, #ff4d4d, #cc0000); /* red shades */
}

/* Featured - Top Right Diagonal */
.ribbon.featured {
  top: 12px;
  right: -50px;
  transform: rotate(45deg);
  width: 160px;
  text-align: center;
  background: linear-gradient(135deg, #ff007f, #e60073);
  box-shadow: 0 0 10px rgba(255,0,127,0.8);
}

/* Name + Age */
.model-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.model-name { color: #ffd700; }
.model-age { color: #ff007f; }

/* Description */
.model-desc {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

/* Type + Rating */
.model-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.model-type { color: #ffcc00; }
.model-rating i {
  color: #ffd700;
}

/* Buttons */
.model-buttons {
  display: flex;
  gap: 1rem;
}

.btn-call, .btn-whatsapp {
  flex: 1;
  padding: 0.6rem;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-call {
  background: #ff007f;
  color: #fff;
}

.btn-call:hover {
  background: #e60073;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ebe57;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a0000, #660000, #0a0a0a);
  color: #fff;
  text-align: justify;
  margin: 10px;
  border-radius: 15px;

  /* Neon Purple Border */
  border: 2px solid #a020f0; /* base purple border */
  box-shadow: 0 0 15px rgba(160, 32, 240, 0.8), 
              0 0 15px rgba(160, 32, 240, 0.6), 
              0 0 20px rgba(160, 32, 240, 0.4);
}

.cta-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

.cta-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #ddd;
  line-height: 1.6;
}

/* WhatsApp CTA Button */
.cta-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
  background: #1ebe57;
  transform: scale(1.05);
}

.cta-btn i {
  margin-right: 8px;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-image {
    margin-bottom: 1.5rem;
  }
}


/*Main Content Section*/

.main-content {
  padding: 4rem 1rem;
  background: #111; /* matches luxury theme */
  color: #ddd;
  line-height: 1.8;
}

.main-content h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  color: #ffd700; /* gold headings */
}

.main-content h3 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  color: #ff007f; /* neon pink subheadings */
}

.main-content p {
  margin: 1rem 0;
  font-size: 1rem;
}

/* Content Section (like About Us but reusable) */
.content-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a0000, #660000, #0a0a0a);
  color: #fff;
  text-align: justify;
  margin: 10px;
  border-radius: 15px;

  /* Neon Purple Border */
  border: 2px solid #a020f0; /* base purple border */
  box-shadow: 0 0 15px rgba(160, 32, 240, 0.8), 
              0 0 15px rgba(160, 32, 240, 0.6), 
              0 0 20px rgba(160, 32, 240, 0.4);
}

.content-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.content-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.section-title {
  font-size: 2rem;
  color: #ffd700; /* gold highlight */
  margin-bottom: 1rem;
}

.section-title span {
  color: #ff007f;
}

.content-text h3 {
  font-size: 1.3rem;
  color: #ffcc00;
  margin-top: 1rem;
}

.content-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .content-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .content-text h3 {
    margin-top: 1.5rem;
  }
}

/* Testimonial Section */
.testimonials {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a0000, #660000, #0a0a0a);
  color: #fff;
  border-radius: 15px;
  margin: 10px;
  text-align: center;
  
   /* Neon Purple Border */
  border: 2px solid #a020f0; /* base purple border */
  box-shadow: 0 0 15px rgba(160, 32, 240, 0.8), 
              0 0 15px rgba(160, 32, 240, 0.6), 
              0 0 20px rgba(160, 32, 240, 0.4);
}

.testimonials .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ffd700;
}

/* Slider Container */
.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 1.5rem;
  padding: 1rem;
}

.testimonial-card {
  flex: 0 0 80%; /* Show 1 card at a time */
  max-width: 500px;
  margin: auto;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 2rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  scroll-snap-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 0, 127, 0.5);
}

.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-card span {
  font-weight: bold;
  color: #ffd700;
}

/* Arrows */
.testimonial-controls {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 2rem;
}

.arrow-btn {
  background: linear-gradient(135deg, #ff007f, #e60073);
  border: none;
  color: #fff;
  padding: .25rem .5rem;
  font-size: 2rem; /* larger icon */
  border-radius: 50%;
  cursor: default;
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.8);
  transition: all 0.3s ease;
}

.arrow-btn:hover {
  background: linear-gradient(135deg, #ffd700, #ff007f);
  color: #000;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.9);
  transform: scale(1.1);
}

/* Make arrows bigger on mobile too */
@media (max-width: 768px) {
  .arrow-btn {
    font-size: 1.8rem;
    padding: 1.2rem 1.5rem;
  }
}


/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a0000, #660000, #0a0a0a);
  color: #fff;
  border-radius: 15px;
  margin: 10px;
  
   /* Neon Purple Border */
  border: 2px solid #a020f0; /* base purple border */
  box-shadow: 0 0 15px rgba(160, 32, 240, 0.8), 
              0 0 15px rgba(160, 32, 240, 0.6), 
              0 0 20px rgba(160, 32, 240, 0.4);
}

.faq-title {
  font-size: 2rem;
  color: #ffd700;
  text-align: center;
  margin-bottom: 0.5rem;
}

.faq-subtitle {
  text-align: center;
  color: #ccc;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #444;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #ffd700;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #ff007f;
}

.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Tags Section */
.tags-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a0000, #660000, #0a0a0a);
  color: #fff;
  border-radius: 15px;
  margin: 10px;
  text-align: center;
  
   /* Neon Purple Border */
  border: 2px solid #a020f0; /* base purple border */
  box-shadow: 0 0 15px rgba(160, 32, 240, 0.8), 
              0 0 15px rgba(160, 32, 240, 0.6), 
              0 0 20px rgba(160, 32, 240, 0.4);
}

.tags-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700; /* gold highlight */
  margin-bottom: 1.5rem;
  text-align: center;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.tags-list a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 0, 127, 0.1);
  border: 1px solid #ff007f;
  border-radius: 25px;
  color: #ffd700;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tags-list a:hover {
  background: #ff007f;
  color: #fff;
  transform: scale(1.05);
}

/* Locations Section */
.locations-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a0000, #660000, #0a0a0a);
  color: #fff;
  border-radius: 15px;
  margin: 10px;
  text-align: center;
  
   /* Neon Purple Border */
  border: 2px solid #a020f0; /* base purple border */
  box-shadow: 0 0 15px rgba(160, 32, 240, 0.8), 
              0 0 15px rgba(160, 32, 240, 0.6), 
              0 0 20px rgba(160, 32, 240, 0.4);
}

.locations-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700; /* gold */
  margin-bottom: 0.5rem;
}

.locations-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.locations-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.location-btn {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  background: linear-gradient(135deg, #ff007f, #ff4da6);
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.location-btn:hover {
  background: linear-gradient(135deg, #ffd700, #ffb400);
  color: #000;
  transform: scale(1.05);
}

/* Contact Section */
.contact-section {
 padding: 4rem 0;
  background: linear-gradient(135deg, #1a0000, #660000, #0a0a0a);
  color: #fff;
  border-radius: 15px;
  margin: 10px;
  text-align: center;
  
   /* Neon Purple Border */
  border: 2px solid #a020f0; /* base purple border */
  box-shadow: 0 0 15px rgba(160, 32, 240, 0.8), 
              0 0 15px rgba(160, 32, 240, 0.6), 
              0 0 20px rgba(160, 32, 240, 0.4);
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.contact-info {
  text-align: left;
}

.contact-info h3 {
  margin-bottom: 1rem;
  color: #ff007f;
}

.contact-info p {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #ddd;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid #ff007f;
  box-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
}

.btn-submit {
  padding: 0.8rem;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff007f, #ffcc00);
  color: #000;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #ffcc00, #ff007f);
  color: #000;
}

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


/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #0a0a0a, #330000); /* dark luxury red gradient */
  color: #ccc;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 3rem;
  font-size: 0.95rem;
}

.footer a {
  color: #ffd700; /* gold links */
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ff007f; /* neon pink hover */
}

/* Floating Buttons Base */
.float-btn {
  position: fixed;
  bottom: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

/* Call Button (Left) */
.call-btn {
  left: 20px;
  background: linear-gradient(135deg, #ff007f, #e60073); /* pink/red neon */
}

/* WhatsApp Button (Right) */
.whatsapp-btn {
  right: 20px;
  background: #25d366; /* WhatsApp green */
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
    bottom: 15px;
  }
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .content-table {
        font-size: 0.9rem;
    }
    
    .content-table td {
        padding: 0.5rem;
    }
    
    .tags-container {
        gap: 0.5rem;
    }
    
    .service-areas-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}