 :root {
      --maroon:   #7B1C2E;
      --gold:     #C9962B;
      --cream:    #FDF6EC;
      --dark:     #1A0A10;
      --soft:     #F5E8D5;
      --accent:   #E8B84B;
      --text:     #3D1A22;
    }

    * { box-sizing: border-box; }

    body {
      font-family: 'Hind', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }

    /* ── NAVBAR ── */
    .navbar {
      background: var(--dark);
      padding: 14px 0;
      position: sticky;
      top: 0;
      z-index: 1050;
      box-shadow: 0 2px 20px rgba(0,0,0,.45);
    }
    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.55rem;
      color: var(--accent) !important;
      letter-spacing: .5px;
    }
    .navbar-brand span { color: #fff; }
    .nav-link {
      color: #e8d9c5 !important;
      font-weight: 500;
      font-size: .95rem;
      letter-spacing: .3px;
      padding: 6px 14px !important;
      transition: color .2s;
    }
    .nav-link:hover, .nav-link.active { color: var(--accent) !important; }
    .navbar-toggler { border-color: var(--gold); }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201,150,43,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .btn-login {
      background: var(--gold);
      color: var(--dark) !important;
      border-radius: 25px;
      padding: 6px 22px !important;
      font-weight: 600;
    }
    .btn-login:hover { background: var(--accent); }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, #2c0915 0%, #5a1227 45%, #7b1c2e 100%);
      min-height: 92vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9962B' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .hero-kolam {
      position: absolute;
      right: -60px; bottom: -60px;
      width: 500px; height: 500px;
      opacity: .07;
      background: radial-gradient(circle, var(--gold) 2px, transparent 2px) 0 0 / 30px 30px,
                  radial-gradient(circle, var(--gold) 2px, transparent 2px) 15px 15px / 30px 30px;
    }
	
	
	.navbar-brand img
	{
	width:35%;
	
	}
	.main-couple img
	{
	width:100%;
	}
    .hero-left { position: relative; z-index: 2; }
    .hero-badge {
      display: inline-block;
      background: rgba(201,150,43,.18);
      border: 1px solid rgba(201,150,43,.4);
      color: var(--accent);
      border-radius: 25px;
      padding: 5px 18px;
      font-size: .82rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .hero h1 {
      font-size: clamp(2rem, 5vw, 3.6rem);
      color: #fff;
      line-height: 1.18;
      margin-bottom: 20px;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--accent);
    }
    .hero p {
      color: #d4b8c2;
      font-size: 1.05rem;
      max-width: 500px;
      line-height: 1.8;
      margin-bottom: 32px;
    }
    .btn-hero-primary {
      background: linear-gradient(135deg, var(--gold), var(--accent));
      color: var(--dark);
      border: none;
      border-radius: 30px;
      padding: 13px 34px;
      font-weight: 700;
      font-size: 1rem;
      transition: transform .2s, box-shadow .2s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,150,43,.45); color: var(--dark); }
    .btn-hero-outline {
      background: transparent;
      color: #e8d9c5;
      border: 1.5px solid rgba(232,216,197,.4);
      border-radius: 30px;
      padding: 12px 30px;
      font-weight: 500;
      font-size: 1rem;
      transition: border-color .2s, color .2s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-hero-outline:hover { border-color: var(--accent); color: var(--accent); }

    /* hero stats */
    .hero-stats { margin-top: 50px; display: flex; gap: 36px; flex-wrap: wrap; }
    .hstat { }
    .hstat .num {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      color: var(--accent);
      display: block;
      line-height: 1;
    }
    .hstat .lbl { color: #c3a0af; font-size: .82rem; letter-spacing: .5px; }

    /* hero image card */
    .hero-card-wrap {
      position: relative; z-index: 2;
      display: flex; justify-content: center; align-items: center;
    }
    .hero-couple-card {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(201,150,43,.25);
      border-radius: 24px;
      padding: 24px;
      backdrop-filter: blur(10px);
      max-width: 340px;
      width: 100%;
      margin: 0 auto;
    }
    .profile-mini {
      background: linear-gradient(135deg, rgba(201,150,43,.15), rgba(255,255,255,.06));
      border-radius: 16px;
      padding: 18px;
      margin-bottom: 12px;
      border: 1px solid rgba(201,150,43,.2);
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .profile-avatar {
      width: 56px; height: 56px;
      border-radius: 50%;
      border: 2px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      background: rgba(201,150,43,.15);
      flex-shrink: 0;
    }
    .profile-info .name { color: #fff; font-weight: 600; font-size: .95rem; }
    .profile-info .meta { color: #b09aa8; font-size: .78rem; margin-top: 2px; }
    .profile-info .tag {
      display: inline-block;
      background: rgba(201,150,43,.2);
      color: var(--accent);
      border-radius: 10px;
      padding: 2px 10px;
      font-size: .72rem;
      margin-top: 5px;
    }
    .match-percent {
      text-align: center;
      padding: 14px 0 4px;
    }
    .match-percent .pct {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      color: var(--accent);
    }
    .match-percent .lbl { color: #c3a0af; font-size: .8rem; }
    .match-bar-wrap { background: rgba(255,255,255,.1); border-radius: 10px; height: 6px; margin: 8px 0; }
    .match-bar { background: linear-gradient(90deg, var(--gold), var(--accent)); height: 100%; border-radius: 10px; width: 87%; }

    /* ── SEARCH BAR ── */
    .search-section {
      background: var(--dark);
      padding: 30px 0;
    }
    .search-box {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(201,150,43,.3);
      border-radius: 16px;
      padding: 24px 28px;
    }
    .search-box .form-label { color: #c9b8a8; font-size: .82rem; letter-spacing: .5px; text-transform: uppercase; }
    .search-box .form-select, .search-box .form-control {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(201,150,43,.25);
      color: #fff;
      border-radius: 10px;
      padding: 10px 14px;
    }
    .search-box .form-select:focus, .search-box .form-control:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201,150,43,.15);
      background: rgba(255,255,255,.1);
      color: #fff;
    }
    .search-box .form-select option { background: #2c0915; color: #fff; }
    .btn-search {
      background: linear-gradient(135deg, var(--gold), var(--accent));
      color: var(--dark);
      font-weight: 700;
      border: none;
      border-radius: 10px;
      padding: 11px 32px;
      width: 100%;
      transition: transform .2s;
    }
    .btn-search:hover { transform: translateY(-1px); }

    /* ── SECTION HEADER ── */
    .sec-label {
      display: inline-block;
      background: rgba(123,28,46,.12);
      border: 1px solid rgba(123,28,46,.25);
      color: var(--maroon);
      border-radius: 20px;
      padding: 4px 18px;
      font-size: .78rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 12px;
    }
    .sec-title { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--dark); }
    .sec-title span { color: var(--maroon); }
    .divider-gold {
      width: 60px; height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--accent));
      border-radius: 4px;
      margin: 14px auto 0;
    }

    /* ── FEATURES ── */
    .features-section { padding: 80px 0; background: var(--cream); }
    .feat-card {
      background: #fff;
      border-radius: 18px;
      padding: 32px 24px;
      height: 100%;
      border: 1px solid #f0e0cc;
      transition: transform .25s, box-shadow .25s;
      text-align: center;
    }
    .feat-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(123,28,46,.1); }
    .feat-icon {
      width: 66px; height: 66px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(123,28,46,.1), rgba(201,150,43,.15));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.7rem; color: var(--maroon);
      margin: 0 auto 18px;
    }
    .feat-card h5 { font-size: 1.05rem; color: var(--dark); margin-bottom: 10px; }
    .feat-card p { color: #7a5c68; font-size: .88rem; line-height: 1.7; margin: 0; }

    /* ── PROFILES ── */
    .profiles-section { padding: 80px 0; background: var(--soft); }
    .profile-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid #f0e0cc;
      transition: transform .25s, box-shadow .25s;
    }
    .profile-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(123,28,46,.12); }
    .profile-card-top {
      background: linear-gradient(135deg, var(--maroon), #a02440);
      height: 90px;
      position: relative;
    }
    .profile-card-top .badge-new {
      position: absolute; top: 12px; right: 14px;
      background: var(--gold); color: var(--dark);
      border-radius: 12px; padding: 3px 12px;
      font-size: .72rem; font-weight: 700;
    }
    .profile-photo {
      width: 80px; height: 80px;
      border-radius: 50%;
      border: 3px solid #fff;
      background: linear-gradient(135deg, #f5e8d5, #e8d0b8);
      display: flex; align-items: center; justify-content: center;
      font-size: 2.2rem;
      position: absolute;
      bottom: -40px; left: 50%; transform: translateX(-50%);
    }
    .profile-card-body { padding: 50px 20px 22px; text-align: center; }
    .profile-card-body .pname { font-size: 1.05rem; color: var(--dark); margin-bottom: 4px; }
    .profile-card-body .pmeta { color: #9a7080; font-size: .82rem; margin-bottom: 12px; }
    .profile-pills { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 16px; }
    .ppill {
      background: rgba(123,28,46,.08);
      color: var(--maroon);
      border-radius: 12px;
      padding: 3px 12px;
      font-size: .74rem;
      font-weight: 500;
    }
    .btn-view {
      background: var(--maroon);
      color: #fff;
      border: none;
      border-radius: 20px;
      padding: 8px 24px;
      font-size: .85rem;
      font-weight: 600;
      cursor: pointer;
      transition: background .2s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-view:hover { background: #5a1227; color: #fff; }

    /* ── SUCCESS ── */
    .success-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #2c0915, #5a1227, #7b1c2e);
      position: relative; overflow: hidden;
    }
    .success-section::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9962B' fill-opacity='0.05'%3E%3Cpath d='M20 20.5V18H0v5h5v5H0v5h20v-9.5zm-2 4.5H2v-1h16v1zm-2-4H4v-1h12v1zm12-8V18H18v11h2v-9h8v-7.5zM20 24h-2v-2h2v2zm0-4h-2v-2h2v2z'/%3E%3C/g%3E%3C/svg%3E");
    }
    .story-card {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(201,150,43,.2);
      border-radius: 20px;
      padding: 28px;
      position: relative;
      backdrop-filter: blur(6px);
      height: 100%;
    }
    .story-card .quote-icon {
      font-size: 3rem;
      color: rgba(201,150,43,.35);
      line-height: 1;
      margin-bottom: 12px;
      font-family: Georgia, serif;
    }
    .story-card p { color: #d4c0c8; font-size: .9rem; line-height: 1.8; margin-bottom: 18px; }
    .couple-info { display: flex; align-items: center; gap: 12px; }
    .couple-avatar {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(201,150,43,.3), rgba(123,28,46,.4));
      border: 2px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }
    .couple-name { color: #fff; font-weight: 600; font-size: .9rem; }
    .couple-place { color: #b09aa8; font-size: .78rem; }
    .married-tag {
      position: absolute; top: 18px; right: 18px;
      background: rgba(201,150,43,.2);
      border: 1px solid rgba(201,150,43,.4);
      color: var(--accent);
      border-radius: 12px; padding: 2px 12px;
      font-size: .72rem; font-weight: 600;
    }

    /* ── STATS BAND ── */
    .stats-band { background: var(--cream); padding: 50px 0; border-top: 1px solid #f0e0cc; border-bottom: 1px solid #f0e0cc; }
    .stat-item { text-align: center; }
    .stat-item .big {
      font-family: 'Playfair Display', serif;
      font-size: 2.6rem; color: var(--maroon);
      display: block; line-height: 1;
    }
    .stat-item .desc { color: #9a7080; font-size: .85rem; margin-top: 6px; }
    .stat-sep { width: 1px; background: #f0c8a8; }

    /* ── CTA ── */
    .cta-section { padding: 70px 0; background: var(--soft); }
    .cta-box {
      background: linear-gradient(135deg, var(--maroon), #a02440);
      border-radius: 24px;
      padding: 50px 40px;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-box::before {
      content: '❋';
      position: absolute; right: 30px; top: -10px;
      font-size: 8rem; color: rgba(255,255,255,.05);
    }
    .cta-box h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 14px; }
    .cta-box p { color: #e0c0c8; font-size: 1rem; margin-bottom: 28px; }
    .btn-cta {
      background: linear-gradient(135deg, var(--gold), var(--accent));
      color: var(--dark);
      font-weight: 700;
      border: none;
      border-radius: 30px;
      padding: 14px 38px;
      font-size: 1.05rem;
      text-decoration: none;
      display: inline-block;
      transition: transform .2s;
    }
    .btn-cta:hover { transform: translateY(-2px); color: var(--dark); }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      padding: 50px 0 24px;
    }
    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--accent);
    }
    .footer-brand span { color: #fff; }
    footer p { color: #a08090; font-size: .85rem; line-height: 1.75; }
    .footer-heading { color: var(--accent); font-size: .8rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-bottom: 14px; }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 8px; }
    .footer-links a { color: #a08090; font-size: .85rem; text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--accent); }
    .footer-divider { border-color: rgba(255,255,255,.08); margin: 30px 0 20px; }
    .footer-bottom { color: #705060; font-size: .78rem; }
    .social-icons { display: flex; gap: 10px; margin-top: 16px; }
    .social-icon {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(201,150,43,.2);
      display: flex; align-items: center; justify-content: center;
      color: #a08090; font-size: .85rem;
      text-decoration: none;
      transition: background .2s, color .2s;
    }
    .social-icon:hover { background: rgba(201,150,43,.2); color: var(--accent); }

    /* ── COMMUNITY LOGOS ── */
    .community-section { padding: 50px 0; background: #fff; }
    .comm-tag {
      display: inline-block;
      background: #fff;
      border: 1.5px solid #f0e0cc;
      border-radius: 30px;
      padding: 10px 22px;
      font-size: .88rem;
      color: var(--text);
      font-weight: 500;
      transition: border-color .2s, background .2s;
      cursor: pointer;
      white-space: nowrap;
    }
    .comm-tag:hover { border-color: var(--gold); background: rgba(201,150,43,.07); }
    .comm-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .hero { min-height: auto; padding: 60px 0 40px; }
      .hero-stats { gap: 24px; }
      .hero-card-wrap { margin-top: 40px; }
      .stat-sep { display: none; }
      .search-box { padding: 20px 16px; }
      .cta-box { padding: 36px 20px; }
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-left { animation: fadeUp .7s ease both; }
    .hero-card-wrap { animation: fadeUp .7s ease .2s both; }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #1A0A10; }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
	
	.profile-card {
      border: none;
      border-radius: 0;
      overflow: hidden;
      background: #f3f3f3;
      transition: 0.3s ease;
      height: 100%;
    }

    .profile-card:hover {
      transform: translateY(-5px);
    }

    .profile-img {
      width: 100%;
      height: 420px;
      object-fit: cover;
    }

    .profile-content {
      padding: 25px;
    }

    .profile-name {
      color: #a0213b;
      font-size: 2rem;
      font-weight: 500;
      margin-bottom: 8px;
    }

    .profile-meta {
      color: #6b5b5b;
      font-size: 1.3rem;
      margin-bottom: 25px;
    }

    .info-item {
      display: flex;
      align-items: start;
      gap: 12px;
      margin-bottom: 14px;
      color: #6b5b5b;
      font-size: 1.1rem;
    }

    .info-item i {
      color: #d59b17;
      font-size: 1.1rem;
      margin-top: 2px;
    }

    .view-btn {
      background: #981b35;
      color: white;
      border-radius: 18px;
      padding: 14px;
      font-size: 1.2rem;
      font-weight: 600;
      border: none;
      width: 100%;
      margin-top: 20px;
      transition: 0.3s ease;
    }

    .view-btn:hover {
      background: #7f132a;
      color: white;
    }

    @media (max-width: 768px) {
      .profile-img {
        height: 320px;
      }

      .profile-name {
        font-size: 1.7rem;
      }

      .profile-meta {
        font-size: 1.1rem;
      }

      .info-item {
        font-size: 1rem;
      }
    }
	
	.footer-brand img
	{
		width:100%;
	}
	
	
	
/* ── BREADCRUMB BAR ── */
.breadbar{ background:#fff; border-bottom:1px solid var(--border); padding:12px 0; }
.breadcrumb{ margin:0; }
.breadcrumb-item a{ color:var(--maroon); text-decoration:none; font-size:.84rem; }
.breadcrumb-item.active{ color:var(--muted); font-size:.84rem; }
.breadcrumb-item+.breadcrumb-item::before{ color:var(--border); }

/* ── MAIN LAYOUT ── */
.detail-section{ padding:40px 0 72px; }

/* ── LEFT: PHOTO GALLERY ── */
.photo-main-wrap{
  position:relative; border-radius:18px; overflow:hidden;
  background:linear-gradient(135deg,#f5e8d5,#edd9c8); aspect-ratio:3/4; max-height:520px;
}
.photo-main{ width:100%; height:100%; object-fit:cover; object-position:top; display:block; }
.photo-overlay-top{
  position:absolute; top:0; left:0; right:0;
  padding:14px 16px;
  display:flex; justify-content:space-between; align-items:flex-start;
  background:linear-gradient(to bottom,rgba(0,0,0,.35),transparent);
}
.badge-verified{ background:#22864a; color:#fff; border-radius:20px; padding:4px 14px; font-size:.72rem; font-weight:700; }
.photo-action-btns{ display:flex; gap:8px; }
.photo-action-btn{
  width:34px; height:34px; border-radius:50%;
  background:rgba(255,255,255,.2); backdrop-filter:blur(4px);
  border:1px solid rgba(255,255,255,.3);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:.85rem; cursor:pointer; transition:background .2s;
  text-decoration:none;
}
.photo-action-btn:hover{ background:rgba(255,255,255,.35); color:#fff; }
.photo-action-btn.liked i{ color:#ff4d6d; }

/* profile avatar placeholder */
.avatar-placeholder{
  width:100%; height:100%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  background:linear-gradient(135deg,#f5e8d5,#e8d0b0);
  gap:12px;
}
.avatar-placeholder .avatar-icon{
  width:110px; height:110px; border-radius:50%;
  background:linear-gradient(135deg,var(--maroon),var(--maroon-light));
  display:flex; align-items:center; justify-content:center;
  font-size:3rem; color:#fff;
  box-shadow:0 8px 24px rgba(123,28,46,.3);
}
.avatar-placeholder p{ color:var(--muted); font-size:.82rem; }

.photo-thumbs{ display:flex; gap:8px; margin-top:10px; }
.photo-thumb{
  flex:1; aspect-ratio:1; border-radius:10px; overflow:hidden;
  cursor:pointer; border:2px solid transparent; transition:border-color .2s;
  background:var(--soft); display:flex; align-items:center; justify-content:center;
  color:var(--muted); font-size:.72rem;
}
.photo-thumb.active{ border-color:var(--maroon); }
.photo-thumb img{ width:100%; height:100%; object-fit:cover; }

/* quick badges */
.quick-badges{ display:flex; flex-wrap:wrap; gap:6px; margin-top:14px; }
.qbadge{
  background:#fff; border:1px solid var(--border);
  border-radius:8px; padding:7px 12px;
  display:flex; align-items:center; gap:6px;
  font-size:.78rem; color:var(--text); flex:1; min-width:110px;
}
.qbadge i{ color:var(--maroon); font-size:.82rem; width:14px; }
.qbadge span{ color:var(--muted); font-size:.72rem; display:block; }
.qbadge strong{ display:block; font-size:.82rem; }

/* profile name */
.profile-name{ font-size:clamp(1.5rem,3vw,2.1rem); color:var(--dark); margin-bottom:4px; }
.profile-id{ color:var(--muted); font-size:.82rem; margin-bottom:14px; }
.profile-meta-row{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:18px; }
.pmeta-tag{ background:rgba(123,28,46,.08); color:var(--maroon); border-radius:6px; padding:4px 12px; font-size:.78rem; font-weight:500; }

/* info sections */
.info-section{ background:#fff; border-radius:16px; border:1px solid var(--border); padding:24px; margin-bottom:16px; }
.info-section-title{
  font-size:.72rem; font-weight:700; text-transform:uppercase;
  letter-spacing:1.2px; color:var(--muted); margin-bottom:16px;
  display:flex; align-items:center; gap:8px;
}
.info-section-title::after{ content:''; flex:1; height:1px; background:var(--border); }
.info-section-title i{ color:var(--maroon); }

.info-row{ display:flex; margin-bottom:12px; }
.info-key{ width:160px; flex-shrink:0; font-size:.82rem; color:var(--muted); font-weight:500; }
.info-val{ font-size:.88rem; color:var(--text); font-weight:500; }

.about-text{
  font-size:.9rem; color:var(--muted); line-height:1.85;
  background:var(--cream); border-radius:10px; padding:16px 18px;
  border-left:3px solid var(--maroon);
}

/* Telugu text */
.telugu{ font-size:1rem; font-weight:600; color:var(--text); }

/* horoscope */
.horoscope-grid{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.horo-item{ background:var(--cream); border-radius:10px; padding:12px 14px; }
.horo-item span{ font-size:.72rem; color:var(--muted); display:block; }
.horo-item strong{ font-size:.88rem; color:var(--text); }

/* match score */
.match-score-wrap{ background:var(--cream); border-radius:14px; padding:18px 20px; margin-bottom:16px; }
.match-pct{ font-family:'Playfair Display',serif; font-size:2.8rem; color:var(--maroon); line-height:1; }
.match-bar-bg{ background:#e8d8d0; border-radius:10px; height:8px; margin:10px 0 6px; }
.match-bar-fill{ height:100%; border-radius:10px; background:linear-gradient(90deg,var(--maroon),var(--gold)); }
.match-point{ display:flex; align-items:center; gap:8px; font-size:.78rem; color:var(--muted); margin-bottom:5px; }
.match-point i{ width:14px; }
.match-point i.fa-check{ color:#22864a; }
.match-point i.fa-circle-dot{ color:var(--gold); }

/* contact card */
.contact-card{
  background:linear-gradient(135deg,var(--maroon-dark),var(--maroon));
  border-radius:14px; padding:20px;
  margin-bottom:16px;
}
.contact-card h6{ color:var(--accent); font-size:.72rem; text-transform:uppercase; letter-spacing:1px; margin-bottom:12px; }
.contact-row{ display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.contact-icon{ width:34px; height:34px; border-radius:8px; background:rgba(255,255,255,.12); display:flex; align-items:center; justify-content:center; color:var(--accent); font-size:.9rem; flex-shrink:0; }
.contact-row strong{ color:#fff; display:block; font-size:.82rem; }
.contact-row span{ color:rgba(255,255,255,.6); font-size:.76rem; }

/* action buttons */
.btn-primary-maroon{
  background:linear-gradient(135deg,var(--maroon),var(--maroon-dark));
  color:#fff; border:none; border-radius:10px;
  padding:13px 0; font-size:.95rem; font-weight:600;
  width:100%; cursor:pointer; font-family:'Hind',sans-serif;
  transition:transform .2s, box-shadow .2s;
  display:block; text-align:center; text-decoration:none;
}
.btn-primary-maroon:hover{ transform:translateY(-2px); box-shadow:0 8px 22px rgba(123,28,46,.3); color:#fff; }
.btn-outline-maroon{
  background:transparent; color:var(--maroon);
  border:1.5px solid var(--maroon); border-radius:10px;
  padding:12px 0; font-size:.9rem; font-weight:600;
  width:100%; cursor:pointer; font-family:'Hind',sans-serif;
  transition:background .2s, color .2s;
  display:block; text-align:center; text-decoration:none;
}
.btn-outline-maroon:hover{ background:rgba(123,28,46,.07); color:var(--maroon); }
.btn-whatsapp{
  background:#25d366; color:#fff; border:none; border-radius:10px;
  padding:12px 0; font-size:.9rem; font-weight:600;
  width:100%; cursor:pointer; font-family:'Hind',sans-serif;
  transition:background .2s;
  display:block; text-align:center; text-decoration:none;
}
.btn-whatsapp:hover{ background:#1da851; color:#fff; }

/* safety */
.safety-note{
  background:rgba(201,150,43,.08); border:1px solid rgba(201,150,43,.25);
  border-radius:10px; padding:12px 14px;
  display:flex; gap:10px; align-items:flex-start;
  font-size:.78rem; color:var(--muted); line-height:1.6;
}
.safety-note i{ color:var(--gold); margin-top:2px; flex-shrink:0; }

/* requirement highlight */
.requirement-box{
  background:linear-gradient(135deg,rgba(123,28,46,.06),rgba(201,150,43,.08));
  border:1px solid rgba(123,28,46,.15);
  border-radius:12px; padding:16px 18px;
  margin-top:4px;
}
.requirement-box p{ font-size:.88rem; color:var(--text); margin:0; line-height:1.75; }
.requirement-box strong{ color:var(--maroon); }

/* similar profiles */
.similar-section{ padding:48px 0 72px; background:var(--soft); }
.similar-card{ background:#fff; border-radius:14px; overflow:hidden; border:1px solid var(--border); transition:transform .25s, box-shadow .25s; }
.similar-card:hover{ transform:translateY(-4px); box-shadow:0 10px 28px rgba(123,28,46,.1); }
.similar-img{ width:100%; height:200px; object-fit:cover; object-position:top; }
.similar-body{ padding:14px 16px 18px; }
.similar-name{ font-size:.98rem; font-weight:700; color:var(--text); margin-bottom:2px; }
.similar-meta{ font-size:.76rem; color:var(--muted); margin-bottom:10px; }
.similar-tags{ display:flex; gap:5px; flex-wrap:wrap; margin-bottom:12px; }
.stag{ background:rgba(123,28,46,.08); color:var(--maroon); border-radius:5px; padding:2px 9px; font-size:.7rem; font-weight:500; }
.btn-sim{ background:var(--maroon); color:#fff; border:none; border-radius:7px; padding:8px 0; font-size:.8rem; font-weight:600; width:100%; text-align:center; display:block; text-decoration:none; transition:background .2s; }
.btn-sim:hover{ background:var(--maroon-dark); color:#fff; }

/* modal */
.modal-content{ border-radius:16px; border:none; }
.modal-header{ border-bottom:1px solid var(--border); padding:18px 24px; }
.modal-body{ padding:24px; }
.modal-footer{ border-top:1px solid var(--border); padding:14px 24px; }
.form-label-c{ font-size:.74rem; font-weight:600; text-transform:uppercase; letter-spacing:.6px; color:var(--muted); margin-bottom:5px; display:block; }
.form-control-c{ width:100%; border:1.5px solid var(--border); border-radius:10px; padding:10px 14px; font-size:.9rem; font-family:'Hind',sans-serif; color:var(--text); background:var(--cream); transition:border-color .2s; outline:none; }
.form-control-c:focus{ border-color:var(--maroon); box-shadow:0 0 0 3px rgba(123,28,46,.1); }
textarea.form-control-c{ resize:vertical; min-height:100px; }


.photo-main-wrap img
{
width:100%;
height:520px;
}

.view-btn a 
{
	color: #fff;
    text-decoration: none;
}

:root {
  --maroon:  #7B1C2E;
  --maroon-dark: #5a1227;
  --gold:    #C9962B;
  --accent:  #E8B84B;
  --cream:   #FDF6EC;
  --soft:    #F5E8D5;
  --dark:    #1A0A10;
  --text:    #3D1A22;
  --muted:   #7a5c68;
  --border:  #EDD9C8;
}
* { box-sizing: border-box; }
body { font-family: 'Hind', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; margin: 0; }
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; }

/* ── NAVBAR ── */
.navbar { background: var(--dark); padding: 14px 0; box-shadow: 0 2px 20px rgba(0,0,0,.45); }
.navbar-brand { font-family: 'Playfair Display', serif; font-size: 1.55rem; color: var(--accent) !important; }
.navbar-brand span { color: #fff; }
.nav-link { color: #e8d9c5 !important; font-weight: 500; font-size: .95rem; padding: 6px 14px !important; transition: color .2s; }
.nav-link:hover, .nav-link.active { color: var(--accent) !important; }
.navbar-toggler { border-color: var(--gold); }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201,150,43,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
.btn-login { background: var(--gold); color: var(--dark) !important; border-radius: 25px; padding: 6px 22px !important; font-weight: 600; }
.btn-login:hover { background: var(--accent); }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, #2c0915 0%, #5a1227 50%, #7b1c2e 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9962B' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem,4vw,3rem); position: relative; z-index:1; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: .95rem; position: relative; z-index:1; margin-bottom: 14px; }
.breadcrumb { background: transparent; justify-content: center; margin: 0; }
.breadcrumb-item a { color: var(--accent); text-decoration: none; font-size: .84rem; }
.breadcrumb-item.active { color: rgba(255,255,255,.55); font-size: .84rem; }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ── SECTION ── */
.contact-section { padding: 72px 0; }
.sec-label {
  display: inline-block;
  background: rgba(123,28,46,.1);
  border: 1px solid rgba(123,28,46,.22);
  color: var(--maroon);
  border-radius: 20px; padding: 4px 18px;
  font-size: .76rem; letter-spacing: 1.4px;
  text-transform: uppercase; font-weight: 600; margin-bottom: 10px;
}
.sec-title { font-size: clamp(1.6rem,3vw,2.3rem); color: var(--dark); line-height: 1.2; }
.sec-title span { color: var(--maroon); }
.divider-gold { width: 52px; height: 3px; background: linear-gradient(90deg,var(--gold),var(--accent)); border-radius: 3px; margin: 14px 0 0; }

/* ── INFO CARD ── */
.info-card {
  background: linear-gradient(160deg, var(--maroon-dark), var(--maroon));
  border-radius: 20px;
  padding: 40px 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: '❋';
  position: absolute; right: -10px; top: -20px;
  font-size: 9rem; color: rgba(255,255,255,.04);
  pointer-events: none;
}
.info-card h4 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.info-card > p { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.8; margin-bottom: 30px; }

.info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.info-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(201,150,43,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1rem; flex-shrink: 0;
}
.info-item strong { display: block; color: #fff; font-size: .88rem; font-weight: 600; margin-bottom: 2px; }
.info-item span { color: rgba(255,255,255,.6); font-size: .83rem; line-height: 1.6; }

.info-divider { border-color: rgba(255,255,255,.1); margin: 24px 0; }

.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(201,150,43,.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: .85rem;
  text-decoration: none; transition: background .2s, color .2s;
}
.social-btn:hover { background: rgba(201,150,43,.22); color: var(--accent); }

.hours-row { display: flex; justify-content: space-between; margin-bottom: 8px; }
.hours-row span:first-child { color: rgba(255,255,255,.65); font-size: .82rem; }
.hours-row span:last-child { color: #fff; font-size: .82rem; font-weight: 500; }

/* ── FORM CARD ── */
.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 28px rgba(123,28,46,.07);
  height: 100%;
}
.form-card h4 { font-size: 1.5rem; color: var(--dark); margin-bottom: 6px; }
.form-card > p { color: var(--muted); font-size: .88rem; margin-bottom: 28px; }

.form-label-c {
  font-size: .74rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .6px;
  color: var(--muted); margin-bottom: 6px; display: block;
}
.form-control-c {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: .9rem;
  font-family: 'Hind', sans-serif;
  color: var(--text);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control-c:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(123,28,46,.1);
  background: #fff;
}
select.form-control-c { appearance: none; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%237a5c68' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 12px center; background-size: 14px; padding-right: 36px; cursor: pointer; }
textarea.form-control-c { resize: vertical; min-height: 120px; }

.btn-submit-c {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: #fff; border: none; border-radius: 10px;
  padding: 13px 36px; font-size: .95rem; font-weight: 600;
  width: 100%; cursor: pointer;
  font-family: 'Hind', sans-serif;
  transition: transform .2s, box-shadow .2s;
}
.btn-submit-c:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(123,28,46,.3); }

/* success alert */
.alert-success-c {
  background: rgba(34,134,74,.1);
  border: 1px solid rgba(34,134,74,.3);
  border-radius: 10px; padding: 14px 18px;
  color: #1a5e35; font-size: .88rem;
  display: none; margin-top: 16px;
  align-items: center; gap: 10px;
}

/* ── MAP SECTION ── */
.map-section { padding: 0 0 72px; }
.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(123,28,46,.07);
  background: #ede3d8;
  height: 320px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.map-pin {
  text-align: center;
}
.map-pin-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--maroon);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
  margin: 0 auto 12px;
  box-shadow: 0 4px 18px rgba(123,28,46,.4);
}
.map-pin p { color: var(--muted); font-size: .88rem; margin: 0; }
.map-pin strong { color: var(--dark); font-size: .95rem; display: block; margin-bottom: 4px; }

/* ── FAQ ── */
.faq-section { padding: 72px 0; background: var(--soft); }
.accordion-item { border: 1px solid var(--border) !important; border-radius: 12px !important; margin-bottom: 10px; overflow: hidden; }
.accordion-button {
  font-family: 'Hind', sans-serif;
  font-weight: 600; font-size: .92rem;
  color: var(--text) !important;
  background: #fff !important;
  box-shadow: none !important;
  padding: 16px 20px;
}
.accordion-button:not(.collapsed) { color: var(--maroon) !important; background: rgba(123,28,46,.04) !important; }
.accordion-button::after { filter: none; }
.accordion-body { font-size: .88rem; color: var(--muted); line-height: 1.8; padding: 4px 20px 18px; background: #fff; }

/* ── CTA ── */
.cta-strip {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  padding: 52px 0;
  text-align: center;
}
.cta-strip h2 { color: #fff; font-size: clamp(1.5rem,3vw,2.2rem); margin-bottom: 10px; }
.cta-strip p { color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: 26px; }
.btn-cta {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: var(--dark); border: none; border-radius: 30px;
  padding: 13px 40px; font-size: 1rem; font-weight: 700;
  text-decoration: none; display: inline-block;
  transition: transform .2s, box-shadow .2s;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(201,150,43,.4); color: var(--dark); }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 50px 0 24px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--accent); }
.footer-brand span { color: #fff; }
footer p.footer-about { color: #a08090; font-size: .84rem; line-height: 1.75; max-width: 300px; }
.footer-head { color: var(--accent); font-size: .75rem; text-transform: uppercase; letter-spacing: 1.2px; font-weight: 600; margin-bottom: 14px; font-family: 'Hind', sans-serif; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links a, .footer-links li { color: #a08090; font-size: .84rem; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(201,150,43,.2);
  display: flex; align-items: center; justify-content: center;
  color: #a08090; font-size: .82rem; text-decoration: none; transition: background .2s, color .2s;
}
.footer-social a:hover { background: rgba(201,150,43,.2); color: var(--accent); }
.footer-hr { border-color: rgba(255,255,255,.07); margin: 28px 0 18px; }
.footer-bottom, .footer-bottom a { color: #5A3A48; font-size: .78rem; text-decoration: none; }
.footer-bottom a:hover { color: #9A7080; }

@media(max-width:768px){
  .form-card { padding: 28px 20px; }
  .info-card { padding: 30px 20px; }
}