/* ============================================================
   SINGLE TRANS PROFILE — ESCORT REPLICA (FINAL)
============================================================ */

.single-profile{
  background:#fff;
  overflow-x:hidden;
  width:100vw;
  max-width:100vw;
}

/* ============================================================
   TITLE BAR — CENTER ALIGN
============================================================ */

.sp-title-bar{
  width:100%;
  display:flex;
  justify-content:center;
  text-align:center;
}

.sp-title-bar .sp-inner{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.sp-main-title{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.sp-subline{
  text-align:center;
}

/* ================= GRID ================= */

.sd-page-grid{
  width:100vw;
  max-width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);

  display:grid;
  grid-template-columns:480px 1fr 320px;
  column-gap:0; /* critical */
  align-items:start;
}


/* ================= LEFT ================= */

.sd-left{
  padding:20px 0 16px 18px;
}


/* ================= MIDDLE ================= */

.sd-middle{
  padding:0; /* FULL WIDTH */
  display:flex;
  flex-direction:column;
  gap:12px;
}


/* ================= ABOUT SPANNING ================= */

.sd-about-wide{
  grid-column:1 / 3;
  margin:0;
  padding:0 20px 20px 20px;
}


/* ================= RIGHT RAIL ================= */

.main-right{
  background:#f5f3ff;
  border-left:1px solid #e5e7eb;
  padding:14px 12px 60px;
  display:flex;
  flex-direction:column;
  gap:14px;

  grid-column:3;
  grid-row:1 / span 4;
}

@media (min-width:992px){
  .main-right{
    position:sticky;
    top:84px;
    align-self:start;
  }
}


/* ================= CARDS ================= */

.sd-card{
  background:#fff;
  border-radius:14px;
  padding:14px;
  border:1px solid #e5e7eb;
  box-shadow:0 10px 26px rgba(2,6,23,.08);
}


/* ================= GALLERY ================= */

.sd-gallery-layout{
  display:grid;
  gap:10px;
}

/* HERO IMAGE */

.sd-photo.hero{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  background:#f1f5f9;
  aspect-ratio:3/4;
  touch-action:pan-y;
  -webkit-user-select:none;
  user-select:none;
}

.sd-photo.hero::before{
  content:"";
  display:block;
  padding-top:133%;
}

.sd-photo.hero img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:opacity .2s ease, transform .2s ease;
}


/* THUMBNAILS */

.sd-gallery-right{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
}

.sd-gallery-thumb{
  border-radius:10px;
  overflow:hidden;
  border:1px solid #e5e7eb;
  cursor:pointer;
}

.sd-gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.sd-gallery-thumb.is-active{
  outline:2px solid #facc15;
}


/* ================= STATS ================= */

.sd-stats{
  list-style:none;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.sd-stats li{
  display:flex;
  justify-content:space-between;
  font-size:13px;
}

.sd-stats span:first-child{ color:#64748b; }


/* ================= PILLS ================= */

.sd-pills{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.sd-pills span{
  background:#f1f5f9;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
}


/* ============================================================
   MOBILE STACK
============================================================ */

@media (max-width:1100px){

  .sd-page-grid{
    grid-template-columns:1fr;
    width:100%;
    margin-left:0;
    margin-right:0;
  }

  .sd-left,
  .sd-middle,
  .sd-about-wide,
  .main-right{
    padding:16px 14px 40px;
    margin:0;
  }

  .sd-about-wide{ grid-column:auto; }

  .main-right{
    position:relative;
    grid-column:auto;
    grid-row:auto;
    border-left:none;
    border-top:1px solid #e5e7eb;
    background:#fff;
  }

  .sd-gallery-right{
    grid-template-columns:repeat(6,64px);
    overflow-x:auto;
    padding-bottom:6px;
  }

  .sd-gallery-right::-webkit-scrollbar{ display:none; }

  .sd-gallery-thumb{
    min-width:64px;
  }
}


/* Extra small phones */

@media(max-width:420px){
  .sp-tour-card{ min-height:64px; padding:10px 12px; }
  .sd-contact-list{ grid-template-columns:1fr; }
}


/* ============================================================
   RATES TABLE — PREMIUM CLEAN LAYOUT
============================================================ */

.sp-rates-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0 10px;
  font-size:13px;
}

/* Header */

.sp-rates-table thead th{
  text-align:left;
  font-weight:800;
  color:#1A3552;
  padding:6px 10px;
  border-bottom:1px solid #e5e7eb;
}

/* Rows */

.sp-rates-table tbody tr{
  background:#f8fafc;
  border-radius:12px;
  transition:.15s ease;
}

.sp-rates-table tbody tr:hover{
  background:#eef2ff;
}

/* Cells */

.sp-rates-table td{
  padding:10px 10px;
  vertical-align:middle;
}

/* Duration */

.sp-rates-table td:first-child{
  font-weight:800;
  color:#1A3552;
  white-space:nowrap;
}

/* Prices */

.sp-rates-table td:nth-child(2),
.sp-rates-table td:nth-child(3){
  text-align:center;
  font-weight:800;
  color:#0f172a;
}


/* ============================================================
   RATES TABLE — MOBILE KEEP DESKTOP STYLE (COMPACT)
============================================================ */

@media(max-width:520px){

  .sp-rates-table{
    font-size:12px;
    border-spacing:0 6px;
  }

  .sp-rates-table thead th{
    padding:4px 6px;
    font-size:12px;
  }

  .sp-rates-table td{
    padding:6px 6px;
    font-size:12px;
  }

  .sp-rates-table td:first-child{
    font-size:12.5px;
  }
}


/* ============================================================
   TOUR DATES — PREMIUM 2 COLUMN GRID
============================================================ */

.sp-tours-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:4px;
}

.sp-tour-card{
  position:relative;
  background:linear-gradient(180deg,#ffffff,#f8fafc);
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:12px 14px;
  min-height:70px;
  box-shadow:0 8px 22px rgba(2,6,23,.10);
  transition:.2s ease;
}

.sp-tour-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:4px;
  height:100%;
  background:linear-gradient(180deg,var(--brand),#a78bfa);
  border-radius:14px 0 0 14px;
}

.sp-tour-card strong{
  font-size:13px;
  font-weight:800;
  color:#1A3552;
}

.sp-tour-card span{
  font-size:11.5px;
  color:#64748b;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.sp-tour-card:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 36px rgba(2,6,23,.18);
}


/* ============================================================
   CONTACT SECTION — PREMIUM
============================================================ */

.sd-contact-card{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:14px 14px 16px;
  box-shadow:0 10px 26px rgba(2,6,23,.08);
}

.sd-contact-list{
  list-style:none;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 14px;
}

.sd-contact-list li{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 12px;
  background:#f8fafc;
  border-radius:10px;
  border:1px solid #e5e7eb;
  font-size:12.5px;
}

.sd-contact-list span{
  color:#64748b;
  font-weight:600;
}

.sd-contact-list strong{
  font-weight:800;
}


/* ================= MOBILE STACK ================= */

@media (max-width:1100px){

  .sd-page-grid{ grid-template-columns:1fr; }

  .sd-left,
  .sd-middle,
  .sd-about-wide,
  .main-right{
    padding:16px 14px 40px;
    margin:0;
  }

  .sd-about-wide{ grid-column:auto; }

  .main-right{
    position:relative;
    grid-column:auto;
    grid-row:auto;
    border-left:none;
    border-top:1px solid #e5e7eb;
    background:#fff;
  }

  /* Gallery thumbs horizontal scroll */

  .sd-gallery-right{
    grid-template-columns:repeat(6,64px);
    overflow-x:auto;
    padding-bottom:6px;
  }

  .sd-gallery-right::-webkit-scrollbar{ display:none; }

  .sd-gallery-thumb{
    min-width:64px;
  }
}


/* Extra small phones */

@media(max-width:420px){
  .sp-tour-card{ min-height:64px; padding:10px 12px; }
  .sd-contact-list{ grid-template-columns:1fr; }
}

/* ============================================================
   PREMIUM HEADING COLORS — WHITE BACKGROUND SAFE
============================================================ */

/* Main profile name */

.sd-name{
  font-size:22px;
  font-weight:900;
  color:#1A3552; /* deep navy for premium contrast */
  line-height:1.25;
}

/* Section titles: Services, Rates, Tour Dates, Contact, About */

.sp-section-title,
.sd-about-title{
  font-size:15px;
  font-weight:800;
  color:#243B5A; /* softer navy, still strong on white */
  margin-bottom:8px;
}

/* Sidebar headings (if used) */

.main-right .panel-title,
.main-right h3{
  color:#1A3552;
  font-weight:800;
}

/* Sub text under headings */

.sd-agency,
.sp-subline{
  color:#475569;
}

/* Table headers already good but reinforce */

.sp-rates-table thead th{
  color:#1A3552;
}
.sp-section-title{
  position:relative;
  padding-left:10px;
}

.sp-section-title::before{
  content:"";
  position:absolute;
  left:0;
  top:3px;
  width:3px;
  height:14px;
  background:#d4af37; /* gold accent */
  border-radius:2px;
}

.sp-section-title,
.sd-about-title,
.sd-contact-card .sp-section-title,
.main-right .panel-title,
.main-right h3,
.sp-rates-table thead th{
  color:#059669;
  font-weight:600;
}
/* ============================================================
   SINGLE PROFILE — PREMIUM SECTION HEADINGS
============================================================ */

/* All section titles inside cards */
.sp-section-title,
.sd-about-title{
  display:flex;
  align-items:center;
  gap:8px;

  font-size:15px;
  font-weight:800;
  letter-spacing:.2px;

  color:#5C0303; /* wine red theme */

  margin:0 0 10px;        /* space below heading */
  padding-bottom:6px;    /* breathing room */

  border-bottom:1px solid #f1f5f9; /* soft divider */
}

/* Add spacing before each section card */
.sd-middle .sd-card{
  margin-bottom:2px;
}

/* Contact card title if different markup */
.sd-contact-card .sp-section-title{
  margin-bottom:12px;
}

/* About section spacing */
.sd-about-wide{
  margin-top:10px;
}

.sd-about-content p{
  margin-bottom:10px;
  line-height:1.6;
  color:#334155;
}
/* ============================================================
   WORKING HOURS — PREMIUM HIGHLIGHT CARD
============================================================ */

.sd-hours-card{
  background:linear-gradient(180deg,#ffffff,#f8fafc);
}

.sd-hours-box{
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:12px 14px;
  background:#ecfdf5;
  border:1px solid #a7f3d0;
  border-radius:12px;
}

.sd-hours-label{
  font-size:12px;
  font-weight:600;
  color:#065f46;
}

.sd-hours-value{
  font-size:13px;
  font-weight:800;
  color:#047857;
}

/* Mobile */

@media(max-width:520px){
  .sd-hours-box{
    flex-direction:column;
    gap:6px;
    text-align:center;
  }
}

/* ============================================================
   CONTACT CTA BAR — BIG CONVERSION BUTTONS
============================================================ */

.sd-cta-bar{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:12px;
}

.sd-cta-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  padding:12px 14px;
  border-radius:12px;
  font-size:13px;
  font-weight:800;
  border:none;
  cursor:pointer;
  text-decoration:none;

  transition:.2s ease;
}

/* Phone */

.sd-cta-btn.phone{
  background:#fff;
  border:2px solid #5C0303;
  color:#5C0303;
}

.sd-cta-btn.phone:hover{
  background:#5C0303;
  color:#fff;
}

/* After reveal */

.sd-cta-btn.phone.revealed{
  background:#5C0303;
  color:#fff;
}

/* WhatsApp */

.sd-cta-btn.whatsapp{
  background:#059669;
  color:#fff;
}

.sd-cta-btn.whatsapp:hover{
  background:#047857;
}

/* Preferred badge */

.sd-preferred-badge{
  margin-top:8px;
  display:inline-block;
  background:#fff7ed;
  color:#9a3412;
  border:1px solid #fed7aa;
  padding:6px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
}

/* Mobile stack */

@media(max-width:520px){
  .sd-cta-bar{
    grid-template-columns:1fr;
  }
}
/* ============================================================
   CONTACT TOP ROW — PREFERRED + WORKING HOURS
============================================================ */

.sd-contact-top-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
  flex-wrap:wrap;
}

/* Preferred badge */

.sd-preferred-badge{
  background:#fff7ed;
  color:#9a3412;
  border:1px solid #fed7aa;
  padding:6px 12px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  white-space:nowrap;
}

/* Hours inline */

.sd-hours-inline{
  display:flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  background:#ecfdf5;
  border:1px solid #a7f3d0;
  border-radius:999px;
  font-size:11px;
  white-space:nowrap;
}

.sd-hours-label{
  color:#065f46;
  font-weight:600;
}

.sd-hours-value{
  color:#047857;
  font-weight:800;
}

/* Mobile stacking */

@media(max-width:520px){
  .sd-contact-top-row{
    justify-content:flex-start;
  }
}
.sd-contact-card .sd-contact-list{
  grid-template-columns:1fr; /* full width rows */
}

.sd-contact-card .sd-contact-list li{
  justify-content:space-between;
  padding:12px 14px;
  font-size:13px;
}
/* ============================================================
   COMPACT MODE — REDUCE TOP & BOTTOM SPACING EVERYWHERE
============================================================ */

/* ===== MAIN COLUMN PADDINGS ===== */

.sd-left{
  padding:14px 0 10px 14px;
}

.sd-middle{
  padding:16px 20px 14px;
  gap:10px;
}

.sd-about-wide{
  margin:0 20px 14px 14px;
}

.main-right{
  padding:10px 10px 30px;
  gap:10px;
}

/* ===== CARDS ===== */

.sd-card,
.sd-contact-card{
  padding:10px 12px;
}

/* Reduce space between stacked cards */

.sd-middle .sd-card{
  margin-bottom:0;
}

/* ===== SECTION HEADINGS ===== */

.sp-section-title,
.sd-about-title{
  margin:0 0 6px;
  padding-bottom:4px;
  font-size:14px;
}

/* ===== GALLERY ===== */

.sd-gallery-layout{
  gap:8px;
}

.sd-gallery-right{
  gap:6px;
}

/* ===== STATS ===== */

.sd-stats{
  gap:8px;
}

.sd-stats li{
  font-size:12.5px;
}

/* ===== PILLS ===== */

.sd-pills{
  gap:6px;
}

.sd-pills span{
  padding:5px 9px;
  font-size:11.5px;
}

/* ===== RATES TABLE ===== */

.sp-rates-table{
  border-spacing:0 6px;
}

.sp-rates-table thead th{
  padding:4px 8px;
}

.sp-rates-table td{
  padding:7px 8px;
}

/* ===== TOURS ===== */

.sp-tours-grid{
  gap:10px;
  margin-top:2px;
}

.sp-tour-card{
  padding:6px 8px;
  min-height:60px;
}

.sp-tour-card strong{
  font-size:12.5px;
}

.sp-tour-card span{
  font-size:11px;
}

/* ===== CONTACT LIST ===== */

.sd-contact-list{
  gap:8px;
}

.sd-contact-list li{
  padding:4px 6px;
  font-size:12px;
}

/* ===== HOURS BOX ===== */

.sd-hours-box{
  padding:4px 6px;
}

/* ===== CTA BAR ===== */

.sd-cta-bar{
  gap:6px;
  margin-top:4px;
}

.sd-cta-btn{
  padding:5px 6px;
  font-size:12.5px;
}

/* ===== TOP CONTACT ROW ===== */

.sd-contact-top-row{
  margin-bottom:2px;
}

/* ============================================================
   MOBILE COMPACT
============================================================ */

@media(max-width:1100px){

  .sd-left,
  .sd-middle,
  .sd-about-wide,
  .main-right{
    padding:12px 12px 20px;
  }

  .sd-middle{
    gap:8px;
  }

  .sd-card,
  .sd-contact-card{
    padding:10px;
  }
}

@media(max-width:520px){

  .sp-rates-table tbody tr{
    padding:10px;
    gap:8px 10px;
  }

  .sd-cta-btn{
    padding:10px;
  }
}
/* ============================================================
   MINOR BOLD BOOST — SECTION CONTENT (PREMIUM READABILITY)
============================================================ */

/* General text inside cards */

.sd-card,
.sd-contact-card,
.sd-about-content,
.main-right{
  font-weight:500;
}

/* About section paragraphs */

.sd-about-content p{
  font-weight:500;
}

/* Stats values */

.sd-stats li{
  font-weight:500;
}

.sd-stats span:first-child{
  font-weight:500;
}

.sd-stats span:last-child{
  font-weight:600; /* value slightly stronger */
}

/* Pills text */

.sd-pills span{
  font-weight:600;
}

/* Rates table body */

.sp-rates-table td{
  font-weight:600;
}

/* Duration already bold, keep strong */

.sp-rates-table td:first-child{
  font-weight:800;
}

/* Tour cards text */

.sp-tour-card strong{
  font-weight:700;
}

.sp-tour-card span{
  font-weight:500;
}

/* Contact list rows */

.sd-contact-list li{
  font-weight:600;
}

.sd-contact-list span{
  font-weight:500;
}

.sd-contact-list strong{
  font-weight:700;
}

/* Working hours */

.sd-hours-label{
  font-weight:600;
}

.sd-hours-value{
  font-weight:800;
}

/* CTA buttons already strong, keep as is */


/* ============================================================
   MOBILE — KEEP SAME WEIGHT (NO THIN TEXT)
============================================================ */

@media(max-width:520px){

  .sd-card,
  .sd-contact-card,
  .sd-about-content p,
  .sd-stats li,
  .sd-contact-list li{
    font-weight:500;
  }
}

/* ================= MEETING WITH BADGE ================= */

.sd-meeting-badge{
  display:inline-block;
  margin-top:6px;
  background:#fef3c7;
  color:#92400e;
  border:1px solid #fde68a;
  padding:6px 12px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  white-space:nowrap;
}
@media(max-width:520px){
  .sd-stats{
    grid-template-columns:1fr;
  }
}

/* ================= LOCATION BADGE ================= */

.sd-location-badge{
  display:inline-block;
  margin-top:6px;
  background:#ecfeff;           /* soft cyan */
  color:#155e75;                /* deep teal */
  border:1px solid #67e8f9;
  padding:6px 12px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  white-space:nowrap;
}

/* ============================================================
   SERVICES — PREMIUM ICON PILLS
============================================================ */

.sd-services-grid{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.sd-service-pill{
  display:flex;
  align-items:center;
  gap:6px;

  background:linear-gradient(180deg,#ffffff,#f8fafc);
  border:1px solid #e5e7eb;
  border-radius:999px;

  padding:6px 12px;
  font-size:12px;
  font-weight:700;
  color:#1f2933;

  box-shadow:0 4px 12px rgba(2,6,23,.08);
  transition:.18s ease;
}

.sd-service-pill:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(2,6,23,.14);
  background:#fff;
}

.sd-service-icon{
  font-size:13px;
  line-height:1;
}

.sd-service-label{
  white-space:nowrap;
}

/* Mobile tighten */

@media(max-width:520px){
  .sd-service-pill{
    padding:5px 10px;
    font-size:11.5px;
  }
}

/* ============================================================
   SERVICES — PREMIUM HIGHLIGHT
============================================================ */

.sd-service-pill{
  position:relative;
  overflow:hidden;
}

/* GOLD BORDER GLOW */

.sd-service-pill.is-premium{
  border:1px solid #f5c77a;
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg,#facc15,#f59e0b,#fde68a) border-box;
}

/* SOFT GLOW ON HOVER */

.sd-service-pill.is-premium:hover{
  box-shadow:
    0 0 0 1px rgba(245,158,11,.35),
    0 10px 28px rgba(245,158,11,.35);
}

/* TAG */

.sd-service-tag{
  margin-left:6px;
  background:linear-gradient(180deg,#facc15,#f59e0b);
  color:#7c2d12;
  font-size:9.5px;
  font-weight:900;
  padding:2px 6px;
  border-radius:999px;
  letter-spacing:.3px;
  white-space:nowrap;
}

/* MOBILE */

@media(max-width:520px){
  .sd-service-tag{
    font-size:9px;
    padding:2px 5px;
  }
}

/* ============================================================
   PRICE BADGE — SAME STYLE AS "AVAILABLE FOR"
============================================================ */

.sd-price-badge{
  display:inline-block;
  margin-top:8px;

  background:#ecfdf5;
  color:#047857;

  border:1px solid #a7f3d0;
  padding:6px 12px;
  border-radius:999px;

  font-size:11.5px;
  font-weight:700;
  white-space:nowrap;
}

.sd-price-badge strong{
  font-weight:900;
}

/* ============================================================
   TRUE FULL BLEED MOBILE FIX
============================================================ */

@media (max-width:1100px){

  /* Remove all outer padding */
  .sd-left,
  .sd-middle,
  .sd-about-wide,
  .main-right{
    padding-left:0 !important;
    padding-right:0 !important;
  }

  /* Make cards full width */
  .sd-card,
  .sd-contact-card{
    border-radius:0;
    margin:0;
  }

  /* Remove outer spacing between cards */
  .sd-middle{
    gap:0;
  }

  /* Add only vertical separation */
  .sd-card{
    border-left:none;
    border-right:none;
    border-radius:0;
  }

  /* Make hero image fully edge to edge */
  .sd-photo.hero{
    border-radius:0;
  }

}



/* ================= MOBILE ================= */

@media (max-width:768px){

  .sd-about-wide{
    width:100%;
    margin:0;
  }

  .sd-about-inner{
    border-left:none;
    border-right:none;
    border-radius:0;
    padding:22px 18px;
  }

  .sd-about-title{
    font-size:16px;
    margin-bottom:14px;
  }

  .sd-about-content{
    font-size:15px;
    line-height:1.75;
    color:#334155;
  }

  .sd-about-content p{
    margin-bottom:16px;
  }

}
