/*
Theme Name: Caribbean Real Estate Child
Theme URI: https://digitalwurl.com/
Author: Mandla - Digitalwurl
Author URI: https://digitalwurl.com/
Description: Child theme for Caribbean Real Estate.
Version: 1.0
Template: cretv
Text Domain: cretv
*/

/* Base */
:root {
  --bg: #f8fafc;
  --text: #0f172a;
  --muted: #475569;
  --border: #e2e8f0;
  --card: #fff;
  --accent: #0d9488;
  --accent-700: #0f766e;
  --chip: #f1f5f9;
  --shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --brand-teal: #0d9488;
  --brand-blue: #0369a1;
  --brand-accent: #f59e0b;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.site-body {
  min-height: 100vh;
  background: #f8fafc;
  color: #0f172a;
}

.site-logo {
  width: 6em;
}
/* Layout helpers */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 3rem 0;
}
.section.single-pages {padding-top:1rem;}

.section-alt {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ecfeff, #eff6ff);
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.section-subtitle {
  margin-top: -1.75rem;
  color: #64748b;
  font-size: 0.95rem;
}

.section-heading.center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

/* Buttons */

.btn {
  border-radius: 0.75rem;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  padding: 0.65rem 1.2rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 500;
  transition:
    background 0.15s ease,
    box-shadow 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
  white-space: nowrap;
}

.btn i {
  font-size: 0.85em;
}

.btn-primary {
  background: linear-gradient(90deg, #0f766e, #0f766e);
  color: #fff;
  box-shadow: 0 4px 10px rgba(15, 118, 110, 0.3);
}

.btn-primary:hover {
  background: var(--accent-700);
  box-shadow: 0 6px 16px rgba(15, 118, 110, 0.4);
}

.btn-outline {
  background: #fff;
  color: #0f172a;
  border: 1px solid #cbd5f5;
}

.btn-outline:hover {
  background: #f8fafc;
}

.btn-outline-sm {
  font-size: 0.8rem;
  padding: 0.55rem 0.9rem;
  border-radius: 0.7rem;
  border: 1px solid #cbd5f5;
  background: #fff;
  color: #0f172a;
}

.btn-outline-sm:hover {
  background: #f8fafc;
}

.btn-light {
  background: #fff;
  color: #0f766e;
  border: none;
}

.btn-light:hover {
  background: #e5f3f2;
}

.btn-dark {
  background: #0f172a;
  color: #fff;
}

.btn-dark:hover {
  background: #020617;
}
.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border: 1px solid var(--border);
}
/*.btn:hover {*/
/*    background: #f8fafc;*/
/*    transform: translateY(-1px);*/
/*    box-shadow: var(--shadow);*/
/*}*/

.full-width {
  width: 100%;
}

.btn-full {
    width: 100%;
}

.full-width-half {
  flex: 1;
}

/* Inputs */

.input,
.select {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #cbd5f5;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  outline: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  background: #fff;
  appearance: none;
}

.input:focus,
.select:focus {
  border-color: #0f766e;
  box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.2);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid #e2e8f0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  height: 32px;
  width: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f766e, #0f766e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
}

.brand-name {
  font-weight: 600;
  color: #0f766e;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--brand-teal);
  transition: width 0.3s ease;
  border-radius: 9999px;
}

.nav-link {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.25rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #0f172a;
}

.nav-link:hover {
  color: #0f766e;
}

.dropdown-caret {
  font-size: 0.7rem;
  margin-top: 1px;
}

.dropdown-panel {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  top: calc(100% + 0.2rem);
  width: max-content;
  /*max-width: 90vw;*/
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  border: 1px solid #e2e8f0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 50;
}

.dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  left: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.dropdown-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.7rem;
}

.dropdown-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0;
  cursor: pointer;
  color: #374151;
}

.dropdown-list li i {
  font-size: 0.7rem;
  color: #6b7280;
}

.dropdown-list li:hover {
  color: #0f766e;
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 0;
}

.header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.hide-on-mobile {
  display: inline-flex;
}
.archive-header{margin-top:2rem;}

/* Base: no divider on last column */
.dropdown-panel .dropdown-column {
  position: relative;
}

/* Two-column dropdown: divider between the 2 */
.dropdown-panel.grid-cols-2 .dropdown-column:not(:last-child) {
  border-bottom: 1px solid #e5e7eb; /* slate-200-ish */
  padding-right: 2rem;
  margin-right: 2rem;
}

/* Three-column dropdown: divider after col 1 & 2 */
.dropdown-panel.grid-cols-3 .dropdown-column:not(:last-child) {
  border-bottom: 1px solid #e5e7eb;
  padding-right: 2rem;
  margin-right: 2rem;
}


/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ecfeff, #eff6ff, #fff);
  padding: 0 0 3.5rem;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2850&q=80");
  background-size: cover;
  background-position: center;
  mix-blend-mode: overlay;
  opacity: 0.12;
  pointer-events: none;
}
.hero-left{
    margin-top: 4rem;
}
.hero-inner {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  color: #0f766e;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  margin-bottom: 1.25rem;
}

.star-icon {
  color: #facc15;
}

.hero-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.1;
  font-weight: 800;
  color: #0f172a;
}

.hero-title-highlight {
  background: linear-gradient(90deg, #0f766e, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: #64748b;
  max-width: 36rem;
}

/* Newsletter card & search */

.card {
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.newsletter-card {
  margin-top: 1.75rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.card-title {
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.card-helper {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #94a3b8;
}

.newsletter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.search-card {
  margin-top: 1.25rem;
  padding: 1.25rem;
}

.search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.select-wrap {
  flex: 1 1 150px;
}

.search-btn {
  flex: 0 0 auto;
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
  align-items: center;
  font-size: 0.85rem;
  color: #64748b;
}

.search-tags-label {
  font-weight: 500;
  margin-right: 0.25rem;
}

.tag-pill {
  border-radius: 999px;
  background: #e5e7eb;
  border: none;
  padding: 0.35rem 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: #374151;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.tag-pill i {
  font-size: 0.75rem;
}

.tag-pill:hover {
  background: #dbeafe;
  color: #0f766e;
}

/* Hero visual */

.hero-right {
  position: relative;
}

.hero-visual-card {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  padding: 0;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.hero-visual-media {
  position: relative;
  inset: 0;
  overflow: hidden;
  background-color: #000;
}
.hero-visual-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-visual-bg {
  width: 100%;
  height: 100%;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero-visual-top-card {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-visual-top-left h3 {
  margin: 1rem auto;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
}

.hero-visual-top-left p {
  margin: 0.15rem 0 0;
  font-size: 0.7rem;
  color: #6b7280;
}

.hero-visual-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0f766e;
}

.hero-visual-bottom-card {
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  border-radius: 1.25rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(90deg, #0f766e, #2563eb);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.35);
}
.hero-visual-top-card,
.hero-visual-bottom-card {
  z-index: 2;
}
.hero-visual-bottom-card h3{
    color:#fff;
}

.hero-visual-bottom-card h3 {
  margin: 1rem auto;
  font-size: 0.95rem;
}

.hero-visual-bottom-card p {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  opacity: 0.9;
}

.hero-trust-row {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  z-index: 11;
}

.trust-pill {
  background: #fff;
  border-radius: 0.9rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
  padding: 0.5rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #0f172a;
}

.trust-pill i {
  color: #0f766e;
}

/* Stats */

.section-stats {
  background: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 1.9rem;
  font-weight: 700;
  color: #0f766e;
}

.stat-label {
  margin-top: 0.25rem;
  color: #64748b;
  font-size: 0.9rem;
}

/* Split layout (listings + map) */

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-actions {
  display: flex;
  gap: 0.5rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.cards-grid.dasboard-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.section-footer {
  margin-top: 1.75rem;
  text-align: center;
}

/**== Property cards ==**/

.property-card {
  display: flex;
  flex-direction: column;
}

.card-media {
  position: relative;
  height: 190px;
  background-size: cover;
  background-position: center;
}

.card-body {
  padding: 1.1rem;
}

.card-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.card-location {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.card-location i {
  font-size: 0.7rem;
}

.card-price-wrap {
  text-align: right;
}

.card-price {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0f766e;
}

.card-price-note {
  margin: 0.05rem 0 0;
  font-size: 0.7rem;
  color: #9ca3af;
}

.card-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: #64748b;
}

.card-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.card-meta-row i {
  font-size: 0.8rem;
}

.card-actions-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.card-pill {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
}

.card-pill-green {
  background: #0f766e;
}

.card-pill-blue {
  background: #2563eb;
}

.card-pill-amber {
  background: #b45309;
}

.card-pill-purple {
  background: #7c3aed;
}

.card-fav-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  height: 30px;
  width: 30px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  cursor: pointer;
  transition: background 0.15s ease;
}

.card-fav-btn:hover {
  background: #fff;
}

.property-type-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85); /* dark overlay */
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: var(--shadow-md, 0 10px 25px rgba(15, 23, 42, 0.4));
    backdrop-filter: blur(6px);
}
.property-type-badge i {
    font-size: 0.8rem;
}

/* Map panel */

.map-panel {
  position: relative;
  min-height: 950px;
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  background: linear-gradient(135deg, #ecfeff, #dbeafe);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}

.map-bg-photo {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2850&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  mix-blend-mode: soft-light;
}

.map-top-controls {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.map-search-wrap {
  flex: 1;
  position: relative;
}

.map-input {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid #cbd5f5;
  padding: 0.7rem 1rem 0.7rem 2.3rem;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.95);
  outline: none;
}

.map-input:focus {
  border-color: #0f766e;
  box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.2);
}

.map-search-icon {
  position: absolute;
  top: 50%;
  left: 0.8rem;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 0.9rem;
}

/* Island shapes */

.map-island {
  position: absolute;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.45);
  border: 1px solid rgba(45, 212, 191, 0.8);
}

.map-island-1 {
  left: 25%;
  top: 30%;
  width: 70px;
  height: 70px;
}

.map-island-2 {
  left: 32%;
  top: 50%;
  width: 90px;
  height: 52px;
}

.map-island-3 {
  left: 48%;
  top: 38%;
  width: 105px;
  height: 70px;
}

.map-island-4 {
  left: 60%;
  top: 22%;
  width: 60px;
  height: 60px;
}

.map-island-5 {
  left: 68%;
  top: 60%;
  width: 85px;
  height: 50px;
}

/* Pins */

.pin {
  position: absolute;
  height: 16px;
  width: 16px;
  border-radius: 9999px;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #0f766e;
}

.pin:hover {
  transform: scale(1.2);
}

.pin::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 12px;
  background-color: currentColor;
  opacity: 0.7;
}

/* Map legend */

.map-legend {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  max-width: 260px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 0.9rem;
  border: 1px solid #e2e8f0;
  padding: 0.8rem 1rem;
  display: flex;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: #0f172a;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.22);
}

.map-legend-icon {
  height: 40px;
  width: 40px;
  border-radius: 999px;
  background: #ccfbf1;
  color: #0f766e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-legend h4 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.map-legend p {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
}

/* Skeleton loading */

.skeleton {
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Testimonials */

.testimonial-card {
  padding: 1.4rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.1rem;
  color: #fbbf24;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: #374151;
  margin: 0;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.avatar-circle {
  height: 40px;
  width: 40px;
  border-radius: 999px;
  background: #ccfbf1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f766e;
  font-weight: 600;
  font-size: 0.8rem;
}

.testimonial-name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.testimonial-meta {
  margin: 0.1rem 0 0;
  font-size: 0.8rem;
  color: #94a3b8;
}

/* Cards grids */

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Agents */

.section-agents {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.agent-card {
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  background: #f9fafb;
  padding: 1rem;
  text-align: center;
  transition: background 0.15s ease;
}

.agent-card:hover {
  background: #fff;
}

.agent-icon {
  height: 48px;
  width: 48px;
  border-radius: 999px;
  background: #ccfbf1;
  color: #0f766e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.6rem;
}

.agent-name {
  font-size: 0.9rem;
  font-weight: 500;
}

.agent-location {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* News / articles */

.card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
}

.badge-pill {
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
}

.badge-green {
  background: #ccfbf1;
  color: #0f766e;
}

.badge-blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.badge-purple {
  background: #ede9fe;
  color: #6d28d9;
}

.card-date {
  color: #94a3b8;
}

.card-text {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #4b5563;
  margin-bottom: 0.9rem;
}
.agent-card h3 {
    margin:1rem;
}
/* CTA */

.cta-card {
  border-radius: 1.5rem;
  background: linear-gradient(90deg, #0f766e, #2563eb);
  padding: 2rem;
  color: #e5f3f2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.45);
}

.cta-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 1rem auto;
}

.cta-text {
  margin: 0.4rem 0 0.9rem;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-point {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
}

.cta-point i {
  color: #a7f3d0;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Footer */

.site-footer {
  background: #0f172a;
  color: #e5e7eb;
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 2rem;
}

.footer-brand-col {
  max-width: 420px;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand-icon {
  background: #0f766e;
}

.footer-brand-name {
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-text {
  font-size: 0.9rem;
  color: #cbd5f5;
}

.footer-text.small {
  font-size: 0.8rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.footer-socials a {
  height: 40px;
  width: 40px;
  border-radius: 999px;
  background: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  font-size: 0.9rem;
  transition: background 0.15s ease;
}

.footer-socials a:hover {
  background: #0f766e;
}

.footer-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: #9ca3af;
}

.footer-list li {
  padding: 0.15rem 0;
  cursor: pointer;
}

.footer-list li:hover {
  color: #e5e7eb;
}

.footer-newsletter {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer-input {
  flex: 1;
  border-radius: 0.75rem;
  border: 1px solid #374151;
  background: #111827;
  color: #e5e7eb;
  padding: 0.45rem 0.7rem;
  font-size: 0.85rem;
}

.footer-input:focus {
  outline: none;
  border-color: #0f766e;
}

.footer-send-btn {
  border-radius: 0.75rem;
  border: none;
  background: #0f766e;
  color: #fff;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 1.2rem;
  font-size: 0.8rem;
  color: #9ca3af;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-badges {
  display: flex;
  gap: 1.5rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-badge i {
  color: #0f766e;
}

/* Grids */

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Responsive */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    margin-top: 2rem;
  }

  .split-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    grid-template-columns: 1fr;
  }

  .agents-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;              /* hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    z-index: 1000;
  }

  .main-nav.active {
    display: flex;              /* shown when toggled */
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem 0.5rem;
  }

  .nav-item {
    width: 100%;
  }
  
  /* disable hover behavior on mobile */
  .dropdown:hover .dropdown-panel {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    left: 50%;
  }

  /* open when a class is added */
  .dropdown.open .dropdown-panel {
    position: static;
    transform: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
  }

  .hide-on-mobile {
    display: none;
  }

  .cards-grid-3 {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agents-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-row {
    flex-direction: column;
  }

  .full-width-mobile {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .agents-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.85rem;
  color: #64748b;
  padding: 1rem 0 0.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-weight: 500;
}

.breadcrumbs a {
  color: #475569;
  transition: color 0.2s;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

/* Property Header */
.property-header {
  margin: 1rem 0 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-700);
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(13, 148, 136, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.property-title {
  font-size: 1.75rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1rem;
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--chip);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  color: #334155;
  font-weight: 500;
}

.price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.price-detail {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

/* Gallery */
.gallery {
  margin: 1.5rem 0;
}

.main-image {
  height: 300px;
  border-radius: 16px;
  background-image: url("https://images.unsplash.com/photo-1613490493576-7fde63acd811?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 0.75rem;
}

.gallery-controls {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
}

.gallery-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.gallery-btn:hover {
  background: white;
  transform: scale(1.05);
}

.thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.thumbnail {
  height: 100px;
  border-radius: 12px;
  background: #e2e8f0;
  cursor: pointer;
  transition: all 0.2s;
  overflow: hidden;
}

.thumbnail:hover {
  transform: scale(1.02);
}

.thumbnail:nth-child(1) {
  background-image: url("https://images.unsplash.com/photo-1564013799919-ab600027ffc6?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
}

.thumbnail:nth-child(2) {
  background-image: url("https://images.unsplash.com/photo-1580587771525-78b9dba3b914?ixlib=rb-4.0.3&auto=format&fit=crop&w=1974&q=80");
  background-size: cover;
  background-position: center;
}

.thumbnail:nth-child(3) {
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-direction: column;
}

/* Content Sections */
.section {
  margin: 0;
}

.section-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.card:last-child {
  margin-bottom: 0;
}

.description {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.detail-item {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem;
}

.detail-label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.feature {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  background: #fff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s;
}

.feature:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}

/* Map */
.map-container {
  height: 250px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: radial-gradient(ellipse at center, #ccfbf1, #e2e8f0);
  overflow: hidden;
  position: relative;
  margin-bottom: 1rem;
}

.pin {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%);
}

.map-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: white;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 999;
}

/* Agent Section */
.agent-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 1.5rem;
}

.agent-header {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.agent-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
}

.agent-info h3 {
  margin-bottom: 0.25rem;
}

.agent-info p {
  color: var(--muted);
  font-size: 0.9rem;
}

.agent-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.agent-stat {
  text-align: center;
}

.agent-stat-value {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.agent-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

/* Form */
.form-group {
  margin-bottom: 1.25rem;
}
.form-page {padding: 3rem;}

label, .property-contact label,
.registration label, .cre-form-group label, .CustomerRegistration label{
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-align:left;
}

.form-input, .property-contact_wrapper form#gform_1.property-contact input,
.real-estate-content_wrapper form#gform_4.real-estate-content input,
.real-estate-content_wrapper form#gform_4.real-estate-content select,
.property-contact_wrapper form#gform_1.property-contact textarea,
.registration_wrapper form#gform_2 input, .registration_wrapper form#gform_2 select,
.cre-form-group input, .CustomerRegistration_wrapper form#gform_3 input, .CustomerRegistration_wrapper form#gform_3 select,
.cretv-contact_wrapper form#gform_6 input, .cretv-contact_wrapper form#gform_6 textarea,
.cretv-contact_wrapper form#gform_6 select,
.service-provider_wrapper form#gform_5 input, .service-provider_wrapper form#gform_5 select, 
.service-provider_wrapper form#gform_5 texarea,
.ads-request_wrapper form#gform_7.ads-request input,
.ads-request_wrapper form#gform_7.ads-request textarea{
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 10px!important;
  font-size: 0.9rem!important;
  transition: all 0.2s!important;
  text-align: left;
  color:#000;
}

/*== Select Padding ==*/
.real-estate-content_wrapper form#gform_4.real-estate-content select,
.registration_wrapper form#gform_2 select,
.CustomerRegistration_wrapper form#gform_3 select,
.cretv-contact_wrapper form#gform_6 select,
.service-provider_wrapper form#gform_5 select,
.ads-request_wrapper form#gform_7.ads-request select{
    padding: 0 1rem 0 !important;
}
#input_4_15,#input_5_20{padding: 0!important;}


.form-input:focus, .property-contact_wrapper form#gform_1.property-contact input:focus,
.real-estate-content_wrapper form#gform_4.real-estate-content input:focus,
.property-contact_wrapper form#gform_1.property-contact textarea:focus,
.registration_wrapper form#gform_2 input:focus, .registration_wrapper form#gform_2 select:focus,
.cre-form-group input:focus, .CustomerRegistration_wrapper form#gform_3 input:focus,
.real-estate-content_wrapper form#gform_4.real-estate-content textarea:focus,
.cretv-contact_wrapper form#gform_6 input:focus, .cretv-contact_wrapper form#gform_6 textarea:focus,
.cretv-contact_wrapper form#gform_6 select:focus, .service-provider_wrapper form#gform_5 input:focus,
.service-provider_wrapper form#gform_5 select:focus, .service-provider_wrapper form#gform_5 textarea:focus,
.ads-request_wrapper form#gform_7.ads-request input:focus, .ads-request_wrapper form#gform_7.ads-request texarea:focus,
.ads-request_wrapper form#gform_7.ads-request select:focus{
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
  color:#000;
}

textarea.form-input, .property-contact_wrapper form#gform_1.property-contact textarea,
.real-estate-content_wrapper form#gform_4.real-estate-content textarea,
.cretv-contact_wrapper form#gform_6 textarea, .service-provider_wrapper form#gform_5 textarea,
.ads-request_wrapper form#gform_7.ads-request texarea{
  resize: vertical;
  min-height: 100px;
}
/* -- Property Name Text ---*/
.property-contact_wrapper form#gform_1.property-contact #input_1_9  {
    border: none;
    box-shadow: none;
    font-size: 18px !important;
    font-weight: bold;
    margin: 0 0 -2rem 0;
    padding: 0;
}
/* -- Location / Price Text ---*/
.property-contact_wrapper form#gform_1.property-contact #input_1_12{
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: -1rem;
    
}
.property-contact_wrapper form#gform_1.property-contact #input_1_13{
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: -3rem;
    font-weight:bold;
    color: var(--accent);
}
/* Hide submit area for form */
.property-contact_wrapper form#gform_1.property-contact .gform_footer,
.registration_wrapper form#gform_2.registration .gform_footer,
.CustomerRegistration_wrapper form#gform_3.CustomerRegistration .gform_footer,
.real-estate-content_wrapper form#gform_4.real-estate-content .gform_footer,
.cretv-contact_wrapper form#gform_6.cretv-contact .gform_footer, 
.service-provider_wrapper form#gform_5.service-provider .gform_footer,
.ads-request_wrapper form#gform_7.ads-request .gform_footer{
  display: none;
}
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s;
  font-weight: 500;
}

.action-btn:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}

.action-btn.primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.action-btn.primary:hover {
  background: var(--accent-700);
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

#registration-submit{
    margin:1rem 0;
}

/* Similar Listings */
.similar-listings {
  margin: 2rem 0;
}

.listing-cards {
  display: grid;
  gap: 1.25rem;
}

.listing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.listing-image {
  height: 160px;
  background: #cbd5e1;
  position: relative;
}

.listing-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
}

.listing-content {
  padding: 1.25rem;
}

.listing-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.listing-details {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
}

.copyright {
  color: #64748b;
  font-size: 0.85rem;
  text-align: center;
  font-weight: 500;
}

/* Mobile-First Responsive Design */
@media (min-width: 640px) {
  .property-title {
    font-size: 2rem;
  }

  .main-image {
    height: 400px;
  }

  .thumbnails {
    grid-template-columns: repeat(4, 1fr);
  }

  .thumbnail {
    height: 120px;
  }

  .action-buttons {
    flex-direction: row;
  }

  .quick-actions {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  .property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .property-info {
    flex: 1;
  }

  .property-price {
    text-align: right;
  }

  .gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.75rem;
  }

  .main-image {
    height: 460px;
    margin-bottom: 0;
  }

  .thumbnails {
    grid-template-columns: 1fr;
  }

  .thumbnail {
    height: 140px;
  }

  .content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
  }

  .listing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .listing-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .property-title {
    font-size: 2.5rem;
  }

  .price {
    font-size: 2rem;
  }
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

/*=== NewsLetter ===*/
.cretvnewsletter {margin: 1rem auto}

/*=== Interactive Map ===*/

.carib-map-marker {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #10b981; /* green dot, tweak to match brand */
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.4);
  cursor: pointer;
}

/*== Live badge ==*/
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    margin-left: 0.3rem;
    animation: pulse 1s infinite;
}
 /* Watch LIVE Styling - Glow Pulse */
    .live-dot {
      width: 8px;
      height: 8px;
      background: #ef4444;
      border-radius: 50%;
      display: inline-block;
      box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
      70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
      100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
    }

 /*== Plans Section ==*/
 
.plans {text-align:center;}
.plans-section {
    padding: 2rem 0 4rem;
}
.plans {
    padding: 3rem 0;
    text-align: center;
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);
    border-radius: 0 0 20px 20px;
    margin-bottom: 2rem;
}

.plans h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.plans p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/*.section-title {*/
/*    text-align: center;*/
/*    margin-bottom: 3rem;*/
/*}*/

.plans-section h2, .comparison-section h2, .faq-section h2 {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.plans-section .section-title p, .comparison-section .section-title p, .faq-section .section-title p {
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: normal;
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.plan-card {
    background: var(--card);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.plan-card.featured {
    border: 2px solid var(--accent);
    position: relative;
}

.plan-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 16px 0 16px;
}

.plan-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.plan-period {
    color: var(--muted);
    font-size: 0.9rem;
}

.plan-features {
    padding: 1.5rem;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.feature-list li i {
    color: var(--accent);
    margin-top: 0.2rem;
}

.feature-list li.disabled {
    color: var(--muted);
}

.feature-list li.disabled i {
    color: var(--muted);
}

.plan-actions {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}

/* Comparison Table */
.comparison-section {
    margin: 4rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: #f8fafc;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .feature-name {
    font-weight: 500;
}

.comparison-table .check {
    color: var(--accent);
    text-align: center;
}

.comparison-table .cross {
    color: var(--muted);
    text-align: center;
}

/* FAQ Section */
.faq-section {
    margin: 4rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}
/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent), #0f766e);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin: 4rem 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-light {
    background: white;
    color: var(--accent);
}

.btn-light:hover {
    background: #f8fafc;
}

.btn-outline-light {
    background: transparent;
    border-color: white;
    color: white;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

/*=== About Us Hero Section ===*/
.about-hero {
    padding: 4rem 0 3rem;
    text-align: center;
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);
    border-radius: 0 0 20px 20px;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    padding: 4rem 0;
}

.story-container {
    display: flex;
    /*grid-template-columns: 1fr 1fr;*/
    gap: 3rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.story-quote {
    font-style: italic;
    color: var(--accent);
    font-size: 1.1rem;
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent);
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    font-size: 0.9rem;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
}

.section-title p {
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(13, 148, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent);
    font-size: 1.5rem;
}

.value-card h3 {
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-photo {
    height: 250px;
    background: #e2e8f0;
    position: relative;
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Milestones */
.milestones-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--accent) 0%, #0f766e 100%);
    color: white;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.milestone h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}


/**== News Shows ===**/
.show-btn {
    padding: 1rem 0;
}

/**==== Registration ====**/

#cretv-register {
    margin-top: 0.25rem;
}





