html, body {
  max-width: 100vw;
  overflow-x: hidden; }



@media (max-width: 768px) {
  .cglook-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 16px 4px;
    max-width: 100vw;
  }
}

.cglook-category-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #2d0000; 
  color: #fff4f4;
}
strong {
  color: #ffcc00; 
  text-decoration: none;
}
a {
  color: #ff4da6; 
  text-decoration: none;
  transition: color 0.3s ease;
}

.cglook-navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: #b30047;
  z-index: 1000;
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.cglook-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cglook-logo {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
}

/* Toggler Button */
.cglook-toggler {
  display: none;
  font-size: 26px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
}

/* Navigation Links */
.cglook-nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.cglook-nav-links li a {
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  padding: 8px 14px;
  border-radius: 6px;
  transition: 0.3s;
}

.cglook-nav-links li a:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 8px #ff6699;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .cglook-toggler {
    display: block;
  }

  .cglook-nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    animation: fadeDown 0.3s ease-in-out;
  }

  .cglook-nav-links.show {
    display: flex;
  }

  .cglook-nav-links li a {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .cglook-nav-links li:last-child a {
    border-bottom: none;
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  object-position: top;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* Soft dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255, 0, 70, 0.6);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #f9f9f9;
}

.city-selector {
  background: rgba(255, 255, 255, 0.12);
  padding: 15px 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(255, 0, 70, 0.3);
  backdrop-filter: blur(8px);
}

.city-selector label {
  font-weight: bold;
  color: #fff;
}

.city-selector select {
  padding: 8px 15px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  background-color: #fff;
  color: #8b0033;
  font-weight: 600;
}

.cglook-category-section {
  padding: 30px 15px;
  background: #7b002c; /* deep scarlet red */
}

.cglook-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  object-position: top;
}

.cglook-category-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.cglook-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 0, 85, 0.5);
}

.cglook-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  object-position: top;
}
/* Responsive grid for category cards */
.cglook-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 30px 0;
}

@media (max-width: 768px) {
  .cglook-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cglook-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.escort-price-section {
  background: linear-gradient(to bottom, #b61453, #aa0632);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 50px 10px;
}
.escort-price-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
}
.escort-price-text {
  flex: 1 1 60%;
}
.escort-price-text h2 {
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
}
.escort-price-text p {
  font-size: 17.6px;
  line-height: 1.7;
  color: #f8dada;
  margin-bottom: 16px;
}

.escort-price-table {
  margin-top: 25px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 192, 203, 0.2);
  border: 1px solid #ff5e78;
}
.table-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-bottom: 1px solid #7a0023;
}
.table-row.header {
  background-color: #ff5e78;
  color: #fff;
  font-weight: bold;
}
.escort-price-image {
  flex: 1 1 35%;
}
.escort-price-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 192, 203, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .escort-price-container {
    flex-direction: column;
  }
  .escort-price-image {
    order: -1;
  }
}

.premium-services {
  background-color: #220003; /* deep scarlet velvet */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.premium-services .section-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffb3c6; /* soft romantic pink */
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background-color: #2e0005;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px 20px;
  max-width: 250px;
  flex: 1 1 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 90, 120, 0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 90, 120, 0.3);
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: #fff4f0;
  padding: 10px;
  border: 2px solid #ff5e78;
}

.service-card h3 {
  font-size: 18px;
  color: #ffc0cb; /* light pink heading */
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  font-size: 15px;
  color: #ffe2e7;
}

.cglook-features-clean {
  background-color: #6a0028;
  padding: 60px 20px;
  color: #ffeef0;
  font-family: 'Poppins', sans-serif;
}

.features-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.features-title h2 {
  font-size: 32px;
  font-family: 'Playfair Display', serif;
  color: #ffccd5;
}

.features-title h2 span {
  color: #ffffff;
  font-weight: bold;
}

.features-title p {
  font-size: 17px;
  color: #ffffff;
  margin-top: 10px;
}

.features-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px 40px;
  max-width: 1100px;
  margin: auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-item i {
  font-size: 26px;
  color: #ff9eb8;
  flex-shrink: 0;
  margin-top: 4px;
}

.feature-item h3 {
  font-size: 18px;
  margin: 0;
  color: #ffffff;
}

.feature-item p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #f9f9f9;
}


.rules-section {
  background: linear-gradient(to bottom, #b61453, #aa0632);
  padding: 50px 20px;
  color: white;
  text-align: center;
  font-family: Arial, sans-serif;
}

.rules-section h2 {
  color: orange;
  font-size: 32px;
  margin-bottom: 30px;
}

/* Grid layout */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* Individual cards */
.rule-card {
  padding: 20px;
  border-radius: 10px;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.rule-card p {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
}

/* Colors */
.blue    { background-color: #2563eb; }
.green   { background-color: #16a34a; }
.red     { background-color: #dc2626; }
.purple  { background-color: #7e22ce; }
.pink    { background-color: #db2777; }
.indigo  { background-color: #4f46e5; }
.orange  { background-color: #ea580c; }
.teal    { background-color: #0d9488; }
