/* === Global Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}

/* === Navbar Styles === */
.navbar {
  background: linear-gradient(to right, #ff416c, #ff4b2b); /* Modern gradient */
  padding: 0fpx 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* === Logo === */
.logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  transition: transform 0.3s;
}
.logo:hover {
  transform: scale(1.05);
}

/* === Menu === */
.navbar-menu {
  display: flex;
  gap: 18px;
  list-style: none;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.navbar-menu li a {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  padding: 10px 18px;
  border-radius: 24px;
  transition: background 0.3s ease, transform 0.2s;
}
.navbar-menu li a:hover,
.navbar-menu li a.active {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* === Hamburger Toggle === */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.navbar-toggle .bar {
  width: 26px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.navbar-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.navbar-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === Mobile Styles === */
@media (max-width: 768px) {
  .navbar-menu {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: #ff4b2b;
    flex-direction: column;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    border-radius: 0 0 10px 10px;
    transition: max-height 0.4s ease, opacity 0.4s ease;
  }

  .navbar-menu.open {
    max-height: 300px;
    opacity: 1;
    padding: 10px 0;
  }

  .navbar-toggle {
    display: flex;
  }
}
/* === Modern Typography & Base Layout === */
body {
  font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.8;
  color: #1e1e1e;
  background: #f9f9fb;
  margin: 0;
  padding: 0;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* Main Wrapper */
main {
  max-width: 1200px;
  margin: 0 auto;
}

/* === Headings === */
h1, h2, h3 {
  color: #151515;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2.2rem;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 2.6rem;
  color: #0f172a; /* slate-900 */
}

h2 {
  font-size: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #e11d48; /* rose-600 */
  display: inline-block;
  color: #1f2937; /* gray-800 */
}

h3 {
  font-size: 1.5rem;
  color: #be123c; /* rose-700 */
  font-weight: 600;
}

/* === Paragraphs === */
p {
  margin: 1rem 0;
  font-size: 1.075rem;
  color: #374151; /* gray-700 */
  line-height: 1.8;
}

/* Inline Elements */
strong {
  font-weight: 700;
  color: #dc2626; /* red-600 */
}

em {
  color: #6b7280; /* gray-500 */
  font-style: italic;
}

/* === Lists === */
ul, ol {
  margin: 1.5rem 0 1.5rem 1.5rem;
  padding-left: 1.2rem;
}

ul li, ol li {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  color: #475569; /* slate-600 */
  position: relative;
}

ul li::marker {
  color: #e11d48; /* rose-600 */
}

ol li::marker {
  color: #2563eb; /* blue-600 */
}

/* === Responsive Typography === */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  p, li {
    font-size: 1rem;
  }
}

/* === Article Tags === */
article {
  background-color: #fff;
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.04);
}

/* === Responsive === */
@media (max-width: 600px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.1rem;
  }
}

/* === Main Header === */
.main-header {
  background: #ffffff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);

  position: relative;
  z-index: 10;
}

/* === Breadcrumb Navigation === */
.breadcrumb-nav {
  font-size: 14px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  color: #6b7280; /* slate-600 */
}

.breadcrumb-nav a {
  color: #3b82f6; /* blue-500 */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
  color: #1d4ed8; /* blue-700 */
  text-decoration: underline;
}

.breadcrumb-nav span {
  margin: 0 6px;
  color: #9ca3af; /* gray-400 */
  font-size: 13px;
}

/* === Hero Section === */

    .hero {
      color: #fff;
      text-align: center;
      padding: 10px;
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: auto;
    }

    .hero h1 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      color:white;
    }

    .hero p {
      color:white;
      font-size: 1.25rem;
      margin-bottom: 30px;
    }

    @media (min-width: 768px) {
      .hero h1 { font-size: 3rem; }
      .hero p { font-size: 1.5rem; }
    }


/* === Hero Buttons Group === */
.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 auto;
  padding-bottom: 16px;
}

/* === Hero Button Individual === */
.hero-btn {
  padding: 14px 24px;
  font-size: 1rem;
  text-decoration: none;
  background: linear-gradient(to right, #10b981, #059669); /* green-teal */
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  width: 150px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: linear-gradient(to right, #6366f1, #4f46e5); /* indigo hover */
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.3);
}

/* === Feature Banner Section === */
.feature {
  position: relative;
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Feature Image */
.feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition: transform 0.4s ease;
}

.feature:hover img {
  transform: scale(1.03);
}

/* Gradient Overlay */
.feature .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
  z-index: 1;
}

/* Feature Text Overlay */
.feature .feature-text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: #fff;
  z-index: 2;
  max-width: 600px;
  padding: 12px 24px;
  backdrop-filter: blur(3px);
  background: rgba(0, 0, 0, 0.3);
  border-left: 4px solid #f43f5e; /* rose-500 */
  border-radius: 6px;
}

/* Feature Heading */
.feature .feature-text h1 {
  font-size: 2.8rem;
  margin: 0;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .feature .feature-text {
    bottom: 20px;
    left: 20px;
    padding: 10px 16px;
  }

  .feature .feature-text h1 {
    font-size: 1.8rem;
  }
}
/* === Profile Grid Layout === */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 20px 0;
}

/* === Card Container === */
.profile-card {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.profile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

/* === Profile Image + Badge === */
.profile-image-container {
  position: relative;
  overflow: hidden;
}

.profile-image-container img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.profile-card:hover .profile-image-container img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(to right, #10b981, #059669);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* === Profile Info === */
.profile-info {
  padding: 18px 20px;
  flex-grow: 1;
}

.profile-info h3 {
  font-size: 1.3rem;
  margin: 0 0 4px;
  color: #111827; /* gray-900 */
  font-weight: 700;
}

.profile-info .age {
  font-size: 14px;
  color: #6b7280; /* gray-500 */
  font-weight: 400;
  margin-bottom: 6px;
}

.city,
.reviews {
  font-size: 14px;
  color: #4b5563; /* gray-600 */
  margin: 6px 0;
}

/* === Action Buttons === */
.actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.actions .btn {
  flex: 1;
  padding: 10px 0;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

/* Call Button */
.call-btn {
  background: linear-gradient(to right, #3b82f6, #2563eb);
}
.call-btn:hover {
  background: linear-gradient(to right, #1d4ed8, #1e40af);
  transform: translateY(-1px);
}

/* WhatsApp Button */
.whatsapp-btn {
  background: linear-gradient(to right, #25D366, #128c7e);
}
.whatsapp-btn:hover {
  background: linear-gradient(to right, #1ebe5d, #0e7b6c);
  transform: translateY(-1px);
}

/* === Mobile Optimization === */
@media (max-width: 480px) {
  .actions .btn {
    flex: 100%;
  }
}
/* === Search Filter Form === */
.filter-form {
  background: #f1f5f9; /* slate-100 */
  padding: 20px;
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 30px auto;
  max-width: 900px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.filter-form select {
  padding: 12px 14px;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #d1d5db; /* gray-300 */
  width: 100%;
  flex: 1;
  transition: border 0.3s ease;
  background-color: #fff;
}

.filter-form select:focus {
  outline: none;
  border-color: #6366f1; /* indigo-500 */
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.3);
}

.filter-form button {
  background: linear-gradient(to right, #ec4899, #db2777); /* pink shades */
  color: white;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 180px;
}

.filter-form button:hover {
  background: linear-gradient(to right, #be185d, #9d174d);
  transform: translateY(-2px);
}

/* Responsive: Stack filters */
@media (max-width: 768px) {
  .filter-form {
    flex-direction: column;
    align-items: stretch;
  }
}

/* === Search Links & Countries === */
.search-links,
.countries-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px 0;
  padding: 0 10px;
}

/* === Tag-style Buttons === */
.search-link,
.country-btn {
  padding: 8px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: 24px;
  text-decoration: none;
  color: #111827; /* gray-900 */
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.search-link:hover,
.country-btn:hover {
  background-color: #f3f4f6; /* gray-100 */
  border-color: #9ca3af; /* gray-400 */
  transform: translateY(-1px);
}
/* === Info Section Container === */
.info-section {
  padding: 2.5rem 1.5rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  margin-bottom: 2.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* === Section Heading === */
.info-section h2 {
  font-size: 2rem;
  color: #dc2626; /* red-600 */
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* === Paragraph Text === */
.info-section p {
  font-size: 1.075rem;
  color: #374151; /* gray-700 */
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

/* === Table Wrapper (Responsive) === */
.table-wrapper {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

/* === Info Table Styles === */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  min-width: 600px;
}

.info-table th,
.info-table td {
  padding: 0.9rem 1.2rem;
  border: 1px solid #e5e7eb; /* gray-200 */
  text-align: left;
  vertical-align: top;
}

.info-table th {
  background-color: #f9fafb; /* gray-50 */
  color: #1f2937; /* gray-800 */
  font-weight: 600;
  white-space: nowrap;
}

.info-table tr:nth-child(even) td {
  background-color: #f3f4f6; /* gray-100 */
}

.info-table td a {
  color: #dc2626;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.info-table td a:hover {
  text-decoration: underline;
  color: #991b1b;
}

/* === Notes Section === */
.info-notes {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px dashed #ddd;
}

.info-notes h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #111827; /* gray-900 */
  font-weight: 600;
}

.info-notes ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  color: #4b5563; /* gray-600 */
  line-height: 1.7;
}

.info-notes li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}



.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.testimonial-card {
  background-color: #fafafa;
  border-left: 4px solid #ff4f4f;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

.testimonial-card h4 {
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: bold;
}

.testimonial-card p {
  font-style: italic;
  color: #555;
}

/* footer css */

  .footer {
  background-color: #0f172a;
  color: #cbd5e1;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-top {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  max-height: 60px;
  margin-bottom: 20px;
}

.rta-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.rta-label {
  background: red;
  color: white;
  font-weight: bold;
  padding: 4px 8px;
  font-size: 13px;
  border-radius: 4px;
}

.rta-text {
  color: #f87171;
  font-weight: bold;
  font-size: 13px;
}

.footer-description {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #94a3b8;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  flex: 1 1 120px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-heading {
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 16px;
}

.footer-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #f87171;
}

.footer-country select {
  padding: 10px 14px;
  background-color: #1e293b;
  color: #fff;
  border: 1px solid #334155;
  border-radius: 6px;
  font-size: 14px;
  margin-top: 10px;
}

.footer-bottom {
  background-color: #1e293b;
  padding: 15px 20px;
  text-align: center;
}

.footer-copy {
  font-size: 14px;
  color: #cbd5e1;
}

/* Responsive */
@media (max-width: 250px) {
  .flex-container {
    flex-direction: column;
  }
}