/* styles.css - Soft Sage / Muted Teal Modern Theme */

:root {
  --bg: #A8B8B2;
  --bg-dark: #8FA19A;
  --bg-soft: #C5D1CC;

  --primary: #5F7A72;
  --primary-dark: #4A635C;

  --accent: #FFFFFF;
  --accent-hover: #F0F5F3;

  --text-dark: #1F2A27;
  --text-muted: #5A6B65;
  --white: #FFFFFF;

  --border: #D1DDD8;
  --pill: rgba(95, 122, 114, 0.1);

  --font-sans: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-head: "Poppins", var(--font-sans);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-family: var(--font-head);
  font-weight: 700;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-dark); text-underline-offset: 2px; }

/* Containers */
.container { width: min(1200px, 92%); margin-inline: auto; }
.section { padding: 2.5rem 0; }
.panel { background: rgba(255, 255, 255, 0.6); }
.panel-2 { background: var(--bg-soft); }
.note { color: #000000; }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  left: 1rem; top: 1rem; width: auto; height: auto;
  background: #000; color: #fff; padding: .5rem .75rem; z-index: 9999;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(168, 184, 178, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 0;
}
.site-nav ul {
  display: flex;
  gap: .8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  text-decoration: none;
  padding: .5rem .75rem;
  border-radius: .4rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.2s ease;
}
.site-nav a:hover {
  background: rgba(255,255,255,0.35);
}

/* Mobile nav */
.nav-toggle { display: none; }
.nav-toggle-btn {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  padding: .25rem .5rem;
  color: var(--text-dark);
}
@media (max-width: 768px) {
  .nav-toggle-btn { display: block; }
  .site-nav {
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--bg-dark);
    display: none;
  }
  .site-nav ul { flex-direction: column; padding: 1rem; }
  .nav-toggle:checked ~ .site-nav { display: block; }
}

/* Buttons - Clean White style like the image */
.btn {
  display: inline-block;
  background: var(--white);
  color: var(--text-dark) !important;
  text-decoration: none;
  padding: .75rem 1.7rem;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
}
.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

/* Grids */
.grid { display: grid; gap: 1.25rem; }
.cols-2 { grid-template-columns: 1fr; }
.cols-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .cols-3 { grid-template-columns: repeat(3, 1fr); } }

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.1);
}
.card .body { padding: 1.2rem; }
.card h3 { margin: .3rem 0 .4rem; color: var(--text-dark); }

/* Media Frame */
.media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: var(--ratio, 450/550);
  border-radius: .9rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-soft), var(--bg-dark));
  border: 1px solid var(--border);
}
.media-fit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Badges */
.badge, .badge-new, .badge-premium, .badge-outcall, .badge-available-now {
  position: absolute;
  top: .6rem;
  left: .6rem;
  font-weight: 700;
  padding: .3rem .65rem;
  font-size: .78rem;
  border-radius: .45rem;
}
.badge { background: #26A69A; color: #fff; }
.badge-new { background: #EF5350; color: #fff; }
.badge-premium { background: #FFB300; color: #000; }
.badge-outcall { background: #42A5F5; color: #fff; }
.badge-available-now { background: #66BB6A; color: #fff; }

/* Headback */
.headback {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.8rem 1rem;
  margin: 1.2rem 0;
}
.headback h2 {
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Stars */
.stars {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: .15rem;
}
.stars__base { color: #C5CEC9; }
.stars__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--rating, 0) / 5 * 100%);
  color: #FFB300;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
}

/* Table */
.table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: .9rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  color: var(--text-dark);
}
.table th, .table td {
  text-align: left;
  padding: .95rem 1.1rem;
  border-top: 1px solid var(--border);
}
.table thead th {
  background: var(--bg-soft);
  color: var(--text-dark);
  font-weight: 700;
}

/* FAQ */
details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: .8rem;
  padding: .9rem 1.15rem;
  margin: .8rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text-dark);
}

/* Pills */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pills a {
  display: inline-block;
  background: #fff;
  color: var(--primary-dark);
  text-decoration: none;
  padding: .48rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.pills a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 2.8rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

.list { list-style: none; margin: 0; padding: 0; }
.list a { color: #fff; text-decoration: none; }
.list a:hover { color: #E0EBE7; text-decoration: underline; }

.copy {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 1.6rem;
  padding-top: 1.1rem;
  text-align: center;
  color: rgba(255,255,255,0.7);
}

/* Logo */
.logo img {
  height: 52px;
  width: auto;
}

p { text-align: justify; }

/* Mobile bottom bar */
.nowcalling { display: none; }
@media only screen and (max-width: 768px) {
  .nowcalling {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100% !important;
    z-index: 9999 !important;
  }
  .lcol { background-color: var(--primary-dark); }
  .rcol { background-color: #4A635C; }
  .lcol a, .rcol a {
    display: block;
    padding: 13px 0;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
  }
  .lcol, .rcol {
    float: left;
    width: 50%;
  }
}
.profile-info {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}
.profile-info li {
  margin-bottom: 0.25rem;
  color: #000000;
}
.profile-info strong {
  color: var(--text-dark, #222);
  font-weight: 600;
  min-width: 95px;
  display: inline-block;
}

/* Unique Meta Style for this section */
.profile-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin: 14px 0 12px;
  font-size: 0.86rem;
}

.profile-meta div {
  background: #f8f4f8;
  padding: 7px 10px;
  border-radius: 8px;
  color: #333;
}

.profile-meta span {
  display: block;
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 2px;
  font-weight: 500;
}

.card h3 span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #888;
  margin-left: 6px;
}
/* ========== Horizontal Profile Cards - Soft Sage Green Theme ========== */

.profile-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.profile-card {
  display: flex;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #d5ddd9;
  transition: all 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border-color: #b7c4be;
}

.profile-img {
  position: relative;
  width: 230px;
  min-width: 230px;
  height: 290px;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-content {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.profile-content h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  color: #2c3e36;               /* Dark green-black */
  font-weight: 700;
  line-height: 1.35;
}

.profile-content p {
  margin: 0 0 16px;
  color: #4a5c54;
  font-size: 0.95rem;
  line-height: 1.6;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #5a6b63;
}

.profile-meta .stars {
  color: #e6b800;
  letter-spacing: 1px;
}

/* Action Buttons - Matching Sage Theme */
.profile-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.btn-call {
  background: #5f7a72;          /* Sage Green */
  color: #fff !important;
  padding: 11px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.btn-call:hover {
  background: #4a635c;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff !important;
  padding: 11px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}

.btn-details {
  background: #3d5a52;          /* Darker Sage */
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.btn-details:hover {
  background: #2e4640;
  transform: translateY(-2px);
}

/* Badges */
.badge-premium {
  background: #5f7a72;
  color: #fff;
}
.badge-available-now {
  background: #2e7d32;
  color: #fff;
}
.badge {
  background: #546e7a;
  color: #fff;
}
.badge-outcall {
  background: #0277bd;
  color: #fff;
}
.badge-new {
  background: #ef6c00;
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .profile-card {
    flex-direction: column;
  }
  .profile-img {
    width: 100%;
    height: 340px;
  }
  .profile-content {
    padding: 20px;
  }
  .profile-actions {
    flex-wrap: wrap;
  }
}