body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #222;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}


/* HEADER */
.site-header {
  background: #111;
  color: #fff;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
}

/* HERO */
.hero {
  background: #222;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

/* FILTERS */
.filters {
  display: flex;
  gap: 10px;
  margin: 20px auto;
}

.filters select,
.filters button {
  padding: 10px;
}

/* PROFILES */
.profiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  padding: 10px;
  text-align: center;
}

.card img {
  width: 100%;
  height: auto;
}

.card a {
  display: block;
  margin-top: 10px;
  background: #e11d48;
  color: #fff;
  padding: 8px;
  text-decoration: none;
}

/* SEO CONTENT */
/*.seo-content {
  background: #fff;
  margin: 40px auto;
  padding: 30px;
}

/* FOOTER CTA */
.footer-cta {
  display: flex;
  position: sticky;
  bottom: 0;
}

.footer-cta a {
  flex: 1;
  padding: 15px;
  text-align: center;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
}

.cta-call {
  background: #2563eb;
}

.cta-whatsapp {
  background: #22c55e;
}

/* FOOTER */
.site-footer {
  background: #111;
  color: #aaa;
  padding: 20px 0;
  text-align: center;
}

.disclaimer {
  font-size: 12px;
  margin-top: 10px;
}

/* PROFILE PAGE */
.profile-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.profile-images img {
  width: 100%;
  margin-bottom: 15px;
}

.profile-details h2,
.profile-details h3 {
  margin-top: 20px;
}

.profile-info {
  list-style: none;
  padding: 0;
}

.profile-info li {
  margin-bottom: 8px;
}

.services {
  list-style: disc;
  padding-left: 20px;
}

.contact-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .profile-layout {
    grid-template-columns: 1fr;
  }
}

.section-title {
  margin: 30px 0 15px;
  font-size: 26px;
}

/* CITY GRID */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
}

.city-card {
  background: #fff;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: #111;
  font-weight: bold;
  border: 1px solid #ddd;
}

.hero {
  background: #111;
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.city-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  text-decoration: none;
  color: #000;
}

.city-card:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.footer-cta {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 50px 0;
}

.btn-call,
.btn-whatsapp {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  color: #fff;
  text-decoration: none;
}

.btn-call { background: #e11d48; }
.btn-whatsapp { background: #22c55e; }

/* =========================
   MOBILE FIRST (DEFAULT)
========================= */

body {
  margin: 0;
  font-family: system-ui, Arial, sans-serif;
}

.container {
  width: 100%;
  padding: 12px;
}

.profile {
  width: 100%;
}

.profile img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.profile h1 {
  font-size: 22px;
  margin: 10px 0;
}

/* CTA buttons */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: #000;
}

.mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 14px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.mobile-cta .call {
  background: #2563eb;
}

.mobile-cta .whatsapp {
  background: #16a34a;
}

/* HERO SEARCH BAR */
.hero-search {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.hero-search form {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.55);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  gap: 10px;
}

/* INPUT */
.hero-search input[type="text"] {
  width: 260px;
  padding: 12px 14px;
  font-size: 15px;
  border-radius: 6px;
  border: none;
  outline: none;
  background: #111;
  color: #fff;
}

.hero-search input::placeholder {
  color: #aaa;
}

/* SEARCH BUTTON */
.hero-search button {
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  transition: all 0.3s ease;
}

.hero-search button:hover {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  transform: translateY(-1px);
}

/* MOBILE */
@media (max-width: 600px) {
  .hero-search form {
    flex-direction: column;
    width: 90%;
  }

  .hero-search input[type="text"],
  .hero-search button {
    width: 100%;
  }
}

@media (min-width: 768px) {

  .container {
    max-width: 1100px;
    margin: auto;
  }

  .mobile-cta {
    position: static;
    margin-top: 20px;
  }
}

/* POPULAR CITIES */
.popular-cities {
  padding: 50px 0;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.city-box {
  display: block;
  text-align: center;
  padding: 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.city-box:hover {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  transform: translateY(-3px);
}

:root {
  --bg-dark: #0b1220;
  --bg-mid: #111827;
  --bg-light: #1f2937;
  --primary: #2563eb;
  --secondary: #7c3aed;
  --text-main: #ffffff;
  --text-muted: #9ca3af;
}

.hero {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: var(--text-main);
  padding: 90px 20px 80px;
  text-align: center;
}

.hero h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero p {
  font-size: 16px;
  color: #e5e7eb;
  margin-bottom: 25px;
}

.hero {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: var(--text-main);
  padding: 90px 20px 80px;
  text-align: center;
}

.hero h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero p {
  font-size: 16px;
  color: #e5e7eb;
  margin-bottom: 25px;
}

.hero-search {
  display: flex;
  justify-content: center;
}

.hero-search form {
  display: flex;
  gap: 8px;
  background: #0f172a;
  padding: 10px;
  border-radius: 10px;
}

.hero-search input {
  background: transparent;
  border: none;
  color: white;
  padding: 10px 12px;
  width: 220px;
  outline: none;
}

.hero-search button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
}

.section {
  background: var(--bg-mid);
  padding: 70px 20px;
}

.section.alt {
  background: var(--bg-dark);
}

.section-title {
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-align: center;
}


.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: auto;
}

.city-box {
  background: #0f172a;
  color: white;
  padding: 14px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #1e293b;
  transition: all 0.25s ease;
}

.city-box:hover {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  transform: translateY(-2px);
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.icon-box {
  background: var(--bg-light);
  padding: 25px;
  border-radius: 12px;
  color: white;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.testimonial {
  background: #0f172a;
  padding: 20px;
  border-radius: 12px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero-search input {
    width: 160px;
  }
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #0b1220; /* MAIN DARK BACKGROUND */
  color: #e5e7eb;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
}

.section {
  background-color: #111827; /* dark blue-gray */
  padding: 70px 20px;
}

.section.alt {
  background-color: #0f172a; /* slightly darker */
}

.city-card,
.city-box {
  background: #111827;
  color: #ffffff;
  border: 1px solid #1e293b;
}

.city-card:hover,
.city-box:hover {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.mobile-cta {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  z-index: 999;
}

.mobile-cta a {
  flex: 1;
  padding: 14px;
  text-align: center;
  color: white;
  font-weight: 600;
}

.city-box,
.city-card {
  color: #ffffff !important;
}

 /* Menu Bar  */
.main-nav {
  display: flex;
  gap: 18px;
}

.main-nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.main-nav a:hover {
  text-decoration: underline;
}

/* CONTENT SECTION – FULL WIDTH FIX */
.content-section {
  width: 100%;
  background: transparent;
  padding: 80px 20px;
}

.content-section .container {
  max-width: 1100px;   /* controls text width */
  margin: 0 auto;
}

.content-section h2 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 24px;
  text-align: center;
}

.content-section p {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: center;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: auto;
}

.testimonial-card {
  background: #111827;
  border: 1px solid #1e293b;
  padding: 24px;
  border-radius: 12px;
  color: #e5e7eb;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: #2563eb;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
  color: #d1d5db;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

/* FOOTER */
.site-footer {
  background: #0b1220;
  border-top: 1px solid #1e293b;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1000px;
  margin: auto;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-menu li a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-menu li a:hover {
  color: #ffffff;
}

.footer-disclaimer {
  color: #e5e7eb;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-note {
  color: #9ca3af;
  font-size: 12px;
  line-height: 1.6;
  max-width: 700px;
  margin: auto;
}

/* =========================
   CITY PAGE – AD BOX
========================= 

.ad-box {
  display: flex;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);*/
}

/* Image container */
.ad-image {
  width: 90px;
  flex-shrink: 0;
}

.ad-image img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  background: #f3f4f6;
}

/* Content */
.ad-content {
  flex: 1;
}

/* Title */
.ad-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
  color: #111827;
  line-height: 1.3;
}

/* Short intro */
.ad-intro {
  font-size: 14px;
  color: #374151;
  margin-bottom: 6px;
}

/* Description */
.ad-text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Remove divider if any */
.ad-divider {
  display: none;
}

/* =========================
   AD CTA BUTTONS
========================= */

.ad-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.ad-cta a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}

.btn-call {
  background: #2563eb;
  color: #0000;
}

.btn-whatsapp {
  background: #16a34a;
  color: #fff;
}

.btn-view {
  background: #111;
  color: #fff;
}


.ad-title {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

/* CITY PAGE – AD IMAGE */
.ad-image img {
  width: 180px;        /* medium size */
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/*@media (max-width: 768px) {
  .ad-box {
    flex-direction: column;
  }

  .ad-image img {
    width: 100%;
    max-width: 100%;
  }
}

/* PROFILE PAGE IMAGE */
.profile-image img {
  width: 100%;
  max-width: 420px;   /* medium–large */
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.ad-box {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 25px;
  align-items: flex-start;   /* prevents overlap */
}

.ad-image {
  flex-shrink: 0;        /* image keeps its space */
}

.ad-image {
  flex-shrink: 0;        /* image keeps its space */
}

@media (max-width: 768px) {
  .ad-box {
    flex-direction: column;
  }

  .ad-image img {
    width: 100%;
    max-width: 100%;
  }
}

/* DESKTOP CITY ADS */
.ad-box {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.ad-image {
  flex: 0 0 200px;   /* fixed desktop image width */
}

.ad-image img {
  width: 200px;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.ad-content {
  flex: 1;
  min-width: 0; /* prevents text overflow */
}

.ad-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #111;
}

.ad-intro {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}

.ad-text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 12px;
}

.ad-cta {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.ad-cta a {
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
}

.btn-call {
  background: #2563eb;
  color: #fff;
}

.btn-whatsapp {
  background: #16a34a;
  color: #fff;
}

.btn-view {
  background: #e5e7eb;
  color: #111;
}


/* =========================
   MOBILE CITY ADS FIX
========================= */
@media (max-width: 768px) {

  .ad-box {
    flex-direction: column;          /* stack image + content */
    padding: 14px;
    gap: 12px;
  }

  .ad-image {
    width: 100%;
    flex: none;
    text-align: center;
  }

  .ad-image img {
    width: 100%;                     /* BIG image on mobile */
    max-width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .ad-content {
    padding: 0;
  }

  .ad-title {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .ad-intro {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .ad-text {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 10px;
  }

  .ad-cta {
    flex-wrap: wrap;
    gap: 8px;
  }

  .ad-cta a {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    border-radius: 22px;
  }
}

/* =========================
   SIMILAR PROFILES
========================= */
.similar-profiles {
  padding: 40px 0;
}

.similar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.similar-card {
  background: #fff;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: #111;
  padding: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform .2s ease;
}

.similar-card:hover {
  transform: translateY(-4px);
}

.similar-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

.similar-card h3 {
  font-size: 15px;
  margin: 8px 0 4px;
}

.similar-card span {
  font-size: 13px;
  color: #666;
}

/* Mobile */
@media (max-width: 768px) {
  .similar-card img {
    height: 180px;
  }
}

.breadcrumb {
  font-size: 14px;
  margin: 10px 0 20px;
  color: #555;
}

.breadcrumb a {
  color: #2563eb;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 6px;
}

.breadcrumb .current {
  color: #111;
  font-weight: 600;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.ad-box {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  flex-wrap: wrap; /* VERY IMPORTANT */
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  .main-nav { display: none; }

  .mobile-nav {
    display: block;
    position: relative;
  }

  .mobile-menu {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
  }

  .mobile-menu a {
    display: block;
    padding: 12px;
    border-bottom: 1px solid #eee;
  }
}


/* HEADER */
.site-header {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
}

/* DESKTOP MENU */
.desktop-menu a {
  color: #fff;
  margin-left: 18px;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  background: none;
  color: #fff;
  font-size: 22px;
  border: none;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #111;
}

.mobile-menu a {
  padding: 14px;
  border-top: 1px solid #222;
  color: #fff;
  text-decoration: none;
}

.mobile-menu.open {
  display: flex;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

/* CTA BUTTON WRAPPER */
.ad-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* COMMON BUTTON STYLE */
.ad-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  min-width: 90px;
}

/* CALL */
.btn-call {
  background: #2f6fed;
  color: #fff;
}

/* WHATSAPP */
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

/* VIEW (FIXED SIZE) */
.btn-view {
  background: #e68df2;
  color: #000;
}

/* MOBILE MENU FIX */
.mobile-menu {
  display: none;
}

.mobile-menu.active {
  display: block;
}

/* Optional animation */
@media (max-width: 768px) {
  .mobile-menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 9999;
  }
}

/* =========================
   VERIFIED BADGE
========================= */
.verified-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 600;
  color: #0f5132;
  background: #d1e7dd;
  border-radius: 12px;
  vertical-align: middle;
}

/* Dark theme support */
body.dark .verified-badge,
.site-dark .verified-badge {
  color: #0f5132;
  background: #6ee7b7;
}


/* =========================
   PROFILE / CITY CARD FIX
========================= */

.ad-box {
  display: flex;
  align-items: flex-start; /* IMPORTANT */
  gap: 24px;

  background: #ffffff;
  border-radius: 18px;
  padding: 24px;

  width: 100%;
  max-width: 1100px;
  margin: 0 auto 24px;

  box-sizing: border-box;
}

/* IMAGE COLUMN */
.profile-image,
.ad-image {
  flex: 0 0 240px;
}

/* IMAGE */
.profile-image img,
.ad-image img {
  width: 100%;
  height: auto; /* CRITICAL */
  display: block;
  border-radius: 14px;
}

/* CONTENT COLUMN */
.ad-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* TITLE */
.ad-content h2 {
  color: #111;
  font-weight: 700;
  margin-bottom: 8px;
}

/* CTA */
.ad-cta {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .ad-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile-image,
  .ad-image {
    flex: none;
    width: 100%;
    max-width: 320px;
  }

  .ad-cta {
    justify-content: center;
  }
}

/* =========================
   SIMILAR PROFILES FIX
========================= */
.similar-profiles .similar-card img {
  width: 100%;
  height: 180px;          /* fixed thumbnail height */
  object-fit: cover;     /* no stretching */
  border-radius: 12px;
  display: block;
}

/* MAIN PROFILE / CITY ADS ONLY */
.ad-box .profile-image img,
.ad-box .ad-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

/* =========================
   DESKTOP PROFILE & CITY FIX
========================= */
@media (min-width: 992px) {

  /* MAIN AD BOX (PROFILE + CITY) */
  .ad-box {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
  }

  /* IMAGE COLUMN */
  .ad-box .profile-image,
  .ad-box .ad-image {
    flex: 0 0 260px;          /* fixed column */
    max-width: 260px;
  }

  .ad-box .profile-image img,
  .ad-box .ad-image img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
  }

  /* CONTENT COLUMN */
  .ad-box .ad-content {
    flex: 1;
    min-width: 0;
  }

  .ad-box .ad-title {
    margin-top: 0;
    color: #111;
    font-weight: 600;
  }
}

/* =========================
   SIMILAR PROFILES – DESKTOP
========================= */
.similar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.similar-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

@media (min-width: 992px) {
  .ad-cta {
    display: flex;
    gap: 12px;
    margin-top: 16px;
  }
}

