* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* NAVBAR */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* NAVBAR BASE */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    background: #fff;
    position: relative;
    z-index: 1000;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #008080;
    z-index: 100;
}

/* Hide checkbox */
.menu-toggle {
    display: none;
}

/* Hamburger - hidden on desktop */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 100;
}

.hamburger .line {
    width: 30px;
    height: 3px;
    background: #000; /* Changed to BLACK as requested */
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Navigation links */
.nav-links {
    display: flex;
    align-items: center;
    z-index: 90;
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: #444;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #008080;
}

/* MOBILE RESPONSIVE */
@media (max-width: 868px) {
    .navbar {
        padding: 18px 30px;
    }

    /* Show hamburger */
    .hamburger {
        display: block;
    }

    /* Hide nav links by default on mobile */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 18px;
        display: block;
        padding: 10px;
    }

    /* Show menu when checkbox is checked */
    #menu-toggle:checked ~ .nav-links {
        display: flex;
    }

    /* Hamburger to X animation */
    #menu-toggle:checked ~ .hamburger .line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 15px 20px;
    }

    .logo {
        font-size: 18px;
    }
}

/* ===== REST OF YOUR CSS (HERO, PROFILES, etc.) ===== */
/* Keep all your other sections exactly as they are — they are already responsive */

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 60px;
    background: linear-gradient(to right, #ff1f6a, #8b003a);
    color: #fff;
}

@media (max-width: 868px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
    }

    .hero-content {
        width: 100%;
        margin-bottom: 40px;
    }

    .hero-image {
        width: 100%;
    }

    .hero-image img {
        width: 100%;
        max-width: 380px;
    }

    .buttons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 30px;
    }
}

/* HERO SECTION */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 60px;
    background: linear-gradient(to right, #ff1f6a, #8b003a);
    color: #fff;
}

.hero-content {
    width: 55%;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.highlight {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* BUTTONS */
.buttons {
    display: flex;
    gap: 25px;
}

.btn {
    padding: 32px 22px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.primary {
    background: #fff;
    color: #d1004a;
}

.secondary {
    border: 2px solid #fff;
    color: #fff;
}

/* IMAGE */
.hero-image {
    width: 40%;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 380px;
    border-radius: 20px;
    object-fit: cover;
}

/* ===== BULK LINKS SECTION ===== */
.bulk-links-section {
 
  padding: 50px 10px;
  background: #f9fafc;
}

.bulk-links-container {
  max-width: 1300px;
  margin: auto;
}

/* TITLE */
.bulk-links-container h2 {
  font-size: 38px;
  text-align: center;
  margin-bottom: 0px;
}

.bulk-desc {
  font-size: 15px;
  color: #ff00b3;
  text-align: center;
  margin-bottom: 45px;
  line-height: 1.6;
}

/* GRID */
.bulk-links-grid {
  display: grid;
  position: relative;
  left: 250px;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
}

/* LIST */
.bulk-links-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bulk-links-grid li {
  margin-bottom: 4px;
}

/* LINKS */
.bulk-links-grid a {
  display: inline-block;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  padding: 6px 0;
  transition: all 0.3s ease;
}

.bulk-links-grid a:hover {
  color: #ff0055;
  transform: translateX(4px);
}

/* ======================
   RESPONSIVE BREAKPOINTS
   ====================== */

/* LARGE TABLET */
@media (max-width: 1024px) {
  .bulk-links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .bulk-links-container h2 {
    font-size: 26px;
  }
}

/* TABLET */
@media (max-width: 768px) {
  .bulk-links-section {
    padding: 65px 18px;
  }

  .bulk-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .bulk-desc {
    font-size: 14px;
    margin-bottom: 35px;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .bulk-links-section {
    padding: 55px 15px;
  }

  .bulk-links-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bulk-links-container h2 {
    font-size: 22px;
  }

  .bulk-links-grid a {
    font-size: 15px;
    padding: 10px 12px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }

  .bulk-links-grid li {
    margin-bottom: 10px;
  }
}



/* ===== PROFILES SECTION ===== */
.profiles {
    padding: 70px 8%;
    background: #fff;
    text-align: center;
}

.profiles h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.sub-text {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 15px;
}

/* GRID */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* CARD */
.profile-card {
    background: #f9f9f9;
    border-radius: 14px;
    overflow: hidden;
    text-align: left;
    transition: 0.3s;
}

.profile-card:hover {
    transform: translateY(-6px);
}

.profile-card img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

/* CONTENT */
.profile-card h3 {
    font-size: 20px;
    margin: 15px;
}

.age {
    font-size: 13px;
    color: #777;
    margin: 0 15px;
}

.desc {
    font-size: 14px;
    margin: 10px 15px;
    color: #444;
}

/* TAGS */
.tags {
    display: flex;
    gap: 10px;
    padding: 15px;
}

.verified {
    background: #ff2f7d;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
}

.location {
    background: #eee;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
}

/* ===== CONTENT SECTION ===== */
.content-section {
    padding: 70px 12%;
    background: #fff;
}

.content-section h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 25px;
}

.content-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 18px;
}

.content-section a {
    color: #d6005a;
}

.content-section h3 {
    text-align: center;
    margin-top: 50px;
    font-size: 26px;
}

.center-text {
    text-align: center;
    max-width: 700px;
    margin: 15px auto 0;
    color: #555;
    font-size: 15px;
}

/* ===== MODEL PROFILES SECTION ===== */
.profiles-section {
  padding: 80px 20px;
  background: #f9fcff;
  text-align: center;
}

.profiles-section h2 {
  font-size: 26px;
  margin-bottom: 40px;
}

.profiles-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.profile-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-6px);
}

.profile-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
}

.profile-card h3 {
  margin-top: 15px;
  font-size: 18px;
}

.profile-card p {
  font-size: 14px;
  color: #555;
  margin: 8px 0 14px;
}

.profile-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff0055;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
}


/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: #f9fcff;
  padding: 60px 20px;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 22px;
  margin-bottom: 25px;
}

.testimonial-box {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.testimonial-content {
  flex: 1;
  padding: 0 20px;
}

.testimonial-content p {
  font-size: 15px;
  color: #333;
  margin-bottom: 8px;
}

.testimonial-content span {
  font-size: 13px;
  color: #777;
}

.nav-btn {
  background: #ffffff;
  border: 1px solid #ddd;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}

/* ===== LOCATIONS ===== */
.locations-section {
  background: #ffffff;
  padding: 70px 20px;
  text-align: center;
}

.locations-section h2 {
  font-size: 24px;
  margin-bottom: 30px;
}

.locations-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.locations-grid a {
  display: block;
  padding: 12px 10px;
  border: 1px solid #eee;
  border-radius: 8px;
  font-size: 14px;
  color: #e6004c;
  text-decoration: none;
  background: #fff;
}

.locations-grid a:hover {
  background: #e6004c;
  color: #fff;
}

/* ===== FIND US ===== */
.find-us-section {
  padding: 70px 20px;
  text-align: center;
  background: #f9fcff;
}

.find-us-section h2 {
  font-size: 24px;
  margin-bottom: 6px;
}

.sub-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.map-wrapper {
  max-width: 900px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.map-wrapper iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 80px 20px;
  background: #ffffff;
}

.contact-section h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-info-text {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
}

.contact-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-details p {
  font-size: 14px;
  margin-bottom: 12px;
  color: #333;
}

/* FORM */
.contact-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-form textarea {
  min-height: 90px;
  resize: vertical;
}

.contact-form button {
  background: #00a69c;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.contact-form button:hover {
  background: #008f87;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

