/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-green: #0d5c3a;
  --dark-green: #064e3b;
  --gold: #d97706;
  --gold-hover: #b45309;
  --accent-gold: #f59e0b;
  --bg-cream: #faf7f2;
  --text-main: #1f2937;
  --text-muted: #4b5563;
  --dark-bg: #0f172a;
  --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.6;
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
}

.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.bg-light { background-color: var(--bg-cream); }

/* --------------------------------------------------
 * ANNOUNCEMENT BAR
 * -------------------------------------------------- */
.announcement-bar {
  background: linear-gradient(90deg, #064e3b, #0d5c3a, #b45309);
  color: #ffffff;
  padding: 8px 15px;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
}

.announcement-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.announcement-bar .badge {
  background: var(--accent-gold);
  color: #000;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.announcement-link {
  color: #fef08a;
  text-decoration: none;
  font-weight: 600;
  margin-left: 5px;
  transition: color 0.2s;
}

.announcement-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* --------------------------------------------------
 * HEADER & NAVIGATION
 * -------------------------------------------------- */
.site-header {
  background-color: #ffffff;
  color: var(--text-main);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-bottom: 2px solid var(--gold);
}

.header-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

/* Logo Styling */
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-wrapper {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.brand-text-container {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary-green);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.brand-subtitle {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
}

/* Navigation Links */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 22px;
}

.main-nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 0;
  position: relative;
  transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-green);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--gold);
}

/* Header Contact Section */
.header-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(13, 92, 58, 0.08);
  color: var(--primary-green);
  padding: 8px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s;
}

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

.email-icon {
  color: var(--primary-green);
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(13, 92, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}

.email-icon:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
}

/* --------------------------------------------------
 * BUTTONS
 * -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--gold);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(217, 119, 6, 0.4);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: #000;
}

.btn-gold:hover {
  background-color: #eab308;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-outline-dark:hover {
  background-color: var(--primary-green);
  color: #ffffff;
}

.btn-lg {
  padding: 15px 35px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* --------------------------------------------------
 * HERO SLIDER (HOME PAGE)
 * -------------------------------------------------- */
.hero-slider {
  position: relative;
  height: 540px;
  overflow: hidden;
  background-color: var(--dark-bg);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  max-width: 900px;
  padding: 0 20px;
  text-align: center;
  color: #ffffff;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 12px;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 16px;
  border-radius: 20px;
  border: 1px solid var(--gold);
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.highlight-gold {
  color: #fbbf24;
}

.hero-description {
  font-size: 1.15rem;
  max-width: 750px;
  margin: 0 auto 28px auto;
  color: #e2e8f0;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s;
  z-index: 10;
}

.slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.prev-btn { left: 25px; }
.next-btn { right: 25px; }

/* --------------------------------------------------
 * PAGE BANNERS (SUBPAGES)
 * -------------------------------------------------- */
.page-banner {
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  color: #ffffff;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--accent-gold);
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

/* --------------------------------------------------
 * SECTIONS COMMON
 * -------------------------------------------------- */
.section {
  padding: 80px 20px;
}

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

.section-header {
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.section-subtitle.light {
  color: var(--accent-gold);
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-green);
  line-height: 1.3;
}

.section-title span {
  color: var(--gold);
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 15px 0 20px 0;
  color: var(--gold);
  font-size: 1.2rem;
}

.gold-divider::before, .gold-divider::after {
  content: '';
  height: 1px;
  width: 80px;
  background: var(--gold);
}

.gold-divider-left {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 15px 0 25px 0;
  color: var(--gold);
  font-size: 1.2rem;
}

.gold-divider-left::after {
  content: '';
  height: 1px;
  width: 100px;
  background: var(--gold);
}

.section-intro {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* --------------------------------------------------
 * ADVERTS & SPECIAL OFFERS SECTION (HOME)
 * -------------------------------------------------- */
.advert-section {
  background-color: var(--bg-cream);
}

.advert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.flyer-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 4px solid var(--primary-green);
}

.flyer-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold);
  color: #fff;
  padding: 5px 15px;
  font-weight: bold;
  font-size: 0.8rem;
  border-radius: 20px;
  z-index: 2;
}

.flyer-img {
  width: 100%;
  height: auto;
  display: block;
}

.advert-offer-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.offer-header {
  margin-bottom: 25px;
}

.launch-date-pill {
  display: inline-block;
  background: rgba(13, 92, 58, 0.1);
  color: var(--primary-green);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.offer-title {
  font-size: 1.8rem;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.main-promo-badge {
  background: linear-gradient(135deg, var(--gold), var(--accent-gold));
  color: #000;
  font-size: 1.8rem;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 10px;
}

.promo-sub {
  font-style: italic;
  color: var(--text-muted);
}

.advert-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.feature-pill {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-green);
}

.advert-cta-box {
  background: var(--dark-bg);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
}

.cta-heading {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.cta-contact-info {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 20px;
}

/* --------------------------------------------------
 * HOME - ABOUT OVERVIEW
 * -------------------------------------------------- */
.about-overview-section {
  background-color: #ffffff;
}

.about-overview-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.overview-lead {
  font-size: 1.2rem;
  color: var(--primary-green);
  font-weight: 500;
  margin-bottom: 20px;
}

.overview-body {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.about-overview-card {
  background: var(--bg-cream);
  padding: 40px;
  border-radius: 12px;
  border-left: 5px solid var(--gold);
  box-shadow: var(--card-shadow);
}

.card-icon-badge {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 15px;
}

.about-overview-card h3 {
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.mastery-mini-list {
  list-style: none;
}

.mastery-mini-list li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.mastery-mini-list i {
  color: var(--gold);
  margin-top: 4px;
}

/* --------------------------------------------------
 * HOME - PRODUCTS PREVIEW
 * -------------------------------------------------- */
.products-overview-section {
  background-color: var(--bg-cream);
}

.products-grid-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.product-preview-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
}

.preview-img-box {
  width: 40%;
}

.preview-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-card-body {
  width: 60%;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.preview-card-body h3 {
  font-size: 1.4rem;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.preview-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --------------------------------------------------
 * HOME - CONTACT OVERVIEW
 * -------------------------------------------------- */
.contact-overview-section {
  background-image: linear-gradient(135deg, rgba(6, 78, 59, 0.95), rgba(13, 92, 58, 0.95)), url('https://images.unsplash.com/photo-1542691457-cbe4df041eb2?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 100px 20px;
}

.contact-overview-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.3);
  padding: 50px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.contact-overview-text {
  max-width: 600px;
}

.contact-overview-text h2 {
  font-size: 2.2rem;
  margin: 10px 0 15px 0;
  color: #ffffff;
}

.contact-overview-text p {
  font-size: 1.1rem;
  color: #e2e8f0;
}

/* --------------------------------------------------
 * PRODUCTS PAGE
 * -------------------------------------------------- */
.yeito-section {
  background-color: var(--bg-cream);
}

.section-yeito-logo {
  max-width: 120px;
  height: auto;
  margin-bottom: 10px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.feature-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.feature-card.highlight-card {
  border-top: 4px solid var(--gold);
}

.feature-icon {
  width: 65px;
  height: 65px;
  background-color: rgba(13, 92, 58, 0.08);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px auto;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--primary-green);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Product Showcase Cards */
.products-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  margin-bottom: 50px;
}

.product-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}

.product-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-item:hover .product-img-wrapper img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-green);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}

.product-tag.specialty {
  background: var(--gold);
}

.product-details {
  padding: 25px;
}

.product-details h3 {
  font-size: 1.4rem;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.product-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-highlights li {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-highlights i {
  color: var(--gold);
}

/* Sample Callout Box */
.sample-callout-box {
  background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
  color: #ffffff;
  border-radius: 16px;
  padding: 35px 40px;
  box-shadow: 0 12px 30px rgba(6, 78, 59, 0.25);
}

.callout-content {
  display: flex;
  align-items: center;
  gap: 25px;
}

.callout-icon {
  font-size: 3rem;
  color: var(--accent-gold);
}

.callout-text h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.callout-text p {
  font-size: 0.95rem;
  color: #e2e8f0;
}

.callout-text a {
  color: #fbbf24;
  text-decoration: underline;
}

.callout-btn-wrap {
  margin-left: auto;
  white-space: nowrap;
}

/* --------------------------------------------------
 * ABOUT US - EXPERTISE & LEADERSHIP
 * -------------------------------------------------- */
.expertise-section {
  background-color: #ffffff;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.founder-card {
  background: var(--bg-cream);
  border-radius: 16px;
  padding: 40px 35px;
  border-left: 5px solid var(--gold);
  box-shadow: var(--card-shadow);
}

.founder-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
}

.founder-photo-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold);
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.founder-badge {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}

.founder-name {
  font-size: 1.7rem;
  color: var(--primary-green);
  line-height: 1.2;
}

.founder-title {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 500;
}

.bio-text p {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 25px;
}

.certifications-block h4 {
  font-size: 0.95rem;
  color: var(--primary-green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cert-tag {
  background: #ffffff;
  border: 1px solid rgba(13, 92, 58, 0.2);
  color: var(--primary-green);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cert-tag i {
  color: var(--gold);
}

/* Pillars Wrapper */
.pillars-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pillars-heading {
  font-size: 1.6rem;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.pillars-subtext {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.pillar-card {
  display: flex;
  gap: 20px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.pillar-card:hover {
  transform: translateX(5px);
  border-color: var(--gold);
}

.pillar-num {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  min-width: 40px;
}

.pillar-content h4 {
  font-size: 1.1rem;
  color: var(--primary-green);
  margin-bottom: 4px;
}

.pillar-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --------------------------------------------------
 * ABOUT US - HISTORY SECTION
 * -------------------------------------------------- */
.history-section p {
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.history-content-box {
  background: #ffffff;
  padding: 50px 60px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  border-top: 5px solid var(--primary-green);
}

/* --------------------------------------------------
 * ABOUT US - TEAM SECTION
 * -------------------------------------------------- */
.team-section {
  background-color: var(--bg-cream);
  padding: 70px 0;
}

.team-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(13, 92, 58, 0.12);
}

.team-img-wrapper {
  position: relative;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.team-showcase:hover .team-img-wrapper img {
  transform: scale(1.03);
}

.team-badge-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(6, 78, 59, 0.92);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(217, 119, 6, 0.4);
}

.team-badge-overlay i {
  color: var(--gold);
  font-size: 1rem;
}

.team-info-content {
  padding: 40px 50px 40px 20px;
}

.team-info-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--primary-green);
  margin-bottom: 16px;
  line-height: 1.3;
}

.team-info-content p {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.team-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.team-highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid var(--primary-green);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.team-highlight-item i {
  font-size: 1.2rem;
  color: var(--gold);
  min-width: 24px;
}

.team-highlight-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

@media (max-width: 992px) {
  .team-showcase {
    grid-template-columns: 1fr;
  }

  .team-img-wrapper {
    min-height: 320px;
    max-height: 420px;
  }

  .team-info-content {
    padding: 30px;
  }
}

/* --------------------------------------------------
 * ABOUT US - OFFICIAL FOUNDER'S LETTER
 * -------------------------------------------------- */
.letter-section {
  background-color: var(--bg-cream);
}

.letter-paper {
  background: #ffffff;
  max-width: 850px;
  margin: 0 auto;
  padding: 50px 60px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  position: relative;
}

.letter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--primary-green);
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.letter-logo img {
  max-height: 70px;
}

.letter-meta {
  text-align: right;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.letter-date {
  font-weight: 700;
  color: var(--primary-green);
}

.letter-subject {
  font-size: 1.05rem;
  color: var(--primary-green);
  background: rgba(13, 92, 58, 0.05);
  padding: 12px 18px;
  border-radius: 6px;
  margin-bottom: 25px;
  border-left: 4px solid var(--gold);
}

.letter-body {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-main);
}

.letter-body p {
  margin-bottom: 16px;
}

.letter-list {
  margin: 15px 0 25px 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.letter-list li {
  line-height: 1.5;
}

.letter-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #f3f4f6;
}

.signature-block {
  margin-top: 15px;
}

.signature-name {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-green);
}

.signature-role {
  font-weight: 600;
  color: var(--gold);
}

.signature-company {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --------------------------------------------------
 * CONTACT PAGE - SAMPLE BOOKING FORM
 * -------------------------------------------------- */
.sample-booking-section {
  background-color: var(--dark-bg);
  color: #ffffff;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.booking-info h2 {
  font-size: 2.2rem;
  margin: 12px 0 18px 0;
  color: #ffffff;
}

.booking-info p {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 30px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.method-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.method-item i {
  font-size: 1.4rem;
  color: var(--accent-gold);
}

.method-item strong {
  display: block;
  font-size: 0.8rem;
  color: #94a3b8;
  text-transform: uppercase;
}

.method-item a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
}

.method-item a:hover {
  color: var(--accent-gold);
}

.booking-form-card {
  background: #ffffff;
  color: var(--text-main);
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.booking-form-card h3 {
  font-size: 1.4rem;
  color: var(--primary-green);
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-success {
  margin-top: 18px;
  padding: 14px;
  background-color: #dcfce7;
  color: #166534;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
}

/* --------------------------------------------------
 * FOOTER
 * -------------------------------------------------- */
.site-footer {
  background-color: #090d16;
  color: #94a3b8;
  font-size: 0.85rem;
}

.gold-top-border {
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--gold), var(--accent-gold));
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 40px;
}

.footer-logo-block img {
  max-height: 60px;
  margin-bottom: 12px;
}

.footer-logo-block h2 {
  font-size: 1.1rem;
  color: #ffffff;
}

.footer-logo-block span {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--gold);
}

.footer-tagline {
  margin-top: 12px;
  font-style: italic;
  color: #cbd5e1;
}

.footer-col h3 {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.contact-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reach-label {
  font-size: 0.8rem;
  color: #64748b;
}

.footer-phone {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 700;
}

.footer-email, .footer-web {
  color: #e2e8f0;
  text-decoration: none;
}

.footer-email:hover, .footer-web:hover {
  color: var(--accent-gold);
}

.quicklinks-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quicklinks-col a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.quicklinks-col a:hover {
  color: #ffffff;
}

.sub-footer {
  border-top: 1px solid #1e293b;
  padding: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
}

/* --------------------------------------------------
 * RESPONSIVE BREAKPOINTS
 * -------------------------------------------------- */
@media (max-width: 1024px) {
  .features-grid, .products-showcase, .expertise-grid, .booking-wrapper, .footer-container {
    grid-template-columns: 1fr;
  }
  
  .advert-grid, .about-overview-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .callout-content {
    flex-direction: column;
    text-align: center;
  }

  .callout-btn-wrap {
    margin-left: 0;
  }

  .letter-paper {
    padding: 30px 25px;
  }
  
  .contact-overview-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .products-grid-preview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 12px;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    height: 480px;
  }
  
  .preview-card-body {
    width: 100%;
  }
  
  .preview-img-box {
    width: 100%;
    height: 200px;
  }
  
  .product-preview-card {
    flex-direction: column;
  }
}