/* ==========================================================================
   ANITA COLONY - MAIN CSS STYLESHEET
   Design System, Tokens, Typography, Layouts & Components
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Colors */
  --primary-green: #0e4b37;
  --primary-green-hover: #0b3c2c;
  --primary-green-light: #e6f3ed;
  --accent-green: #1d7a5b;
  --accent-green-subtle: #d3ebd9;
  
  /* Text & Neutral Colors */
  --text-dark: #1a2e26;
  --text-muted: #566a62;
  --text-light: #7b8e86;
  --bg-page: #f4f7f5;
  --bg-card: #ffffff;
  --border-color: #e2ebe6;
  --border-dark: #b8d4c6;
  
  /* UI Shadow & Radius */
  --shadow-sm: 0 2px 8px rgba(14, 75, 55, 0.05);
  --shadow-md: 0 4px 16px rgba(14, 75, 55, 0.08);
  --shadow-lg: 0 10px 30px rgba(14, 75, 55, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   TOP HEADER BAR
   ========================================================================== */

.top-header {
  background-color: #ffffff;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
}

.top-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-text-container h1 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.brand-text-container p {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 2px;
}

.brand-text-container p span {
  color: var(--accent-green);
  margin: 0 4px;
}

/* Header Search Input */
.header-search-form {
  flex: 1;
  max-width: 480px;
  position: relative;
}

.header-search-form input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-full);
  background-color: #fcfdfe;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.header-search-form input:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(14, 75, 55, 0.1);
  background-color: #ffffff;
}

.header-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 14px;
}

/* Header Actions & Links */
.header-right-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.tagline-links {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14.5px;
  color: var(--primary-green);
  display: flex;
  gap: 8px;
}

.tagline-links span {
  color: var(--text-light);
  font-style: normal;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-green);
  color: #ffffff;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-login:hover {
  background-color: var(--primary-green-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   NAVIGATION BAR (GREEN BAR & TABS)
   ========================================================================== */

.main-navbar {
  background-color: var(--primary-green);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-tabs::-webkit-scrollbar {
  display: none;
}

.nav-tab-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  color: #dbebe3;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: var(--transition);
}

.nav-tab-item i {
  font-size: 14px;
}

.nav-tab-item:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.12);
}

.nav-tab-item.active {
  background-color: #ffffff;
  color: var(--primary-green);
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
}

/* ==========================================================================
   HERO CAROUSEL BANNER SECTION (3 MULTI-SLIDE ROTATOR)
   ========================================================================== */

.hero-section {
  position: relative;
  height: 440px;
  margin: 16px 0 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-slider-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-slide {
  width: 33.3333%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 44px;
}

.hero-left-card {
  max-width: 540px;
  color: #ffffff;
}

.hero-subtitle-small {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 2px;
  color: #e5f5ed;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-bullets {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #e2f5eb;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-italic-quote {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-size: 15.5px;
  color: #ffffff;
  margin-bottom: 24px;
  opacity: 0.95;
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-full);
  background-color: rgba(14, 75, 55, 0.65);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-explore:hover {
  background-color: var(--primary-green);
  border-color: #ffffff;
  transform: translateX(4px);
}

.hero-right-quote-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 28px 32px;
  border-radius: var(--radius-md);
  max-width: 320px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  color: var(--primary-green);
}

.hero-right-quote-card i {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--primary-green);
}

.hero-right-quote-card p {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
}

/* Hero Controls */
.hero-controls {
  position: absolute;
  bottom: 24px;
  right: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  width: 24px;
  border-radius: 12px;
  background-color: #ffffff;
}

.btn-hero-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  transition: var(--transition);
}

.btn-hero-nav:hover {
  background: var(--primary-green);
  border-color: #ffffff;
}

/* ==========================================================================
   QUICK SHORTCUT CATEGORY PILLS
   ========================================================================== */

.quick-shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.shortcut-card {
  background-color: #e5efe9;
  border-radius: var(--radius-sm);
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.shortcut-card i {
  font-size: 22px;
  color: var(--primary-green);
}

.shortcut-card span {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dark);
}

.shortcut-card:hover {
  background-color: #ffffff;
  border-color: var(--border-dark);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

/* ==========================================================================
   MAIN CONTENT GRID (HEIGHT FIXED TO NECESSARY CONTENT)
   ========================================================================== */

.main-three-col-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1.25fr;
  gap: 20px;
  margin-bottom: 28px;
  align-items: stretch;
}

.main-three-col-grid .section-card {
  height: 364px;
}

.main-three-col-grid .news-list,
.main-three-col-grid .directory-table-wrapper {
  flex: 1;
  overflow-y: auto;
  padding-right: 4px;
}

.section-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.section-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-green);
}

.section-header-title i {
  font-size: 18px;
  color: var(--primary-green);
}

.view-all-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-green);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.view-all-link:hover {
  color: var(--accent-green);
  text-decoration: underline;
}

/* Column 1: Announcements Vertical Scroller Ticker */
.announcements-ticker-wrapper {
  height: 280px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
}

.announcements-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: scrollVertical 14s linear infinite;
}

.announcements-ticker-wrapper:hover .announcements-list {
  animation-play-state: paused; /* Hover to pause scroller */
}

@keyframes scrollVertical {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background-color: #f7faf8;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.announcement-item:hover {
  background-color: #ffffff;
  border-color: var(--border-dark);
  box-shadow: var(--shadow-sm);
}

.date-badge {
  background-color: #e5ede8;
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  text-align: center;
  min-width: 48px;
}

.date-badge .day {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1;
}

.date-badge .month {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.announcement-title {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
}

.announcement-arrow {
  color: var(--text-light);
  font-size: 12px;
}

/* Column 2: News List */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-item {
  display: flex;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #edf2ef;
}

.news-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.news-thumb {
  width: 72px;
  height: 58px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.news-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.news-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.news-title:hover {
  color: var(--primary-green);
}

.news-date {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-green);
}

.news-snippet {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Column 3: Resident Directory Table */
.directory-search-box {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.directory-search-box input {
  flex: 1;
  padding: 7px 12px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  outline: none;
}

.directory-search-box button {
  background-color: var(--primary-green);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0 14px;
  cursor: pointer;
  transition: var(--transition);
}

.directory-search-box button:hover {
  background-color: var(--primary-green-hover);
}

.directory-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}

.directory-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  text-align: left;
}

.directory-table th {
  background-color: #f0f6f3;
  color: var(--primary-green);
  font-weight: 700;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border-color);
}

.directory-table td {
  padding: 7px 10px;
  border-bottom: 1px solid #f0f4f2;
  color: var(--text-dark);
}

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

.directory-table tr:hover {
  background-color: #f7faf8;
}

.post-tag {
  font-weight: 600;
  color: var(--primary-green);
}

/* ==========================================================================
   FOUNDER ANITA SHARMA FEATURED BANNER
   ========================================================================== */

.founder-feature-banner {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7f3 100%);
  border: 1px solid var(--border-dark);
  border-left: 5px solid var(--primary-green);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: var(--shadow-sm);
}

.founder-img-wrapper {
  position: relative;
  flex-shrink: 0;
}

.founder-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-green);
  box-shadow: var(--shadow-md);
}

.founder-badge {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 10px;
  white-space: nowrap;
}

.founder-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--primary-green);
  margin-bottom: 4px;
}

.founder-info h4 {
  font-size: 13px;
  color: var(--accent-green);
  font-weight: 600;
  margin-bottom: 8px;
}

.founder-info p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   OUR COMMUNITY MEMBERS SECTION
   ========================================================================== */

.members-section {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.members-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.members-header-text h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-green);
}

.members-header-text p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-left: 32px;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  text-align: center;
}

.member-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.member-card:hover {
  transform: translateY(-4px);
}

.member-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-dark);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.member-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.member-role {
  font-size: 11px;
  color: var(--text-muted);
}

/* ==========================================================================
   PHOTO GALLERY & BLOGS ROW
   ========================================================================== */

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.gallery-wrapper {
  position: relative;
}

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

.gallery-item {
  height: 130px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--primary-green);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  cursor: pointer;
  z-index: 5;
  box-shadow: var(--shadow-sm);
}

.gallery-nav-btn.prev { left: -14px; }
.gallery-nav-btn.next { right: -14px; }

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-2px);
}

.blog-img {
  width: 100%;
  height: 90px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.blog-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.blog-title:hover {
  color: var(--primary-green);
}

.blog-date {
  font-size: 11px;
  color: var(--text-muted);
}

/* ==========================================================================
   VALUES BANNER
   ========================================================================== */

.values-banner {
  background-color: #e5efe9;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.value-text h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.value-text p {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */

.site-footer {
  background-color: #0b3c2c;
  color: #e2ede8;
  padding-top: 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1.8fr 1.2fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(1.2);
}

.footer-logo-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.footer-logo-text p {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #a8cdbe;
}

.footer-links-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  font-size: 13px;
}

.footer-links-grid a {
  color: #c7ded5;
}

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

.footer-social-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--accent-green);
  transform: translateY(-2px);
}

.footer-quote-box {
  background-color: rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--accent-green);
  padding: 12px 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-size: 12.5px;
  color: #d1e5dc;
}

.footer-bottom {
  padding: 16px 0;
  font-size: 12px;
  color: #98b9ac;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   SUB-PAGES BANNER
   ========================================================================== */

.page-header-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(14, 75, 55, 0.85) 0%, rgba(8, 40, 29, 0.90) 100%),
              url('../assets/header-bg.png') center/cover no-repeat;
  color: #ffffff;
  padding: 44px 0;
  margin-bottom: 28px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.page-header-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.page-header-banner .container {
  position: relative;
  z-index: 2;
}

.page-header-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.3px;
}

.page-header-banner p {
  font-size: 14.5px;
  color: #e5f5ee;
  max-width: 680px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #c0e3d5;
  margin-top: 12px;
}

.breadcrumb a {
  color: #ffffff;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-card-panel {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}

/* ==========================================================================
   STAY CONNECTED - SOCIAL MEDIA WIDGETS SECTION (EXACT MATCH)
   ========================================================================== */

.stay-connected-section {
  margin: 36px 0;
  padding: 28px 20px;
  background-color: #f1f6f3;
  border-radius: var(--radius-lg);
  border: 1px solid #dbe6e0;
}

/* Header */
.stay-connected-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
  text-align: center;
}

.stay-connected-divider-line {
  flex: 1;
  max-width: 260px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a2c4b5, transparent);
}

.stay-connected-top-leaf {
  color: var(--primary-green);
  font-size: 18px;
  margin-bottom: 6px;
  display: inline-block;
}

.stay-connected-title-group h2 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--primary-green);
  line-height: 1.2;
}

.stay-connected-subtitle {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Grid Layout */
.social-widgets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.social-widget-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e1ebe5;
  box-shadow: 0 4px 18px rgba(14, 75, 55, 0.06);
  padding: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.social-widget-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(14, 75, 55, 0.1);
}

/* Leaf Corners Embellishment */
.card-leaf-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.7;
}

.card-leaf-corner.top-left {
  top: 6px;
  left: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231d7a5b'%3E%3Cpath d='M17 8C8 10 59 16.5 3 22C4 16 7 7 17 8Z'/%3E%3C/svg%3E");
}

.card-leaf-corner.bottom-right {
  bottom: 6px;
  right: 6px;
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231d7a5b'%3E%3Cpath d='M17 8C8 10 59 16.5 3 22C4 16 7 7 17 8Z'/%3E%3C/svg%3E");
}

/* Card Header */
.widget-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid #f0f5f2;
}

.widget-header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  flex-shrink: 0;
}

.yt-bg { background-color: #ff0000; }
.ig-bg { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.fb-bg { background-color: #1877f2; border-radius: 50%; }

.brand-header-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.1;
}

.brand-header-text span {
  font-size: 10.5px;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

.widget-view-link {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.widget-view-link:hover {
  color: var(--accent-green);
  text-decoration: underline;
}

/* --- YOUTUBE WIDGET BODY --- */
.yt-widget-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
  flex: 1;
}

.yt-main-video-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  min-height: 140px;
}

.yt-main-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.yt-play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  border: 2px solid #ffffff;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding-left: 2px;
  transition: var(--transition);
}

.yt-main-video-card:hover .yt-play-btn-overlay {
  background: #ff0000;
  border-color: #ff0000;
  transform: translate(-50%, -50%) scale(1.1);
}

.yt-duration-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
}

.yt-video-side-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
}

.yt-side-item {
  display: flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}

.yt-side-thumb-wrapper {
  position: relative;
  width: 54px;
  height: 38px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.yt-side-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yt-mini-duration {
  position: absolute;
  bottom: 2px;
  right: 2px;
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 1px 3px;
  border-radius: 2px;
}

.yt-side-info h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yt-side-item:hover .yt-side-info h4 {
  color: var(--primary-green);
}

.yt-date {
  font-size: 9.5px;
  color: var(--text-muted);
}

/* --- INSTAGRAM WIDGET BODY --- */
.ig-widget-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  justify-content: space-between;
}

.ig-photo-strip-container {
  position: relative;
}

.ig-photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.ig-thumb-square {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  transition: var(--transition);
}

.ig-thumb-square:hover {
  transform: scale(1.05);
}

.ig-strip-next-btn {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-dark);
  color: var(--primary-green);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.ig-strip-next-btn:hover {
  background: var(--primary-green);
  color: #ffffff;
}

.ig-quote-banner-box {
  background-color: #f3f8f5;
  border: 1px solid #d5e5dc;
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ig-banner-icon {
  font-size: 22px;
  color: var(--primary-green);
}

.ig-italic-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary-green);
  line-height: 1.2;
}

.ig-hashtags {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--accent-green);
  margin-top: 2px;
}

/* --- FACEBOOK WIDGET BODY --- */
.fb-widget-body {
  flex: 1;
}

.fb-posts-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fb-post-item {
  display: flex;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f5f2;
  text-decoration: none;
}

.fb-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fb-post-thumb {
  width: 52px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.fb-post-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fb-post-date {
  font-size: 10px;
  color: var(--text-muted);
}

.fb-post-title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 4px;
}

.fb-post-item:hover .fb-post-title {
  color: var(--primary-green);
}

.fb-post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
}

.fb-reactions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.reaction-icon {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #ffffff;
}

.like-icon { background-color: #1877f2; }
.heart-icon { background-color: #e74c3c; }

.reaction-count {
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 2px;
}

.fb-comments-count {
  color: var(--text-muted);
}

/* Footer Line Divider */
.stay-connected-footer-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.line-segment {
  flex: 1;
  max-width: 220px;
  height: 1px;
  background: #c5dcd1;
}

.footer-text-badge {
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-size: 12.5px;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-text-badge i {
  font-size: 12px;
}

