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

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #1A3C34;      /* Deep Forest Green - Authority */
  --primary-light: #2A5C50;
  --secondary: #D9B99B;    /* Champagne/Sand - Luxury */
  --secondary-soft: #E5DED4;
  --bg-premium: #FAF9F6;   /* Off-white Pearl - Ease */
  --text-main: #111827;    /* Rich Ink */
  --text-muted: #4B5563;   /* Soft Charcoal */
  --slate-text: #1E293B;   /* Richer Slate */
  --muted: var(--text-muted);
  --sage: var(--primary);  /* Legacy compatibility */
  
  /* Additional Sage Tones */
  --sage-50: #F8FAF7;
  --sage-100: #E8F0E6;
  --sage-light: #88A47C;
  --sage-dark: #1A3C34;
  
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  --shadow-premium: 0 12px 40px rgba(0,0,0,0.03), 0 4px 12px rgba(0,0,0,0.02);
  --shadow-hover: 0 20px 60px rgba(26,60,52,0.1), 0 8px 24px rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);

  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 32px;
  --radius-pill: 100px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-premium);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(136,164,124,0.12);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(248, 250, 252, 0.98);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sage-light);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.nav-logo-title {
  font-size: 11px;
  color: var(--sage-dark);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background-color: var(--secondary-soft);
}

.nav-cta {
  background: var(--sage) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(136,164,124,0.3);
}

.nav-cta:hover {
  background: var(--sage-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(136,164,124,0.4) !important;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: none;
  border: none;
  transition: var(--transition);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary); /* Use primary dark color for visibility */
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--bg-premium);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(136,164,124,0.1);
  padding: 16px 24px 32px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-main);
  transition: var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--secondary-soft);
  color: var(--primary);
}

.mobile-menu .nav-cta-mobile {
  margin-top: 12px;
  text-align: center;
  background: var(--primary);
  color: white !important;
  border-radius: var(--radius-pill);
  font-weight: 600;
  padding: 16px;
  box-shadow: var(--shadow-md);
}

/* ===== PAGE WRAPPER ===== */
.page-content {
  padding-top: 72px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream) 0%, #EEF4EC 50%, #F8FAFC 100%);
  z-index: 0;
}

.hero-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: 0;
  animation: blob-float 8s ease-in-out infinite;
}

.hero-blob-1 {
  background: var(--sage-light);
  top: -100px;
  right: -100px;
}

.hero-blob-2 {
  background: #B8D4B0;
  bottom: -150px;
  left: -50px;
  animation-delay: -4s;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-20px) scale(1.05); }
  66% { transform: translate(-15px,15px) scale(0.97); }
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage-50);
  border: 1px solid var(--sage-100);
  border-radius: 50px;
  padding: 6px 16px 6px 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sage-dark);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 8px;
  line-height: 1.15;
}

.hero-title-accent {
  color: var(--sage-dark);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 26px);
  font-family: var(--font-heading);
  color: var(--sage-dark);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(26,60,52,0.15);
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(26,60,52,0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: white;
  color: var(--primary);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border: 1.5px solid var(--secondary-soft);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--bg-premium);
  border-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-premium);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-ring {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 2px dashed rgba(136,164,124,0.25);
  animation: ring-spin 20s linear infinite;
}

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-image-ring-2 {
  width: 370px;
  height: 370px;
  border-color: rgba(136,164,124,0.15);
  animation-direction: reverse;
  animation-duration: 15s;
}

.hero-image-card {
  position: relative;
  width: 340px;
  height: 420px;
  border-radius: 180px 180px 120px 120px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
  background: var(--sage-50);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-stats {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(136,164,124,0.15);
  min-width: 160px;
}

.hero-stats-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--sage-dark);
  line-height: 1;
}

.hero-stats-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}

.hero-stats-2 {
  bottom: auto;
  top: 30px;
  right: -30px;
  left: auto;
  min-width: 140px;
}

/* ===== HERO TAGS ===== */
.hero-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-tag {
  background: white;
  border: 1px solid rgba(136,164,124,0.15);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.hero-tag:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  color: var(--sage-dark);
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 80px 24px;
}

.section-sm {
  padding: 60px 24px;
}

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

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 12px;
  background: var(--sage-50);
  padding: 4px 14px;
  border-radius: 50px;
  border: 1px solid var(--sage-100);
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== INSTAGRAM EMBEDS ===== */
.instagram-section {
  background: white;
  padding: 80px 24px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

@media (max-width: 640px) {
  .instagram-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .video-item.mobile-hidden {
    display: none;
  }
  
  .video-item.mobile-hidden.show {
    display: block;
  }
}

.instagram-embed-wrapper {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(136,164,124,0.1);
  transition: var(--transition);
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.instagram-embed-wrapper:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.instagram-embed-wrapper blockquote.instagram-media {
  border: none !important;
  box-shadow: none !important;
  min-width: 100% !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* ===== SERVICE CARDS ===== */
.services-section {
  background: var(--sage-50);
  padding: 80px 24px;
}

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

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(136,164,124,0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-light), var(--sage));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(136,164,124,0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--sage-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--sage-100);
  transform: scale(1.1);
}

.service-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sage-dark);
  text-decoration: none;
}

.service-card .service-link {
  color: var(--sage-dark);
}

/* ===== APPROACH SECTION ===== */
.approach-section {
  padding: 80px 24px;
  background: white;
}

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

.approach-image {
  position: relative;
}

.approach-image-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.approach-badge-float {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(136,164,124,0.15);
}

.approach-badge-icon {
  font-size: 28px;
  margin-bottom: 6px;
}

.approach-badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-text);
}

.approach-badge-sub {
  font-size: 11px;
  color: var(--muted);
}

.approach-content h2 {
  font-size: clamp(26px, 3vw, 38px);
  color: #1E293B;
  margin-bottom: 16px;
}

.approach-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.approach-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.approach-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--slate-text);
  font-weight: 500;
}

.approach-list-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--sage-50) 0%, #EEF4EC 100%);
  padding: 80px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(136,164,124,0.1);
  filter: blur(60px);
}

.page-hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-hero-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ===== ABOUT PAGE ===== */
.about-main {
  padding: 80px 24px;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: start;
}

.about-image-wrap {
  position: sticky;
  top: 100px;
}

.about-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
}

.about-image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
}

.about-credential-card {
  background: var(--sage-50);
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1px solid var(--sage-100);
}

.about-credential-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 12px;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--slate-text);
}

.credential-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  margin-top: 5px;
  flex-shrink: 0;
}

.about-content h2 {
  font-size: clamp(26px, 3vw, 36px);
  color: #1E293B;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
}

.about-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--sage);
  border-radius: 2px;
}

.about-content h3 {
  font-size: 20px;
  color: #1E293B;
  margin: 32px 0 12px;
  font-family: var(--font-heading);
}

.about-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.expertise-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--sage-50);
  border: 1px solid var(--sage-100);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-text);
}

.expertise-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

/* New About Enrichment Styles */
.about-signature-quote {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-premium);
    border-left: 4px solid var(--secondary);
    border-radius: 0 var(--radius) var(--radius) 0;
    position: relative;
    font-style: italic;
    box-shadow: var(--shadow-premium);
}

.about-signature-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 60px;
    color: var(--secondary);
    opacity: 0.2;
    font-family: serif;
}

.about-signature-text {
    font-size: 18px;
    color: var(--primary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-signature-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
    display: block;
}

.about-signature-title {
    font-size: 13px;
    color: var(--muted);
}

/* ===== SERVICES PAGE ===== */
.services-detail {
  padding: 80px 24px;
  background: white;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid rgba(136,164,124,0.12);
}

.service-detail-card:last-child {
  border-bottom: none;
}

.service-detail-card.reverse {
  direction: rtl;
}

.service-detail-card.reverse > * {
  direction: ltr;
}

.service-detail-visual {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(136,164,124,0.1);
}

.service-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-detail-card:hover .service-detail-visual img {
  transform: scale(1.05);
}

.service-detail-num {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  display: inline-block;
  background: var(--sage-50);
  padding: 4px 14px;
  border-radius: 50px;
  border: 1px solid var(--sage-100);
  margin-bottom: 16px;
}

.service-detail-title {
  font-size: clamp(24px, 2.5vw, 32px);
  color: #1E293B;
  margin-bottom: 16px;
}

.service-detail-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--slate-text);
  line-height: 1.5;
}

.service-feature-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 11px;
  margin-top: 1px;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 80px 24px;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--sage-50);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--sage-100);
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: #1E293B;
  margin-bottom: 8px;
}

.contact-info-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  border: 1px solid rgba(136,164,124,0.15);
}

.contact-item-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 14px;
  color: var(--slate-text);
  font-weight: 500;
  line-height: 1.5;
}

.contact-item-value a {
  color: var(--slate-text);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item-value a:hover {
  color: var(--sage-dark);
}

/* ===== FORM ===== */
.contact-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(136,164,124,0.1);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: #1E293B;
  margin-bottom: 8px;
}

.form-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

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

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

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-text);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--slate-text);
  background: white;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(136,164,124,0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #CBD5E1;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  -webkit-appearance: none;
  appearance: none;
}


.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--sage);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  box-shadow: 0 4px 16px rgba(136,164,124,0.3);
}

.form-submit:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(136,164,124,0.4);
}

.success-message {
  display: none;
  background: var(--sage-50);
  border: 1px solid var(--sage-100);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  margin-top: 16px;
}

.success-message.show {
  display: block;
}

.success-message p {
  color: var(--sage-dark);
  font-weight: 600;
  font-size: 15px;
}

/* ===== MAP ===== */
.map-section {
  padding: 0 24px 80px;
  background: white;
}

.map-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
  border: 1px solid rgba(136,164,124,0.15);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: #1E293B;
  color: #94A3B8;
  padding: 60px 24px 32px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(136,164,124,0.3);
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 16px;
  color: #F1F5F9;
  font-weight: 600;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #94A3B8;
  font-size: 16px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--sage);
  color: white;
}

.footer-nav-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #CBD5E1;
  margin-bottom: 16px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  text-decoration: none;
  color: #64748B;
  font-size: 14px;
  transition: var(--transition);
}

.footer-nav-list a:hover {
  color: var(--sage-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: #64748B;
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--sage-light);
}

/* ===== KVKK BANNER ===== */
.kvkk-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: #1E293B;
  color: #CBD5E1;
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  max-width: 580px;
  width: calc(100% - 48px);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  line-height: 1.5;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.kvkk-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
}

.kvkk-text a {
  color: var(--sage-light);
  text-decoration: underline;
}

.kvkk-btn {
  padding: 8px 20px;
  background: var(--sage);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-body);
  transition: var(--transition);
}

.kvkk-btn:hover {
  background: var(--sage-dark);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--sage-50);
  padding: 80px 24px;
}

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

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(136,164,124,0.08);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-stars {
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--slate-text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--sage-dark);
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-text);
}

.testimonial-role {
  font-size: 12px;
  color: var(--muted);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 24px;
  background: white;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(136,164,124,0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #1E293B;
  transition: var(--transition);
  gap: 16px;
}

.faq-question:hover {
  color: var(--sage-dark);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sage-50);
  border: 1px solid var(--sage-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  transition: var(--transition);
  color: var(--sage-dark);
  font-weight: 400;
}

.faq-item.open .faq-icon {
  background: var(--sage);
  border-color: var(--sage);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ===== ANIMATE ON SCROLL ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image-wrapper {
    order: -1;
  }

  .hero-image-ring {
    width: 320px;
    height: 320px;
  }

  .hero-image-ring-2 {
    width: 280px;
    height: 280px;
  }

  .hero-image-card {
    width: 260px;
    height: 320px;
  }

  .hero-stats {
    left: 50%;
    transform: translateX(-120%);
    bottom: -10px;
  }

  .hero-stats-2 {
    right: 50%;
    transform: translateX(90%);
    top: 10px;
  }

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

  .approach-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .about-image-wrap {
    position: static;
  }

  .about-image-card img {
    height: 380px;
  }

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

  .service-detail-card.reverse {
    direction: ltr;
  }

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

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

  .instagram-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 540px;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section, .section-sm {
    padding: 60px 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .service-card {
    padding: 24px 16px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px 80px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }

  .hero-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0 auto 32px;
    width: 100%;
  }

  .hero-image-ring,
  .hero-image-ring-2 {
    display: none;
  }

  .hero-stats,
  .hero-stats-2 {
    display: none;
  }

  .hero-image-card {
    width: 260px;
    height: 320px;
    margin: 0 auto;
  }

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

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

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

  .map-wrapper {
    height: 300px;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 16px;
  }

  .hero-container {
    padding: 60px 16px;
  }

  .hero-title {
    font-size: 28px;
  }

  .kvkk-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== FLOATING BUTTONS ===== */
.floating-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.float-whatsapp {
  background-color: #25D366;
}

.float-phone {
  background-color: var(--sage);
}

@media (max-width: 480px) {
  .floating-contact {
    bottom: 16px;
    right: 16px;
  }
  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}



/* ===== ACADEMIC EDUCATION ===== */
.academic-section {
  padding: 80px 24px;
}

.academic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.academic-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    border: 1px solid rgba(136,164,124,0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.academic-card::after {
    content: '\f19d'; /* graduation cap icon from font awesome */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 80px;
    color: var(--sage-50);
    opacity: 0.5;
    transform: rotate(-15deg);
    transition: var(--transition);
}

.academic-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
    border-color: var(--sage-200);
}

.academic-card:hover::after {
    transform: rotate(0deg) scale(1.1);
    color: var(--sage-100);
}

.academic-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--sage-50);
    color: var(--sage-dark);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
    width: fit-content;
    border: 1px solid var(--sage-100);
}

.academic-uni {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.academic-program {
    font-size: 15px;
    color: var(--muted);
    font-weight: 500;
}

/* ===== PROFESSIONAL TRAINING ===== */
.professional-section {
    padding: 60px 24px;
    background: #F8FAFC;
}

.professional-card {
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}

.professional-title {
    font-size: 24px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 24px;
}

.professional-category {
    background: #EDF2F7;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    color: #2D3748;
    margin: 24px 0 16px;
    font-size: 15px;
    border-left: 4px solid var(--sage);
}

.training-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.training-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #4A5568;
    line-height: 1.6;
}

.training-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ECC94B;
    margin-top: 8px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .academic-grid {
        grid-template-columns: 1fr;
    }
    .professional-card {
        padding: 24px;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 24px;
  background: white;
}

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

.faq-item {
  border-bottom: 1px solid #E2E8F0;
  padding: 24px 0;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  padding: 0;
  color: #1A202C;
  font-size: 18px;
  font-weight: 600;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #4A5568;
  font-size: 15px;
  line-height: 1.6;
}

.faq-answer p {
  padding-top: 16px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-icon {
  margin-left: 16px;
  transition: transform 0.3s ease;
  color: var(--sage);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 16px;
  }
}

/* ===== BLOG SECTION ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(136,164,124,0.1);
  display: flex;
  flex-direction: column;
}

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

.blog-image-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: var(--sage-dark);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.blog-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1A202C;
  line-height: 1.4;
  font-family: var(--font-heading);
}

.blog-card-excerpt {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3; /* Standard property for compatibility */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  margin-top: auto;
  color: var(--sage);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.blog-card:hover .blog-read-more {
  gap: 12px;
}

/* Category Filter Tabs */
.blog-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  background: white;
  border: 1px solid #E2E8F0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--sage);
  color: white;
  border-color: var(--sage);
  box-shadow: 0 4px 12px rgba(136,164,124,0.2);
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ===== YOUTUBE / MEDIA SECTION ===== */
.media-section {
  padding: 100px 24px;
  background: white;
  border-bottom: 1px solid #F1F5F9;
}

.featured-video-container {
  max-width: 1000px;
  margin: 0 auto 60px;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(136,164,124,0.15);
}

.video-responsive-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.video-responsive-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.featured-video-content {
  padding: 32px 40px;
  text-align: center;
}

.featured-video-tag {
  display: inline-block;
  background: #FEF2F2;
  color: #DC2626;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.featured-video-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1A202C;
  margin-bottom: 16px;
  line-height: 1.2;
}

.featured-video-desc {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.yt-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

@media (max-width: 1024px) {
  .youtube-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .featured-video-content {
    padding: 24px;
  }
  .featured-video-title {
    font-size: 1.5rem;
  }
  .youtube-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PREMIUM VIDEO PLACEHOLDER ===== */
.video-placeholder {
  cursor: pointer;
  background: #000;
}

.video-cover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(26, 60, 52, 0.4); /* Primary green with transparency */
  transition: var(--transition);
  z-index: 2;
}

.video-responsive-wrap:hover .video-cover-overlay {
  background: rgba(26, 60, 52, 0.6);
}

.video-cover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: var(--transition);
}

.video-responsive-wrap:hover .video-cover-img {
  transform: scale(1.05);
}

.play-button-premium {
  width: 90px;
  height: 90px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
  box-shadow: 0 0 0 0 rgba(217, 185, 155, 0.4);
  transition: var(--transition);
  animation: pulse-play 2s infinite;
  z-index: 3;
}

.video-responsive-wrap:hover .play-button-premium {
  transform: scale(1.1);
  background: white;
  color: var(--primary);
}

.video-cta-text {
  color: white;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 3;
}

@keyframes pulse-play {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(217, 185, 155, 0.6); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(217, 185, 155, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(217, 185, 155, 0); }
}
/* ===== BLOG DETAIL PAGE ===== */
.blog-post-header {
  padding: 120px 0 60px;
  background: var(--sage-50);
  text-align: center;
}

.blog-post-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
  color: #64748b;
  font-size: 14px;
}

.blog-post-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  max-width: 900px;
  margin: 0 auto 30px;
  line-height: 1.2;
}

.blog-post-hero-image {
  max-width: 1000px;
  margin: -40px auto 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 10;
}

.blog-post-hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.blog-post-container {
  max-width: 800px;
  margin: 0 auto 100px;
  padding: 0 24px;
}

.blog-post-content {
  font-size: 18px;
  line-height: 1.8;
  color: #334155;
}

.blog-post-content h2 {
  font-size: 32px;
  margin: 48px 0 24px;
  color: var(--primary);
  font-weight: 700;
}

.blog-post-content h3 {
  font-size: 24px;
  margin: 32px 0 16px;
  color: var(--primary);
  font-weight: 600;
}

.blog-post-content p {
  margin-bottom: 24px;
}

.blog-post-content blockquote {
  margin: 40px 0;
  padding: 30px;
  border-left: 4px solid var(--sage-200);
  background: var(--sage-50);
  font-style: italic;
  font-size: 20px;
  color: var(--primary);
}

.blog-post-content ul, .blog-post-content ol {
  margin-bottom: 24px;
  padding-left: 20px;
}

.blog-post-content li {
  margin-bottom: 12px;
}

.blog-post-share {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .blog-post-header {
    padding: 100px 20px 40px;
  }
  .blog-post-title {
    font-size: 32px;
  }
  .blog-post-hero-image {
    margin-top: 0;
    border-radius: 0;
  }
  .blog-post-hero-image img {
    height: 300px;
  }
  .blog-post-content {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .play-button-premium {
    width: 70px;
    height: 70px;
    font-size: 24px;
  }
  .video-cta-text {
    font-size: 14px;
  }
}
