:root {
  --bg: #fff7f7;
  --bg-soft: #fff0f1;
  --surface: #ffffff;
  --surface-2: #fff5f5;
  --text: #111111;
  --muted: #5f5f5f;
  --accent: #c9152b;
  --accent-2: #ff5a5f;
  --border: rgba(17, 17, 17, 0.08);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top, rgba(201, 21, 43, 0.08), transparent 24%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}
.display-4{
  display:block;
}
a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: #8f0d1c;
}

img {
  max-width: 100%;
  display: block;
}

.section-padding {
  padding: 80px 0;
}
section:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    color: #333333;
}

/* ===== EVEN Sections (2nd, 4th, 6th, etc.) ===== */
section:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333333;
}
.section-heading {
  max-width: 100%;
  margin-bottom: 40px;
  text-align: center;
}

.text-gold {
  color: var(--accent);
}

.bg-surface {
  background: rgba(255, 255, 255, 0.92);
}

.navbar {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-link {
  color: #ffffff;
  font-weight: 600;
}

.navbar .navbar-brand,
.navbar .nav-link {
  color: #ffffff;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.navbar-toggler {
  border-color: rgba(201, 21, 43, 0.35);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(201, 21, 43, 0.18);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(255, 247, 247, 0.72), rgba(255, 247, 247, 0.84)), url('images/coupleanimated.webp') center/cover no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right center, rgba(201, 21, 43, 0.16), transparent 30%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-badge,
.area-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(201, 21, 43, 0.18);
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
  font-size: 0.95rem;
}

.btn-brand {
  background: linear-gradient(135deg, var(--accent), #ff4258);
  color: #ffffff;
  border: 0;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 24px;
  box-shadow: 0 8px 20px rgba(201, 21, 43, 0.2);
}

.btn-brand:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-outline-brand {
  border: 1px solid rgba(201, 21, 43, 0.45);
  color: var(--accent);
  border-radius: 999px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.7);
}

.btn-outline-brand:hover,
.btn-outline-brand.active {
  background: rgba(201, 21, 43, 0.1);
  color: #8f0d1c;
  border-color: rgba(201, 21, 43, 0.7);
}

.glass-card,
.service-card,
.profile-card,
.testimonial-card,
.location-card,
.video-card,
.info-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 245, 0.98));
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.service-card,
.profile-card,
.testimonial-card,
.location-card,
.video-card {
  height: 100%;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover,
.profile-card:hover,
.testimonial-card:hover,
.location-card:hover,
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.16);
}

.service-icon,
.location-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 21, 43, 0.1);
  color: var(--accent);
  font-size: 1.4rem;
}

.badge-soft {
  background: rgba(201, 21, 43, 0.1);
  color: #8f0d1c;
  border: 1px solid rgba(201, 21, 43, 0.14);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.profile-image,
.featured-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.gallery-grid .gallery-item,
.video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
}

.gallery-grid .gallery-item img,
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-grid .gallery-item:hover img,
.video-thumb:hover img {
  transform: scale(1.06);
}

.gallery-overlay,
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.72), rgba(201, 21, 43, 0.08));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item:hover .gallery-overlay,
.video-thumb:hover .video-overlay,
.video-thumb:focus .video-overlay {
  opacity: 1;
}

.play-icon,
.zoom-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(201, 21, 43, 0.92);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.gallery-item.tall {
  min-height: 420px;
}

.gallery-item.medium {
  min-height: 320px;
}

.gallery-item.small {
  min-height: 240px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.map-placeholder {
  min-height: 360px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background:
    linear-gradient(rgba(255, 245, 245, 0.4), rgba(255, 245, 245, 0.4)),
    linear-gradient(90deg, rgba(17,17,17,0.06) 1px, transparent 1px),
    linear-gradient(rgba(17,17,17,0.06) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(201,21,43,0.12), transparent 22%),
    #fff7f7;
  background-size: auto, 40px 40px, 40px 40px, auto, auto;
  position: relative;
  overflow: hidden;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.map-pin .pin {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(201, 21, 43, 0.12);
  color: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 0 12px rgba(201, 21, 43, 0.06);
}

.table-dark-custom {
  --bs-table-bg: transparent;
  --bs-table-striped-bg: rgba(201, 21, 43, 0.04);
  --bs-table-color: var(--text);
  border-color: rgba(17, 17, 17, 0.08);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--border);
  background: #111111;
  color: rgba(255, 255, 255, 0.88);
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-text,
.footer-note {
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer-title {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact-list li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact-list a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover,
.footer-contact-list a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact-list i {
  color: var(--accent);
  margin-top: 4px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(201, 21, 43, 0.18);
  color: #ffffff;
  font-weight: 600;
  margin-top: 8px;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
  color: #ffffff;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.social-links a:hover {
  background: rgba(201, 21, 43, 0.2);
  color: #ffffff;
}

.modal-content {
  background: linear-gradient(180deg, #ffffff, #fff4f5);
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: var(--text);
}

.modal-header,
.modal-footer {
  border-color: rgba(17, 17, 17, 0.08);
}

.modal .btn-close-white {
  filter: none;
}

.form-select,
.form-control {
  background-color: #ffffff;
  border-color: rgba(17, 17, 17, 0.12);
  color: var(--text);
}

.form-select:focus,
.form-control:focus {
  border-color: rgba(201, 21, 43, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(201, 21, 43, 0.12);
}

.form-select option {
  color: #111111;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(201, 21, 43, 0.1);
  color: #8f0d1c;
  font-weight: 700;
}

.faq-wrapper {
  border-radius: 28px;
}

.faq-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-button {
  background: transparent;
  color: var(--text);
  font-weight: 700;
  padding: 1rem 0 1rem 0;
  box-shadow: none;
}
.accordion-body{
  padding: 0rem 0 1rem 0;
}
.faq-button:not(.collapsed) {
  color: var(--accent);
  background: transparent;
  box-shadow: none;
}

.faq-button:focus {
  box-shadow: none;
}

.faq-button::after {
  filter: hue-rotate(330deg) saturate(2);
}

.page-hero {
  padding: 140px 0 70px;
  background: linear-gradient(180deg, rgba(109, 109, 109, 0.8), rgba(105, 105, 105, 0.94)), url('images/coupleanimated.webp') center/cover no-repeat;
  color:#fff;
}
.page-hero .text-light-emphasis {
  color: #fff !important;
}
.text-light-emphasis {
  color: #4e4e4e !important;
}

.hidden-item {
  display: none !important;
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding: 140px 0 90px;
  }

  .profile-image,
  .featured-image {
    height: 280px;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .gallery-item.tall,
  .gallery-item.medium,
  .gallery-item.small {
    min-height: 250px;
  }
}

.profile-hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 241, 243, 0.98));
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.stat-card,
.detail-card,
.related-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.stat-card {
  text-align: center;
  padding: 22px 18px;
}

.stat-card .number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
}

.detail-card {
  padding: 28px;
  height: 100%;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted);
}

.detail-list i {
  color: var(--accent);
  margin-top: 4px;
}

.profile-gallery-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.breadcrumb-link {
  color: var(--muted);
  font-weight: 600;
}

.breadcrumb-link:hover {
  color: var(--accent);
}

.profile-directory-card .profile-card {
  display: flex;
  flex-direction: column;
}

.profile-directory-card .p-4 {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.profile-directory-card .actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 767.98px) {
  .profile-hero-image {
    min-height: 320px;
  }

  .detail-card {
    padding: 22px;
  }
}
/* Content Container Styling */
.contentt {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 100%;
    word-wrap: break-word;
}
.contentt h1, .contentt h2{
  text-align: center;
}
/* Paragraph Styling */
.contentt p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    letter-spacing: 0.3px;
}

/* Remove margin from last paragraph */
.contentt p:last-child {
    margin-bottom: 0;
}

/* Unordered List Styling (ul) */
.contentt ul,
.contentt ol {
    margin: 1rem 0 1.5rem 0;
    padding-left: 0;
    list-style-type: none;
}

.contentt ul li {
    position: relative;
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

/* Custom Bullet for ul (luxury theme - gold/diamond style) */
.contentt ul li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #d4af37; /* Gold color for luxury feel */
    font-weight: bold;
    font-size: 0.9rem;
}

/* Ordered List Styling (ol) */
.contentt ol {
    margin: 1rem 0 1.5rem 0;
    padding-left: 1.8rem;
    list-style-type: decimal;
}

.contentt ol li {
    margin-bottom: 0.6rem;
    padding-left: 0.3rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

/* Nested Lists */
.contentt ul ul,
.contentt ol ul,
.contentt ul ol,
.contentt ol ol {
    margin: 0.5rem 0 0.5rem 1.5rem;
}


/* Bold Text in Lists */
.contentt li strong,
.contentt li b {
    color: #c9a03d;
    font-weight: 600;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .contentt p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .contentt ul,
    .contentt ol {
        padding-left: 1rem;
    }
    
    .contentt ul li,
    .contentt ol li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .contentt ul li::before {
        font-size: 0.8rem;
    }
}

/* Dark Mode / Luxury Dark Background Support */
.dark-bg .contentt p,
.dark-bg .contentt li {
    color: #e0e0e0;
}

.dark-bg .contentt li::before {
    color: #ffd700;
}

/* Special Styling for Address/Contact Info */
.contentt address {
    font-style: normal;
    margin: 1rem 0;
    padding: 1rem;
    background: #f9f9f9;
    border-left: 3px solid #d4af37;
    border-radius: 4px;
}

/* Links inside content */
.contentt a {
    color: #c9a03d;
    text-decoration: none;
    transition: color 0.2s;
}

.contentt a:hover {
    color: #b8860b;
    text-decoration: underline;
}