/*
 * ===================================================================
 * Diyetisyen Fulya Sarı - Modern & Premium Design System (2026)
 * ===================================================================
 */

/* ===== 1. Design Tokens & CSS Variables ===== */
:root {
  /* Brand Colors — Modern Premium Wellness */
  --primary: #315C45;
  --primary-dark: #10291F;
  --primary-light: #4A7A5C;
  --primary-soft: #E8F1EB;

  --accent: #D98A5F;
  --accent-dark: #B86A45;
  --accent-light: #F8E6DC;

  /* Neutral Colors — Warm Ivory Palette */
  --white: #FFFFFF;
  --cream: #FFF9F0;
  --bg: #FBF5EA;
  --bg-alt: #F2E8D8;

  --text: #241F1A;
  --text-light: #5F564C;
  --text-muted: #948A7D;

  --border: #E0D6C8;
  --border-light: #EDE7DE;
  --card-bg: #FFFDF8;

  /* Utility Colors */
  --success: #4A7C5C;
  --error: #C4443C;

  /* Accent Color System — Canlı, Premium */
  --color-coral: #D96C5F;
  --color-coral-light: #F8E1DD;
  --color-coral-dark: #B94F43;
  --color-amber: #C99A4A;
  --color-amber-light: #F4E6CA;
  --color-amber-dark: #9A7130;
  --color-sky: #4F94A5;
  --color-sky-light: #DDEFF3;
  --color-sky-dark: #347181;
  --color-sage: #4F7A5E;
  --color-sage-light: #E2EEE6;
  --color-sage-dark: #315C45;

  /* Layout Spacing */
  --container-max: 1200px;
  --header-top-h: 38px;
  --navbar-h: 76px;
  --navbar-h-scrolled: 64px;

  /* Border Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Shadows — Warmer, deeper */
  --shadow-sm: 0 2px 8px rgba(16, 41, 31, 0.04);
  --shadow-md: 0 10px 24px -10px rgba(16, 41, 31, 0.06);
  --shadow-lg: 0 20px 40px -15px rgba(16, 41, 31, 0.08);
  --shadow-xl: 0 30px 60px -20px rgba(16, 41, 31, 0.12);
  --shadow-card: 0 12px 30px -12px rgba(16, 41, 31, 0.04);
  --shadow-card-hover: 0 24px 48px -12px rgba(217, 138, 95, 0.08), 0 8px 16px -8px rgba(16, 41, 31, 0.04);
  --shadow-glow: 0 0 20px rgba(217, 138, 95, 0.14);

  /* Fonts */
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Cormorant Garamond', Georgia, serif;

  /* Animations & Transitions */
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== 2. Base Reset & Defaults ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  font-size: 17px;
  font-weight: 400;
  overflow-x: hidden;
  max-width: 100vw;
  background-image: radial-gradient(ellipse at 50% 0%, rgba(217, 138, 95, 0.05) 0%, transparent 60%);
  background-attachment: fixed;
}

::selection {
  background: var(--primary);
  color: var(--white);
}
::moz-selection {
  background: var(--primary);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-alt);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border: 2px solid var(--bg-alt);
  border-radius: var(--radius-full);
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  transition: var(--transition);
}

/* Form Inputs styling */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  width: 100%;
  background: var(--bg);
  color: var(--text);
  transition: var(--transition);
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-coral);
  box-shadow: 0 0 0 4px rgba(217, 108, 95, 0.06);
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--color-amber);
  box-shadow: 0 0 0 4px rgba(217, 138, 95, 0.08);
}
input:hover, textarea:hover, select:hover {
  border-color: var(--text-muted);
}
textarea {
  resize: vertical;
  min-height: 130px;
}
select {
  appearance: none;
  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='%235C6460' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

/* ===== 3. Typography & Titles ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ===== 4. Containers & Grid layout ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* ===== 5. Section Base Styles ===== */
.section {
  padding: 110px 0;
  position: relative;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-dark);
  margin-bottom: 16px;
  background: var(--accent-light);
  padding: 5px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(217, 138, 95, 0.08);
}
.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(217, 138, 95, 0.4);
  flex-shrink: 0;
}
.about .section-tag { background: var(--color-coral-light); color: var(--color-coral-dark); border-color: rgba(217, 108, 95, 0.10); }
.about .section-tag::before { background: var(--color-coral); box-shadow: 0 0 6px rgba(217, 108, 95, 0.4); }
.process .section-tag { background: var(--color-sky-light); color: var(--color-sky-dark); border-color: rgba(79, 148, 165, 0.10); }
.process .section-tag::before { background: var(--color-sky); box-shadow: 0 0 6px rgba(79, 148, 165, 0.4); }
.services .section-tag { background: var(--color-amber-light); color: var(--color-amber-dark); border-color: rgba(217, 138, 95, 0.10); }
.services .section-tag::before { background: var(--color-amber); box-shadow: 0 0 6px rgba(217, 138, 95, 0.4); }
.blog .section-tag { background: var(--color-coral-light); color: var(--color-coral-dark); border-color: rgba(217, 108, 95, 0.10); }
.blog .section-tag::before { background: var(--color-coral); box-shadow: 0 0 6px rgba(217, 108, 95, 0.4); }
.faq .section-tag { background: var(--color-sage-light); color: var(--color-sage-dark); border-color: rgba(79, 122, 94, 0.10); }
.faq .section-tag::before { background: var(--color-sage); box-shadow: 0 0 6px rgba(79, 122, 94, 0.4); }
.contact .section-tag { background: var(--color-sky-light); color: var(--color-sky-dark); border-color: rgba(79, 148, 165, 0.10); }
.contact .section-tag::before { background: var(--color-sky); box-shadow: 0 0 6px rgba(79, 148, 165, 0.4); }

.section-title {
  font-size: clamp(32px, 3.6vw, 48px);
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.8;
  font-weight: 400;
}
.section-header.center .section-subtitle {
  margin: 0 auto;
}

.bg-light {
  background: var(--bg-alt);
}

/* SVG dividers */
.section-divider {
  position: relative;
  height: 40px;
  overflow: hidden;
  margin-top: -1px;
  z-index: 2;
}
.section-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}
.section-divider.flip {
  transform: rotate(180deg);
}

/* ===== 6. Button System ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  font-size: 15.5px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(49, 92, 69, 0.12);
}
.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(49, 92, 69, 0.18);
}
.btn-primary:hover i, .btn-primary:hover svg {
  transform: translateX(4px);
}
.btn-primary:active {
  transform: translateY(-1px) scale(1);
}

.btn-outline {
  background: var(--white);
  border: 1.5px solid var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 18px rgba(49, 92, 69, 0.10);
}
.btn-outline:hover i, .btn-outline:hover svg {
  transform: translateX(4px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 17px;
  border-radius: var(--radius);
}
.btn-block {
  width: 100%;
}

/* Inline chevron slides in button on hover */
.btn i, .btn svg {
  transition: transform 0.3s var(--ease-out-expo);
}
.btn:hover i[data-lucide="arrow-right"],
.btn:hover svg[data-lucide="arrow-right"] {
  transform: translateX(4px);
}

/* ===== 7. Header Top Bar ===== */
.header {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Header Top - Premium --- */
.header-top {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.82);
  font-size: 11.5px;
  font-weight: 500;
  height: var(--header-top-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
  overflow: hidden;
  letter-spacing: 0.01em;
}
.header-top::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(217,138,95,0.3) 0%, rgba(217,138,95,0.05) 50%, transparent 100%);
}
.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 0;
}
.header-top-left {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
  min-width: 0;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.header-top-left i {
  color: var(--accent);
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(217,138,95,0.4));
  animation: sparklePulse 3s ease-in-out infinite;
}
@keyframes sparklePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.12); }
}
.header-top-center {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
  min-width: 0;
  text-align: center;
  padding: 0 12px;
  color: var(--accent-light);
  letter-spacing: 0.04em;
  font-size: 12px;
  font-weight: 500;
  text-shadow: 0 0 20px rgba(217,138,95,0.15);
}
.header-top-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
  font-weight: 500;
  font-size: 11.5px;
  transition: var(--transition);
  position: relative;
}
.header-phone:hover {
  color: var(--accent);
}
.header-phone::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}
.header-phone:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header-top-divider {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.08);
}
.header-social-group {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-top-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  transition: all 0.35s var(--ease-out-expo);
}
.header-top-social:hover {
  background: rgba(217,138,95,0.15);
  color: var(--accent);
  border-color: rgba(217,138,95,0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217,138,95,0.15);
}
.header-top-social:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== 8. Navbar - Premium Glass ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 249, 240, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(217, 138, 95, 0.06);
  transition: var(--transition);
}
.navbar::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,138,95,0.08), transparent);
  pointer-events: none;
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(16, 41, 31, 0.05);
  background: rgba(255, 249, 240, 0.95);
  border-bottom-color: transparent;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--navbar-h);
  padding-top: 4px;
  padding-bottom: 4px;
  box-sizing: border-box;
  transition: var(--transition);
}
.navbar.scrolled .container {
  height: var(--navbar-h-scrolled);
}

/* --- Logo --- */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  padding: 4px 0;
}
.logo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}
.nav-logo {
  max-height: 58px;
  width: auto;
  transition: var(--transition);
}
.navbar.scrolled .nav-logo {
  max-height: 44px;
}

/* --- Hamburger Toggle (mobile) --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 5px;
  padding: 10px;
  z-index: 1001;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(44,40,34,0.06);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition);
  min-width: 44px;
  min-height: 44px;
}
.nav-toggle:hover {
  background: rgba(255,255,255,0.85);
  border-color: rgba(217,138,95,0.15);
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
  width: 20px;
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
  width: 20px;
}

/* --- Nav Menu (Desktop) --- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu > li {
  display: flex;
  align-items: center;
  position: relative;
}
.nav-menu > li:not(.nav-cta-wrap):not(.nav-menu-footer):not(.nav-menu-header) > a {
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  transition: color 0.3s var(--ease-out-expo), background 0.3s var(--ease-out-expo);
}
.nav-menu > li:not(.nav-cta-wrap):not(.nav-menu-footer):not(.nav-menu-header) > a::before {
  content: '';
  position: absolute;
  inset: 4px 6px;
  border-radius: 6px;
  background: rgba(49, 92, 69, 0.04);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.3s var(--ease-out-expo), transform 0.3s var(--ease-out-expo);
  z-index: -1;
}
.nav-menu > li:not(.nav-cta-wrap):not(.nav-menu-footer):not(.nav-menu-header) > a:hover::before,
.nav-menu > li:not(.nav-cta-wrap):not(.nav-menu-footer):not(.nav-menu-header) > a.active::before {
  opacity: 1;
  transform: scale(1);
}
.nav-menu > li:not(.nav-cta-wrap):not(.nav-menu-footer):not(.nav-menu-header) > a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease-out-expo);
}
.nav-menu > li:not(.nav-cta-wrap):not(.nav-menu-footer):not(.nav-menu-header) > a:hover::after,
.nav-menu > li:not(.nav-cta-wrap):not(.nav-menu-footer):not(.nav-menu-header) > a.active::after {
  transform: scaleX(1);
}
.nav-menu > li:not(.nav-cta-wrap):not(.nav-menu-footer):not(.nav-menu-header) > a:hover {
  color: var(--primary);
}
.nav-menu > li:not(.nav-cta-wrap):not(.nav-menu-footer):not(.nav-menu-header) > a.active {
  color: var(--primary);
  font-weight: 600;
}
.nav-menu > li:not(.nav-cta-wrap):not(.nav-menu-footer):not(.nav-menu-header) > a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.has-mega:hover > a > i,
.has-mega.open > a > i {
  transform: rotate(180deg);
}

/* --- Mega Menu - Premium --- */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: rgba(255,253,248,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px -12px rgba(16,41,31,0.08), 0 8px 16px -8px rgba(16,41,31,0.04);
  border: 1px solid rgba(217,138,95,0.06);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease-out-expo);
  min-width: 680px;
  z-index: 100;
  pointer-events: none;
}
.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(8px);
  pointer-events: auto;
}
.mega-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  padding: 28px 24px;
  gap: 0;
}
.mega-col {
  padding: 8px 16px;
}
.mega-col:not(:last-child) {
  border-right: 1px solid rgba(217,138,95,0.06);
}
.mega-col h4 {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.mega-col a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 13.5px;
  color: var(--text-light);
  border-radius: var(--radius-xs);
  transition: var(--transition);
}
.mega-col a:hover {
  color: var(--primary);
  transform: translateX(5px);
}
.mega-col a i {
  color: var(--color-sage);
  flex-shrink: 0;
  transition: var(--transition);
}
.mega-col a:hover i {
  color: var(--accent);
}
.mega-cta {
  background: linear-gradient(135deg, rgba(49,92,69,0.03), rgba(217,138,95,0.03));
  border-radius: var(--radius);
  padding: 18px !important;
  border-right: none !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mega-cta h4 {
  color: var(--primary);
}
.mega-cta p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.6;
}
.mega-cta .btn {
  padding: 11px 18px;
  font-size: 14px;
  border-radius: var(--radius-sm);
}

/* --- Nav CTA Button - Premium --- */
.nav-cta-wrap {
  padding-left: 16px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 16px rgba(49,92,69,0.15), 0 0 0 1px rgba(217,138,95,0.06);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217,138,95,0.12), transparent 60%);
  opacity: 0;
  transition: var(--transition);
  border-radius: inherit;
}
.nav-cta:hover::before {
  opacity: 1;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(49,92,69,0.2), 0 0 0 1px rgba(217,138,95,0.1), 0 0 24px rgba(217,138,95,0.06);
}
.nav-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.nav-cta i {
  color: var(--accent);
  flex-shrink: 0;
  transition: var(--transition);
}
.nav-cta:hover i {
  color: #F0C8A0;
  transform: scale(1.1);
}

/* --- Mobile-only elements (hidden on desktop) --- */
.nav-menu > li.nav-menu-header,
.nav-menu > li.nav-menu-footer {
  display: none;
}

/* ===== 9. Scroll Progress ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  z-index: 9999;
  width: 0;
  transition: width 0.1s linear;
}

/* ===== 10. Hero Slider Section ===== */
.hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  background: var(--primary-dark);
  margin-top: -1px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 70% 20%, rgba(217, 138, 95, 0.12) 0%, transparent 50%),
                    radial-gradient(ellipse at 30% 80%, rgba(217, 108, 95, 0.06) 0%, transparent 40%),
                    radial-gradient(ellipse at 50% 50%, rgba(79, 148, 165, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 1.4s;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04) brightness(0.92);
  transition: transform 10s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s ease;
  will-change: transform;
}
.hero-slide.active .hero-slide-bg {
  transform: scale(1);
  filter: saturate(1.12) contrast(1.06) brightness(0.95);
}
.hero-slide-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 80% at 18% 50%, rgba(16, 41, 31, 0.55) 0%, transparent 62%),
    radial-gradient(ellipse 70% 60% at 85% 20%, rgba(217, 138, 95, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, rgba(16, 41, 31, 0.35) 0%, transparent 28%, transparent 72%, rgba(16, 41, 31, 0.45) 100%);
}
.hero-cinematic-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(16, 41, 31, 0.88) 0%, rgba(16, 41, 31, 0.42) 42%, rgba(16, 41, 31, 0.08) 68%, rgba(255, 249, 240, 0.04) 100%),
    radial-gradient(ellipse at 72% 18%, rgba(217, 138, 95, 0.22) 0%, transparent 52%),
    radial-gradient(ellipse at 28% 82%, rgba(217, 108, 95, 0.14) 0%, transparent 48%),
    radial-gradient(ellipse at 50% 100%, rgba(49, 92, 69, 0.12) 0%, transparent 40%);
}

/* Backdrop Glow Behind Panel */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 40px;
}
.hero-content::before {
  content: '';
  position: absolute;
  left: -100px;
  top: 5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(217, 138, 95, 0.15) 0%, rgba(79, 148, 165, 0.07) 30%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.hero-slide.active .hero-content::before {
  opacity: 1;
}

/* ==========================================================
   HERO PANEL — Premium Wellness Glass
   Katmanli background: warm ivory + amber glow TR + coral BL + sky soft
   Gradient border via mask, decorative rings, radial glow
   ========================================================== */
.hero-panel {
  position: relative;
  max-width: 640px;
  padding: 0;
  border-radius: 32px;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translateY(48px) scale(0.94);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: visible;
}
.hero-panel-inner {
  position: relative;
  z-index: 2;
  padding: 52px 48px;
  border-radius: 32px;
  background:
    radial-gradient(ellipse at 92% 8%, rgba(217, 138, 95, 0.14) 0%, transparent 48%),
    radial-gradient(ellipse at 8% 92%, rgba(49, 92, 69, 0.08) 0%, transparent 42%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 253, 248, 0.95) 0%, rgba(255, 249, 240, 0.88) 100%);
  backdrop-filter: blur(40px) saturate(1.2);
  -webkit-backdrop-filter: blur(40px) saturate(1.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 24px 64px rgba(16, 41, 31, 0.14),
    0 48px 120px rgba(16, 41, 31, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.55);
}
.hero-panel-shine {
  position: absolute;
  top: -40%;
  left: -20%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.35) 0%, transparent 70%);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 1.2s ease 0.4s;
}
.hero-panel-edge {
  position: absolute;
  inset: -1px;
  border-radius: 33px;
  padding: 1.5px;
  background: linear-gradient(145deg,
    rgba(217, 138, 95, 0.45) 0%,
    rgba(255, 255, 255, 0.25) 22%,
    rgba(79, 148, 165, 0.15) 50%,
    rgba(49, 92, 69, 0.25) 78%,
    rgba(217, 138, 95, 0.35) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.9s ease 0.25s;
}

/* Active state */
.hero-slide.active .hero-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.hero-slide.active .hero-panel-shine,
.hero-slide.active .hero-panel-edge {
  opacity: 1;
}

/* --- Gradient Border (mask-based) — legacy, panel-edge handles border --- */
.hero-panel::before {
  display: none;
}

/* --- Top-Right Amber/Coral Glow Decoration --- */
.hero-panel::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(217, 138, 95, 0.12) 0%, rgba(217, 108, 95, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}
.hero-slide.active .hero-panel::after {
  opacity: 1;
}

/* --- Bottom-Left Decorative Orbit Rings --- */
.hero-panel-orbit {
  position: absolute;
  left: -36px;
  bottom: -28px;
  width: 120px;
  height: 120px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.7s;
}
.hero-slide.active .hero-panel-orbit {
  opacity: 1;
}
.hero-panel-orbit::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(217, 138, 95, 0.14);
  border-radius: 50%;
}
.hero-panel-orbit::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(217, 138, 95, 0.07);
  border-radius: 50%;
}

/* --- Subtle Pattern Overlay Inside Panel (noise via gradient) --- */
.hero-panel-pattern {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  opacity: 0.25;
  background-image: repeating-linear-gradient(45deg,
    transparent 0px, transparent 3px,
    rgba(217, 138, 95, 0.012) 3px, rgba(217, 138, 95, 0.012) 4px
  );
}

/* --- Badge — Premium Brand Marker --- */
.hero-panel-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent-dark);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent-light) 0%, rgba(248, 230, 220, 0.4) 100%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 20px 5px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(217, 138, 95, 0.14);
  box-shadow: 0 2px 10px rgba(217, 138, 95, 0.06);
  position: relative;
  opacity: 0;
  transform: translateY(14px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.1s;
}
.hero-panel-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(217, 138, 95, 0.5);
  flex-shrink: 0;
}
.hero-slide.active .hero-panel-tag {
  opacity: 1;
  transform: translateY(0);
}

/* --- Title — Striking & Premium --- */
.hero-panel-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 700;
  line-height: 1.04;
  color: var(--primary-dark);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.2s;
}
.hero-slide.active .hero-panel-title {
  opacity: 1;
  transform: translateY(0);
}
/* Gradient underline accent */
.hero-panel-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 72%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-coral) 0%, var(--accent) 45%, rgba(217, 138, 95, 0.15) 100%);
  border-radius: 4px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.45s;
}
.hero-slide.active .hero-panel-title::after {
  opacity: 0.85;
  transform: scaleX(1);
}

/* --- Description --- */
.hero-panel-desc {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.3s;
}
.hero-slide.active .hero-panel-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   Feature Cards — Premium Capsule Cards
   Her kart kendi accent rengini alir (coral / amber / sky)
   ========================================================== */
.hero-features {
  display: flex;
  gap: 10px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 22px 6px 8px;
  background: var(--card-bg);
  border-radius: var(--radius-full);
  border: 1px solid rgba(217, 138, 95, 0.07);
  box-shadow: 0 4px 16px rgba(16, 41, 31, 0.02);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Hover overlay */
.hero-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
  pointer-events: none;
}
.hero-feature-emerald::before { background: linear-gradient(135deg, rgba(217, 108, 95, 0.06) 0%, transparent 100%); }
.hero-feature-sage::before { background: linear-gradient(135deg, rgba(217, 138, 95, 0.06) 0%, transparent 100%); }
.hero-feature-amber::before { background: linear-gradient(135deg, rgba(79, 148, 165, 0.06) 0%, transparent 100%); }

/* Staggered entry */
.hero-slide.active .hero-feature:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.hero-slide.active .hero-feature:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.48s; }
.hero-slide.active .hero-feature:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.56s; }

/* Hover */
.hero-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 138, 95, 0.14);
  box-shadow: 0 16px 32px -8px rgba(16, 41, 31, 0.05);
}
.hero-feature:hover::before { opacity: 1; }
.hero-feature-emerald:hover {
  border-color: rgba(217, 108, 95, 0.20);
  box-shadow: 0 16px 32px -8px rgba(217, 108, 95, 0.10);
}
.hero-feature-sage:hover {
  border-color: rgba(217, 138, 95, 0.20);
  box-shadow: 0 16px 32px -8px rgba(217, 138, 95, 0.10);
}
.hero-feature-amber:hover {
  border-color: rgba(79, 148, 165, 0.20);
  box-shadow: 0 16px 32px -8px rgba(79, 148, 165, 0.10);
}

/* --- Feature Icon Badges --- */
.hero-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.5s var(--ease-out-expo);
  box-shadow: 0 4px 16px rgba(16, 41, 31, 0.06), inset 0 1px 0 rgba(255,255,255,0.75);
}
/* Default */
.hero-feature-icon {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--cream) 100%);
}
/* Accent-tinted backgrounds */
.hero-feature-emerald .hero-feature-icon {
  background: linear-gradient(135deg, var(--color-coral-light) 0%, #FDF6F4 100%);
  color: var(--color-coral-dark);
  box-shadow: 0 2px 14px rgba(217, 108, 95, 0.10), inset 0 1px 0 rgba(255,255,255,0.6);
}
.hero-feature-sage .hero-feature-icon {
  background: linear-gradient(135deg, var(--color-amber-light) 0%, #FDF8F0 100%);
  color: var(--color-amber-dark);
  box-shadow: 0 2px 14px rgba(217, 138, 95, 0.10), inset 0 1px 0 rgba(255,255,255,0.6);
}
.hero-feature-amber .hero-feature-icon {
  background: linear-gradient(135deg, var(--color-sky-light) 0%, #EDF5F7 100%);
  color: var(--color-sky-dark);
  box-shadow: 0 2px 14px rgba(79, 148, 165, 0.10), inset 0 1px 0 rgba(255,255,255,0.6);
}

/* Hover icon states */
.hero-feature:hover .hero-feature-icon {
  transform: scale(1.08) rotate(-2deg);
}
.hero-feature-emerald:hover .hero-feature-icon {
  background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(217, 108, 95, 0.30);
}
.hero-feature-sage:hover .hero-feature-icon {
  background: linear-gradient(135deg, var(--color-amber), var(--color-amber-dark));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(217, 138, 95, 0.30);
}
.hero-feature-amber:hover .hero-feature-icon {
  background: linear-gradient(135deg, var(--color-sky), var(--color-sky-dark));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(79, 148, 165, 0.30);
}

/* SVG / icon inside badge turn white on hover */
.hero-feature:hover .hero-feature-icon svg,
.hero-feature:hover .hero-feature-icon i {
  color: var(--white) !important;
  filter: brightness(0) invert(1);
}
.hero-feature-icon svg {
  width: 28px !important;
  height: 28px !important;
  display: block;
  transition: filter 0.4s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}
.hero-feature-icon i {
  width: 24px;
  height: 24px;
}
.hero-feature-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

/* ==========================================================
   CTA Buttons — Premium Dual Action
   ========================================================== */
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.hero-actions .btn {
  padding: 16px 34px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-slide.active .hero-actions .btn:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
.hero-slide.active .hero-actions .btn:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }

/* Primary CTA — Deep Forest Gradient + Glow */
.hero-actions .btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #10291F 100%);
  box-shadow: 0 4px 20px rgba(16, 41, 31, 0.25), 0 1px 0 rgba(255,255,255,0.10) inset;
  border: none;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-actions .btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 60px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-actions .btn-primary:hover {
  box-shadow: 0 8px 32px rgba(16, 41, 31, 0.35), 0 1px 0 rgba(255,255,255,0.12) inset,
              0 0 24px rgba(217, 138, 95, 0.08);
  transform: translateY(-3px);
}

/* Secondary CTA — Glass Ghost Button (on ivory panel) */
.hero-actions .btn-outline,
.hero-actions .hero-btn-outline {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(217, 138, 95, 0.22);
  color: var(--primary-dark);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(16, 41, 31, 0.04), inset 0 1px 0 rgba(255,255,255,0.6);
}
.hero-actions .btn-outline:hover,
.hero-actions .hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(217, 138, 95, 0.35);
  box-shadow: 0 8px 28px rgba(16, 41, 31, 0.08), 0 0 20px rgba(217, 138, 95, 0.06);
  transform: translateY(-3px);
  color: var(--primary-dark);
}

/* --- Slider Timer Progress Bar --- */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 10;
  background: rgba(255,255,255,0.04);
}
.slider-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--color-coral), rgba(217,138,95,0.2));
  transition: width 0.1s linear;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 20px rgba(217, 138, 95, 0.35);
}

/* --- Slide Counter --- */
.slider-counter {
  position: absolute;
  bottom: 48px;
  left: 80px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  user-select: none;
}
.slider-counter-current {
  font-size: 36px;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.slider-counter-total {
  font-size: 16px;
  color: rgba(255,255,255,0.35);
  padding-top: 18px;
}
.slider-counter-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin-top: 18px;
}

/* ==========================================================
   Slider Controls — Minimal & Premium
   ========================================================== */
.slider-controls {
  position: absolute;
  bottom: 40px;
  right: 80px;
  display: flex;
  align-items: center;
  z-index: 10;
}
.slider-ui-shell {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(16, 41, 31, 0.35);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(16, 41, 31, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.35s var(--ease-out-expo), background 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo), color 0.35s var(--ease-out-expo);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.slider-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transform: scale(0);
  transition: transform 0.5s var(--ease-out-expo), opacity 0.4s var(--ease-out-expo);
}
.slider-btn:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  transform: scale(1.10);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 28px rgba(16, 41, 31, 0.12);
}
.slider-btn:hover::before {
  opacity: 1;
  transform: scale(1);
}
.slider-btn:active {
  transform: scale(0.95);
}

/* Slider pause indicator */
.slider-paused-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
  opacity: 0;
  transition: all 0.5s var(--ease-out-expo);
  pointer-events: none;
}
.slider-paused-indicator.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.slider-paused-indicator svg {
  width: 22px;
  height: 22px;
  color: rgba(255,255,255,0.8);
}
.slider-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.30);
  cursor: pointer;
  transition: all 0.45s var(--ease-out-expo);
  position: relative;
}
.dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  transition: border-color 0.45s var(--ease-out-expo);
}
.dot:hover {
  background: rgba(255, 255, 255, 0.55);
}
.dot:hover::before {
  border-color: rgba(255, 255, 255, 0.15);
}
.dot.active {
  background: linear-gradient(90deg, var(--accent), var(--color-coral));
  width: 32px;
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(217, 138, 95, 0.45), 0 2px 8px rgba(217, 138, 95, 0.25);
}
.dot.active::before { border-color: transparent; }

/* ==========================================================
   Scroll Indicator
   ========================================================== */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.40);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  z-index: 12;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-scroll-indicator:hover {
  color: rgba(255, 255, 255, 0.80);
}
.scroll-mouse {
  width: 20px;
  height: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  position: relative;
  transition: border-color 0.3s var(--ease-out-expo);
}
.hero-scroll-indicator:hover .scroll-mouse {
  border-color: rgba(255, 255, 255, 0.70);
}
.scroll-dot {
  width: 3px;
  height: 7px;
  background: rgba(255, 255, 255, 0.70);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { opacity: 0; transform: translate(-50%, 0); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 9px); }
}

/* ===== 11. About Section ===== */
.about {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
}
.about-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.about-shape {
  position: absolute;
  background: linear-gradient(135deg, rgba(217, 138, 95, 0.04) 0%, rgba(49, 92, 69, 0.02) 100%);
  filter: blur(60px);
  border-radius: var(--radius-full);
}
.as-1 { width: 300px; height: 300px; top: -50px; left: -50px; }
.as-2 { width: 400px; height: 400px; bottom: -100px; right: -50px; }
.as-3 { width: 250px; height: 250px; top: 35%; right: 10%; background: rgba(79, 148, 165, 0.03); }
.as-4 { width: 200px; height: 200px; bottom: 10%; left: 15%; background: rgba(217, 108, 95, 0.03); }

/* --- Wrapper layout (2-Column Magazine) --- */
.about-wrapper-new {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 75px;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: 80px; /* spacing before horizontal stats strip */
}

/* --- Left column: Showcase presentation --- */
.about-visual-showcase {
  position: relative;
  padding: 15px;
}
.about-image-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(254, 252, 249, 0.6);
  border: 1px solid rgba(217, 138, 95, 0.08);
  border-radius: 32px;
  transform: translate(-15px, 15px);
  z-index: -1;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}
.about-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(217, 138, 95, 0.12) 0%, transparent 65%);
  z-index: -2;
  pointer-events: none;
  filter: blur(40px);
}
.about-image-frame-new {
  position: relative;
  z-index: 1;
}
.about-image-card-new {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(217, 138, 95, 0.12);
  background: var(--bg-alt);
}
.about-profile-img-new {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-image-card-new:hover .about-profile-img-new {
  transform: scale(1.04);
}
.about-img-overlay-new {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 41, 31, 0.20) 0%, transparent 50%);
}

/* Structural Line Ornaments (represents exact science / precision) */
.about-decorative-frame-1 {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(217, 138, 95, 0.25);
  border-radius: 24px;
  z-index: -1;
  pointer-events: none;
}
.about-decorative-frame-2 {
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 1.5px solid var(--accent);
  border-radius: 24px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.3;
  transition: transform 0.8s var(--ease-out-expo);
}
.about-image-frame-new:hover .about-decorative-frame-2 {
  transform: translate(6px, 6px);
}
.about-decorative-line-v {
  position: absolute;
  top: -30px;
  bottom: -30px;
  left: 40px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(217, 138, 95, 0.25) 20%, rgba(217, 138, 95, 0.25) 80%, transparent);
  z-index: -1;
  pointer-events: none;
}
.about-decorative-line-h {
  position: absolute;
  left: -30px;
  right: -30px;
  bottom: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(217, 138, 95, 0.25) 20%, rgba(217, 138, 95, 0.25) 80%, transparent);
  z-index: -1;
  pointer-events: none;
}

/* Rotating Gold Experience Seal */
.about-experience-seal {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 110px;
  height: 110px;
  z-index: 10;
  pointer-events: auto;
}
.seal-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seal-badge {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(217, 138, 95, 0.15);
  box-shadow: var(--shadow-md), 0 0 16px rgba(217, 138, 95, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}
.seal-text-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: rotateSeal 25s linear infinite;
}
@keyframes rotateSeal {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.seal-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 7.2px;
  letter-spacing: 1.5px;
  fill: var(--primary-light);
  text-transform: uppercase;
}
.seal-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 4px 12px rgba(16, 41, 31, 0.2);
  border: 1px solid rgba(217, 138, 95, 0.25);
  color: var(--white);
  z-index: 2;
  position: relative;
}
.seal-number {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.seal-year {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.9;
  line-height: 1;
  margin-top: 1px;
}

/* --- Right column: Editorial Narrative Column --- */
.about-editorial-content {
  display: flex;
  flex-direction: column;
}
.about-brand-header {
  margin-bottom: 24px;
}
.about-pre-title {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.about-title-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.about-editorial-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.about-title-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-sage-dark);
  background: var(--color-sage-light);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(79, 122, 94, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about-editorial-subtitle {
  font-family: var(--font-heading);
  font-size: 19px;
  font-style: italic;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.45;
}
.about-title-underline-new {
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(217, 138, 95, 0.05) 100%);
  margin-top: 16px;
  width: 100%;
}

.about-description-group {
  margin-bottom: 30px;
}
.about-editorial-text {
  font-size: 17.5px;
  line-height: 1.85;
  color: var(--text-light);
  font-weight: 400;
}
.about-lead-paragraph {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--text);
  font-weight: 500;
}
.about-lead-paragraph::first-letter {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  float: left;
  line-height: 0.8;
  margin-right: 12px;
  margin-top: 4px;
  font-weight: 700;
  color: var(--primary);
  text-shadow: 1px 1px 0 rgba(217,138,95,0.1);
}

.about-pills-section {
  margin-bottom: 35px;
  background: rgba(254, 252, 249, 0.35);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  border: 1px solid rgba(217,138,95,0.06);
}
.about-pills-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.about-expertise-new {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.expertise-pill-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.4s var(--ease-out-expo);
  border: 1px solid transparent;
}
.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pill-theme-0 { background: rgba(217, 108, 95, 0.05); border-color: rgba(217, 108, 95, 0.1); color: var(--color-coral-dark); }
.pill-theme-0 .pill-dot { background: var(--color-coral); box-shadow: 0 0 6px var(--color-coral); }
.pill-theme-1 { background: rgba(79, 148, 165, 0.05); border-color: rgba(79, 148, 165, 0.1); color: var(--color-sky-dark); }
.pill-theme-1 .pill-dot { background: var(--color-sky); box-shadow: 0 0 6px var(--color-sky); }
.pill-theme-2 { background: rgba(217, 138, 95, 0.05); border-color: rgba(217, 138, 95, 0.1); color: var(--accent-dark); }
.pill-theme-2 .pill-dot { background: var(--accent); box-shadow: 0 0 6px var(--accent); }
.pill-theme-3 { background: rgba(79, 122, 94, 0.05); border-color: rgba(79, 122, 94, 0.1); color: var(--color-sage-dark); }
.pill-theme-3 .pill-dot { background: var(--color-sage); box-shadow: 0 0 6px var(--color-sage); }

.expertise-pill-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(16, 41, 31, 0.03);
}

.about-editorial-actions {
  display: flex;
  margin-top: 10px;
}
.about-luxury-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  position: relative;
  padding: 6px 0;
  transition: all 0.35s var(--ease-out-expo);
}
.about-luxury-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out-expo);
}
.about-luxury-cta:hover {
  color: var(--accent-dark);
}
.about-luxury-cta:hover::after {
  transform: scaleX(1);
}
.cta-arrow {
  display: inline-flex;
  align-items: center;
  transition: transform 0.4s var(--ease-out-expo);
  color: var(--accent);
}
.about-luxury-cta:hover .cta-arrow {
  transform: translateX(6px);
  color: var(--accent-dark);
}

/* --- Editorial Quote Block --- */
.about-quote {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin: 10px 0 30px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(217,138,95,0.04) 0%, rgba(49,92,69,0.02) 100%);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  border: 1px solid rgba(217,138,95,0.08);
  border-left-width: 3px;
}
.about-quote-mark {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.4;
  margin-top: 2px;
}
.about-quote-text p {
  font-family: var(--font-heading);
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  color: var(--primary);
  margin: 0;
}
.about-quote-text p::before { content: '\201C'; }
.about-quote-text p::after { content: '\201D'; }

/* --- About Stats: text-safe sizing --- */
.about-stats-strip .stat-strip-number {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  word-break: break-word;
}

/* --- Bottom: Asymmetric Horizontal Premium Stat Strip --- */
.about-stats-strip {
  position: relative;
  width: 100%;
  background: rgba(255, 253, 248, 0.76);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 34px 44px;
  box-shadow:
    0 16px 40px -12px rgba(16, 41, 31, 0.04),
    0 0 32px rgba(217, 138, 95, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  z-index: 3;
  overflow: hidden;
}
.stats-strip-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 50%, rgba(217, 138, 95, 0.02) 0%, transparent 60%);
  pointer-events: none;
}
.stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}
.stat-strip-item {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}
.stat-strip-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
  opacity: 0.6;
}
.stat-strip-glow {
  position: absolute;
  inset: -15px;
  border-radius: 20px;
  background: radial-gradient(circle, rgba(217, 138, 95, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
  pointer-events: none;
}
.stat-strip-item:hover .stat-strip-glow {
  opacity: 1;
}
.stat-strip-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s var(--ease-out-expo);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(16, 41, 31, 0.02);
}
.stat-strip-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-strip-number {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: transform 0.4s var(--ease-out-expo);
}
.stat-strip-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  line-height: 1.2;
}

/* Theme color variations for stats */
.theme-color-0 .stat-strip-icon-wrap { background: linear-gradient(135deg, var(--color-coral-light) 0%, #FFF9F8 100%); color: var(--color-coral-dark); border: 1px solid rgba(217, 108, 95, 0.1); }
.theme-color-1 .stat-strip-icon-wrap { background: linear-gradient(135deg, var(--color-sky-light) 0%, #FFFDFB 100%); color: var(--color-sky-dark); border: 1px solid rgba(79, 148, 165, 0.1); }
.theme-color-2 .stat-strip-icon-wrap { background: linear-gradient(135deg, var(--color-amber-light) 0%, #FFFDF8 100%); color: var(--color-amber-dark); border: 1px solid rgba(217, 138, 95, 0.1); }
.theme-color-3 .stat-strip-icon-wrap { background: linear-gradient(135deg, var(--color-sage-light) 0%, #FFFDFB 100%); color: var(--color-sage-dark); border: 1px solid rgba(79, 122, 94, 0.1); }

.stat-strip-item:hover .stat-strip-icon-wrap {
  transform: scale(1.08) translateY(-2px);
}
.stat-strip-item:hover .stat-strip-number {
  transform: scale(1.02);
}
.theme-color-0:hover .stat-strip-icon-wrap { background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-coral-dark) 100%); color: var(--white); box-shadow: 0 6px 16px rgba(217, 108, 95, 0.2); }
.theme-color-1:hover .stat-strip-icon-wrap { background: linear-gradient(135deg, var(--color-sky) 0%, var(--color-sky-dark) 100%); color: var(--white); box-shadow: 0 6px 16px rgba(79, 148, 165, 0.2); }
.theme-color-2:hover .stat-strip-icon-wrap { background: linear-gradient(135deg, var(--color-amber) 0%, var(--color-amber-dark) 100%); color: var(--white); box-shadow: 0 6px 16px rgba(217, 138, 95, 0.2); }
.theme-color-3:hover .stat-strip-icon-wrap { background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%); color: var(--white); box-shadow: 0 6px 16px rgba(79, 122, 94, 0.2); }

/* ===== 12. About Hero ===== */
.about-hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1A2E22 50%, #0F2419 100%);
  color: var(--white);
  padding: 80px 0 90px;
  overflow: hidden;
  margin-top: -1px;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 75% 30%, rgba(217,138,95,0.09) 0%, transparent 45%),
    radial-gradient(ellipse at 25% 70%, rgba(79,148,165,0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}
.about-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.025;
  background-image: repeating-linear-gradient(45deg, transparent 0px, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 21px);
}
.about-hero-glow {
  position: absolute;
  right: -80px;
  top: -60px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(217,138,95,0.10) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(60px);
}
.about-hero-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.about-hero-content {
  display: flex;
  flex-direction: column;
}
.about-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  padding: 0;
  background: none;
}
.about-hero .breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s var(--ease-out-expo);
}
.about-hero .breadcrumb a:hover { color: var(--accent); }
.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-light);
  background: rgba(217,138,95,0.10);
  padding: 5px 18px 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(217,138,95,0.12);
  margin-bottom: 20px;
  width: fit-content;
}
.about-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.about-hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  max-width: 560px;
}
.about-hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
}
.about-hero-right {
  display: flex;
  justify-content: flex-end;
}

/* ===== 13. Approach Section ===== */
.about-approach {
  position: relative;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.approach-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 16px rgba(16,41,31,0.02);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.approach-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
}
.approach-card:nth-child(1)::before { background: linear-gradient(90deg, var(--color-coral), var(--color-coral-light)); }
.approach-card:nth-child(2)::before { background: linear-gradient(90deg, var(--color-sky), var(--color-sky-light)); }
.approach-card:nth-child(3)::before { background: linear-gradient(90deg, var(--color-amber), var(--color-amber-light)); }
.approach-card:nth-child(4)::before { background: linear-gradient(90deg, var(--color-sage), var(--color-sage-light)); }
.approach-card:hover::before { opacity: 1; }
.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px -12px rgba(217,138,95,0.08);
  border-color: rgba(217,138,95,0.10);
}
.approach-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.5s var(--ease-out-expo);
}
.ai-personal { background: linear-gradient(135deg, var(--color-coral-light) 0%, #FDF6F4 100%); color: var(--color-coral-dark); }
.ai-science { background: linear-gradient(135deg, var(--color-sky-light) 0%, #EDF5F7 100%); color: var(--color-sky-dark); }
.ai-track { background: linear-gradient(135deg, var(--color-amber-light) 0%, #FDF8F0 100%); color: var(--color-amber-dark); }
.ai-habit { background: linear-gradient(135deg, var(--color-sage-light) 0%, #E2EEE6 100%); color: var(--color-sage-dark); }
.approach-card:nth-child(1):hover .approach-icon { background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark)); color: var(--white); }
.approach-card:nth-child(2):hover .approach-icon { background: linear-gradient(135deg, var(--color-sky), var(--color-sky-dark)); color: var(--white); }
.approach-card:nth-child(3):hover .approach-icon { background: linear-gradient(135deg, var(--color-amber), var(--color-amber-dark)); color: var(--white); }
.approach-card:nth-child(4):hover .approach-icon { background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark)); color: var(--white); }
.approach-card:hover .approach-icon i { filter: brightness(0) invert(1); }
.approach-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
}
.approach-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
}

/* ===== 14. About Certificates ===== */
.about-certs {
  position: relative;
}
.about-certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-cert-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(16,41,31,0.02);
  transition: all 0.5s var(--ease-out-expo);
}
.about-cert-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(16,41,31,0.06);
  border-color: rgba(217,138,95,0.10);
}
.about-cert-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.5s var(--ease-out-expo);
}
.about-cert-card:hover .about-cert-icon {
  transform: scale(1.06) rotate(-3deg);
}
.about-cert-icon.theme-color-0 { background: linear-gradient(135deg, var(--color-coral-light) 0%, #FFF9F8 100%); color: var(--color-coral-dark); border: 1px solid rgba(217,108,95,0.10); }
.about-cert-icon.theme-color-1 { background: linear-gradient(135deg, var(--color-sky-light) 0%, #FFFDFB 100%); color: var(--color-sky-dark); border: 1px solid rgba(79,148,165,0.10); }
.about-cert-icon.theme-color-2 { background: linear-gradient(135deg, var(--color-amber-light) 0%, #FFFDF8 100%); color: var(--color-amber-dark); border: 1px solid rgba(217,138,95,0.10); }
.about-cert-icon.theme-color-3 { background: linear-gradient(135deg, var(--color-sage-light) 0%, #FFFDFB 100%); color: var(--color-sage-dark); border: 1px solid rgba(79,122,94,0.10); }
.about-cert-card:hover .about-cert-icon.theme-color-0 { background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-coral-dark) 100%); color: var(--white); box-shadow: 0 6px 16px rgba(217,108,95,0.15); }
.about-cert-card:hover .about-cert-icon.theme-color-1 { background: linear-gradient(135deg, var(--color-sky) 0%, var(--color-sky-dark) 100%); color: var(--white); box-shadow: 0 6px 16px rgba(79,148,165,0.15); }
.about-cert-card:hover .about-cert-icon.theme-color-2 { background: linear-gradient(135deg, var(--color-amber) 0%, var(--color-amber-dark) 100%); color: var(--white); box-shadow: 0 6px 16px rgba(217,138,95,0.15); }
.about-cert-card:hover .about-cert-icon.theme-color-3 { background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%); color: var(--white); box-shadow: 0 6px 16px rgba(79,122,94,0.15); }
.about-cert-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-cert-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.4;
}
.about-cert-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== 12 (cont). Trust Badges Strip ===== */
.trust-strip {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--cream) 100%);
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.trust-strip-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(217, 138, 95, 0.04) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(79, 122, 94, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  position: relative;
  z-index: 1;
}
.trust-label-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  position: relative;
}
.trust-label-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(217, 138, 95, 0.2);
}
.trust-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.3;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  flex-shrink: 0;
  opacity: 0.3;
}
.trust-track-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-width: 0;
}
.trust-track-wrapper::before,
.trust-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.trust-track-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-alt), transparent);
}
.trust-track-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--cream), transparent);
}

.trust-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 40s linear infinite;
  will-change: transform;
}
.trust-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  margin: 0 6px;
  background: rgba(254, 252, 249, 0.6);
  border: 1px solid rgba(217, 138, 95, 0.08);
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all 0.5s var(--ease-out-expo);
  backdrop-filter: blur(4px);
}
.trust-badge:hover {
  background: rgba(254, 252, 249, 0.95);
  border-color: rgba(217, 138, 95, 0.15);
  box-shadow: 0 4px 16px rgba(217, 138, 95, 0.06);
  transform: translateY(-2px);
}
.trust-badge-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.5s var(--ease-out-expo);
}
.trust-badge:hover .trust-badge-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 4px 12px rgba(217, 138, 95, 0.15);
}
.trust-badge-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
}

/* ===== 13. Process Section ===== */
.process {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.pbs-1 { position: absolute; top: 10%; right: -5%; width: 300px; height: 300px; background: rgba(217, 138, 95, 0.03); filter: blur(50px); border-radius: var(--radius-full); }

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.process-line {
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 1;
}
.process-line-fill {
  height: 100%;
  width: 0;
  background: var(--accent);
  transition: width 1s ease;
}

.process-step {
  position: relative;
  z-index: 2;
}
.process-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(16, 41, 31, 0.02);
  overflow: hidden;
  transition: all 0.6s var(--ease-out-expo);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.process-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 138, 95, 0.1);
  box-shadow: 0 20px 40px -12px rgba(217, 138, 95, 0.08), 0 4px 8px rgba(16, 41, 31, 0.02);
}
.process-step:nth-child(1) .process-card:hover { border-color: rgba(217, 108, 95, 0.15); box-shadow: 0 20px 40px -12px rgba(217, 108, 95, 0.06), 0 4px 8px rgba(16, 41, 31, 0.02); }
.process-step:nth-child(2) .process-card:hover { border-color: rgba(79, 148, 165, 0.15); box-shadow: 0 20px 40px -12px rgba(79, 148, 165, 0.06), 0 4px 8px rgba(16, 41, 31, 0.02); }
.process-step:nth-child(3) .process-card:hover { border-color: rgba(217, 138, 95, 0.15); box-shadow: 0 20px 40px -12px rgba(217, 138, 95, 0.06), 0 4px 8px rgba(16, 41, 31, 0.02); }
.process-step:nth-child(4) .process-card:hover { border-color: rgba(79, 122, 94, 0.15); box-shadow: 0 20px 40px -12px rgba(79, 122, 94, 0.06), 0 4px 8px rgba(16, 41, 31, 0.02); }

.process-card-thumb {
  height: 160px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--card-bg) 100%);
}
.process-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 41, 31, 0.08) 0%, transparent 35%);
  pointer-events: none;
  z-index: 1;
}
.process-step:nth-child(1) .process-card-thumb::after { background: linear-gradient(to top, rgba(217, 108, 95, 0.06) 0%, transparent 35%); }
.process-step:nth-child(2) .process-card-thumb::after { background: linear-gradient(to top, rgba(79, 148, 165, 0.06) 0%, transparent 35%); }
.process-step:nth-child(3) .process-card-thumb::after { background: linear-gradient(to top, rgba(217, 138, 95, 0.06) 0%, transparent 35%); }
.process-step:nth-child(4) .process-card-thumb::after { background: linear-gradient(to top, rgba(79, 122, 94, 0.06) 0%, transparent 35%); }
.process-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
  position: relative;
  z-index: 0;
}
.process-card:hover .process-card-thumb img {
  transform: scale(1.06);
}

.process-card-body {
  padding: 24px 24px 28px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.process-num {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 3;
  transition: transform 0.5s var(--ease-out-expo);
}
.process-step:nth-child(1) .process-num { background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark)); box-shadow: 0 4px 14px rgba(217, 108, 95, 0.25); }
.process-step:nth-child(2) .process-num { background: linear-gradient(135deg, var(--color-sky), var(--color-sky-dark)); box-shadow: 0 4px 14px rgba(79, 148, 165, 0.25); }
.process-step:nth-child(3) .process-num { background: linear-gradient(135deg, var(--color-amber), var(--color-amber-dark)); box-shadow: 0 4px 14px rgba(217, 138, 95, 0.25); }
.process-step:nth-child(4) .process-num { background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark)); box-shadow: 0 4px 14px rgba(79, 122, 94, 0.25); }
.process-card:hover .process-num { transform: scale(1.12); }
.process-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--cream) 100%);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.6s var(--ease-out-expo);
  box-shadow: 0 2px 8px rgba(217, 138, 95, 0.04);
}
/* Process icon accent tint */
.process-step:nth-child(1) .process-icon { background: linear-gradient(135deg, var(--color-coral-light) 0%, var(--cream) 100%); color: var(--color-coral-dark); }
.process-step:nth-child(2) .process-icon { background: linear-gradient(135deg, var(--color-sky-light) 0%, var(--cream) 100%); color: var(--color-sky-dark); }
.process-step:nth-child(3) .process-icon { background: linear-gradient(135deg, var(--color-amber-light) 0%, var(--cream) 100%); color: var(--color-amber-dark); }
.process-step:nth-child(4) .process-icon { background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--cream) 100%); color: var(--color-sage-dark); }
.process-step:nth-child(1):hover .process-icon {
  background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark));
  color: var(--white);
  box-shadow: 0 6px 18px rgba(217, 108, 95, 0.12);
}
.process-step:nth-child(2):hover .process-icon {
  background: linear-gradient(135deg, var(--color-sky), var(--color-sky-dark));
  color: var(--white);
  box-shadow: 0 6px 18px rgba(79, 148, 165, 0.12);
}
.process-step:nth-child(3):hover .process-icon {
  background: linear-gradient(135deg, var(--color-amber), var(--color-amber-dark));
  color: var(--white);
  box-shadow: 0 6px 18px rgba(217, 138, 95, 0.12);
}
.process-step:nth-child(4):hover .process-icon {
  background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark));
  color: var(--white);
  box-shadow: 0 6px 18px rgba(79, 122, 94, 0.12);
}
.process-card:hover .process-icon svg,
.process-card:hover .process-icon i {
  filter: brightness(0) invert(1);
}
.process-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.process-card-body p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
}
.process-icon i,
.process-icon svg {
  width: 26px !important;
  height: 26px !important;
}

/* ===== 14. Services Section ===== */
.services {
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(16, 41, 31, 0.03);
  overflow: hidden;
  transition: all 0.6s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
/* Feature card — first service stands out */
.services-grid .service-card:first-child {
  border-color: rgba(217, 108, 95, 0.10);
  box-shadow: 0 8px 28px rgba(217, 108, 95, 0.04);
  position: relative;
  z-index: 0;
  background: linear-gradient(135deg, #FDF8F7 0%, var(--card-bg) 60%);
}
.services-grid .service-card:first-child .service-card-body {
  background: linear-gradient(to bottom, transparent 0%, var(--card-bg) 30%);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2;
  transition: opacity 0.6s var(--ease-out-expo);
  opacity: 0;
}
.services-grid .service-card:first-child::before {
  opacity: 1;
  height: 4px;
  background: linear-gradient(90deg, var(--color-coral), var(--color-coral-light));
}
.service-card:nth-child(2)::before { background: linear-gradient(90deg, var(--color-sky), var(--color-sky-light)); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, var(--color-amber), var(--color-amber-light)); }
.service-card:nth-child(4)::before { background: linear-gradient(90deg, var(--color-sky), var(--color-sky-light)); }
.service-card:nth-child(5)::before { background: linear-gradient(90deg, var(--color-sage), var(--color-sage-light)); }
.service-card:nth-child(6)::before { background: linear-gradient(90deg, var(--color-coral), var(--color-amber)); }
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 52px -16px rgba(217, 138, 95, 0.10), 0 8px 16px -8px rgba(16, 41, 31, 0.02);
}
.services-grid .service-card:first-child:hover {
  border-color: rgba(217, 108, 95, 0.18);
  box-shadow: 0 28px 52px -16px rgba(217, 108, 95, 0.12), 0 8px 16px -8px rgba(16, 41, 31, 0.03);
}
.service-card:nth-child(2):hover { border-color: rgba(79, 148, 165, 0.15); }
.service-card:nth-child(3):hover,
.service-card:nth-child(4):hover { border-color: rgba(217, 138, 95, 0.15); }
.service-card:nth-child(5):hover { border-color: rgba(79, 122, 94, 0.15); }
.service-card:nth-child(6):hover { border-color: rgba(217, 108, 95, 0.15); }

/* Image area — permanent gradient fallback + accent overlay */
.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--card-bg) 100%);
}
.services-grid .service-card:first-child .service-card-img {
  height: 220px;
}
/* Image gradient overlay — always visible, accent-tinted */
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 41, 31, 0.12) 0%, transparent 35%, transparent 75%, rgba(16, 41, 31, 0.02) 100%);
  pointer-events: none;
  z-index: 1;
}
/* Accent gradient at very bottom of image */
.service-card:nth-child(2) .service-card-img::after {
  background: linear-gradient(to top, rgba(79, 148, 165, 0.08) 0%, transparent 35%, transparent 75%, rgba(16, 41, 31, 0.02) 100%);
}
.service-card:nth-child(3) .service-card-img::after,
.services-grid .service-card:first-child .service-card-img::after {
  background: linear-gradient(to top, rgba(217, 108, 95, 0.08) 0%, transparent 35%, transparent 75%, rgba(16, 41, 31, 0.02) 100%);
}
.service-card:nth-child(4) .service-card-img::after {
  background: linear-gradient(to top, rgba(217, 138, 95, 0.08) 0%, transparent 35%, transparent 75%, rgba(16, 41, 31, 0.02) 100%);
}
.service-card:nth-child(5) .service-card-img::after {
  background: linear-gradient(to top, rgba(79, 122, 94, 0.08) 0%, transparent 35%, transparent 75%, rgba(16, 41, 31, 0.02) 100%);
}
.service-card:nth-child(6) .service-card-img::after {
  background: linear-gradient(to top, rgba(217, 108, 95, 0.06) 0%, transparent 35%, transparent 75%, rgba(16, 41, 31, 0.02) 100%);
}
/* Decorative pattern overlay on image area (subtle) */
.service-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 40%, rgba(217, 138, 95, 0.03) 0%, transparent 60%),
                    radial-gradient(circle at 80% 60%, rgba(217, 108, 95, 0.02) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
  position: relative;
  z-index: 0;
}
/* Hide img on error — show background only */
.service-card-img img.img-error {
  display: none;
}
.service-card:hover .service-card-img img:not(.img-error) {
  transform: scale(1.06);
}

/* Card body */
.service-card-body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.services-grid .service-card:first-child .service-card-body {
  padding: 28px 30px 32px;
  background: transparent;
}
.service-icon {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--cream) 100%);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.5s var(--ease-out-expo);
  box-shadow: 0 2px 10px rgba(217, 138, 95, 0.04);
}
.services-grid .service-card:first-child .service-icon {
  width: 74px;
  height: 74px;
  margin-bottom: 24px;
}
/* Service icon accent variation */
.services-grid .service-card:nth-child(2) .service-icon {
  background: linear-gradient(135deg, var(--color-sky-light) 0%, #F4F8F9 100%);
  color: var(--color-sky-dark);
  box-shadow: 0 2px 14px rgba(79, 148, 165, 0.10);
  border: 1px solid rgba(79, 148, 165, 0.06);
}
.services-grid .service-card:nth-child(3) .service-icon {
  background: linear-gradient(135deg, var(--color-amber-light) 0%, #FCF9F4 100%);
  color: var(--color-amber-dark);
  box-shadow: 0 2px 14px rgba(217, 138, 95, 0.10);
  border: 1px solid rgba(217, 138, 95, 0.06);
}
.services-grid .service-card:nth-child(4) .service-icon {
  background: linear-gradient(135deg, var(--color-amber-light) 0%, #FCF9F4 100%);
  color: var(--color-amber-dark);
  box-shadow: 0 2px 14px rgba(217, 138, 95, 0.10);
  border: 1px solid rgba(217, 138, 95, 0.06);
}
.services-grid .service-card:nth-child(5) .service-icon {
  background: linear-gradient(135deg, var(--color-sage-light) 0%, #F4F8F5 100%);
  color: var(--color-sage-dark);
  box-shadow: 0 2px 14px rgba(79, 122, 94, 0.10);
  border: 1px solid rgba(79, 122, 94, 0.06);
}
.services-grid .service-card:nth-child(6) .service-icon {
  background: linear-gradient(135deg, var(--color-coral-light) 0%, #FCF6F4 100%);
  color: var(--color-coral-dark);
  box-shadow: 0 2px 14px rgba(217, 108, 95, 0.10);
  border: 1px solid rgba(217, 108, 95, 0.06);
}
.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-3deg);
}
.services-grid .service-card:first-child:hover .service-icon {
  transform: scale(1.1) rotate(-3deg);
  background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(217, 108, 95, 0.25);
}
.services-grid .service-card:nth-child(2):hover .service-icon {
  background: linear-gradient(135deg, var(--color-sky), var(--color-sky-dark));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(79, 148, 165, 0.25);
}
.services-grid .service-card:nth-child(3):hover .service-icon,
.services-grid .service-card:nth-child(4):hover .service-icon {
  background: linear-gradient(135deg, var(--color-amber), var(--color-amber-dark));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(217, 138, 95, 0.25);
}
.services-grid .service-card:nth-child(5):hover .service-icon {
  background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(79, 122, 94, 0.25);
}
.services-grid .service-card:nth-child(6):hover .service-icon {
  background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(217, 108, 95, 0.25);
}
.service-card:hover .service-icon svg,
.service-card:hover .service-icon i {
  filter: brightness(0) invert(1);
}
.service-card-body h3 {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 12px;
}
.services-grid .service-card:first-child .service-card-body h3 {
  font-size: 21px;
  margin-bottom: 14px;
}
.service-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}
.services-grid .service-card:first-child .service-desc {
  font-size: 16.5px;
}
.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  background: var(--bg);
  transition: all 0.5s var(--ease-out-expo);
  width: fit-content;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.services-grid .service-card:first-child .service-link {
  padding: 10px 24px;
  font-size: 13.5px;
  color: var(--color-coral-dark);
  background: rgba(217, 108, 95, 0.06);
}
.service-link i, .service-link svg {
  transition: transform 0.4s var(--ease-out-expo);
}
.service-card:nth-child(2) .service-link { color: var(--color-sky-dark); background: rgba(79, 148, 165, 0.06); }
.service-card:nth-child(3) .service-link,
.service-card:nth-child(4) .service-link { color: var(--color-amber-dark); background: rgba(217, 138, 95, 0.06); }
.service-card:nth-child(5) .service-link { color: var(--color-sage-dark); background: rgba(79, 122, 94, 0.06); }
.service-card:nth-child(6) .service-link { color: var(--color-coral-dark); background: rgba(217, 108, 95, 0.06); }
.services-grid .service-card:first-child:hover .service-link {
  background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(217, 108, 95, 0.18);
}
.service-card:nth-child(2):hover .service-link {
  background: linear-gradient(135deg, var(--color-sky), var(--color-sky-dark));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(79, 148, 165, 0.18);
}
.service-card:nth-child(3):hover .service-link,
.service-card:nth-child(4):hover .service-link {
  background: linear-gradient(135deg, var(--color-amber), var(--color-amber-dark));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(217, 138, 95, 0.18);
}
.service-card:nth-child(5):hover .service-link {
  background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(79, 122, 94, 0.18);
}
.service-card:nth-child(6):hover .service-link {
  background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(217, 108, 95, 0.18);
}
.service-card:hover .service-link i,
.service-card:hover .service-link svg {
  transform: translateX(4px);
  filter: brightness(0) invert(1);
}

/* ===== 15. CTA Banner Section ===== */
.cta-banner {
  background: linear-gradient(135deg, #1A2E22 0%, var(--primary) 40%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}
.cta-particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 25%, rgba(217, 138, 95, 0.10) 0%, transparent 45%),
                    radial-gradient(circle at 80% 75%, rgba(217, 108, 95, 0.08) 0%, transparent 40%),
                    radial-gradient(circle at 50% 50%, rgba(79, 148, 165, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.cta-content {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-size: 42px;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.15;
}
.cta-content p {
  font-size: 18.5px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.8;
}
.cta-content .btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(217, 138, 95, 0.30);
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
}
.cta-content .btn-primary:hover {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(217, 138, 95, 0.40), 0 0 32px rgba(217, 138, 95, 0.08);
}

/* ===== 16. Value / Highlight Section — Premium Editorial ===== */
.value-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--cream) 50%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}
.value-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.value-shape {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(70px);
}
.vs-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  background: rgba(217, 138, 95, 0.06);
}
.vs-2 {
  width: 350px;
  height: 350px;
  bottom: -80px;
  left: -80px;
  background: rgba(79, 148, 165, 0.05);
}
.vs-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 50%;
  background: rgba(217, 108, 95, 0.03);
}
.value-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}
.value-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-sky-dark);
  background: var(--color-sky-light);
  padding: 5px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  border: 1px solid rgba(79, 148, 165, 0.10);
}
.value-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-sky);
  box-shadow: 0 0 6px rgba(79, 148, 165, 0.4);
  flex-shrink: 0;
}
.value-title {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.value-title-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--color-amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.value-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}
.value-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 16px rgba(16, 41, 31, 0.02);
  transition: all 0.6s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out-expo);
}
.value-card:nth-child(1)::before { background: linear-gradient(90deg, var(--color-coral), var(--color-coral-light)); }
.value-card:nth-child(2)::before { background: linear-gradient(90deg, var(--color-sky), var(--color-sky-light)); }
.value-card:nth-child(3)::before { background: linear-gradient(90deg, var(--color-amber), var(--color-amber-light)); }
.value-card:nth-child(4)::before { background: linear-gradient(90deg, var(--color-sage), var(--color-sage-light)); }
.value-card:nth-child(5)::before { background: linear-gradient(90deg, var(--color-coral), var(--color-amber)); }
.value-card:nth-child(6)::before { background: linear-gradient(90deg, var(--color-sky), var(--color-sage)); }
.value-card:hover::before { opacity: 1; }
.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 138, 95, 0.10);
  box-shadow: 0 24px 48px -16px rgba(217, 138, 95, 0.08), 0 4px 8px rgba(16, 41, 31, 0.02);
}
.value-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.5s var(--ease-out-expo);
  box-shadow: 0 2px 10px rgba(16, 41, 31, 0.02);
}
.vci-coral { background: linear-gradient(135deg, var(--color-coral-light) 0%, #FDF6F4 100%); color: var(--color-coral-dark); }
.vci-sky { background: linear-gradient(135deg, var(--color-sky-light) 0%, #EDF5F7 100%); color: var(--color-sky-dark); }
.vci-amber { background: linear-gradient(135deg, var(--color-amber-light) 0%, #FDF8F0 100%); color: var(--color-amber-dark); }
.vci-sage { background: linear-gradient(135deg, var(--color-sage-light) 0%, #E2EEE6 100%); color: var(--color-sage-dark); }
.value-card:hover .value-card-icon {
  transform: scale(1.08) rotate(-3deg);
}
.value-card:nth-child(1):hover .value-card-icon { background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark)); color: var(--white); box-shadow: 0 8px 24px rgba(217, 108, 95, 0.20); }
.value-card:nth-child(2):hover .value-card-icon { background: linear-gradient(135deg, var(--color-sky), var(--color-sky-dark)); color: var(--white); box-shadow: 0 8px 24px rgba(79, 148, 165, 0.20); }
.value-card:nth-child(3):hover .value-card-icon { background: linear-gradient(135deg, var(--color-amber), var(--color-amber-dark)); color: var(--white); box-shadow: 0 8px 24px rgba(217, 138, 95, 0.20); }
.value-card:nth-child(4):hover .value-card-icon { background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark)); color: var(--white); box-shadow: 0 8px 24px rgba(79, 122, 94, 0.20); }
.value-card:nth-child(5):hover .value-card-icon { background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark)); color: var(--white); box-shadow: 0 8px 24px rgba(217, 108, 95, 0.20); }
.value-card:nth-child(6):hover .value-card-icon { background: linear-gradient(135deg, var(--color-sky), var(--color-sky-dark)); color: var(--white); box-shadow: 0 8px 24px rgba(79, 148, 165, 0.20); }
.value-card:hover .value-card-icon svg,
.value-card:hover .value-card-icon i {
  filter: brightness(0) invert(1);
}
.value-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
}
.value-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
}
.value-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.value-actions .btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  box-shadow: 0 4px 20px rgba(16, 41, 31, 0.20);
  padding: 16px 36px;
  font-size: 15px;
}
.value-actions .btn-primary:hover {
  box-shadow: 0 8px 32px rgba(16, 41, 31, 0.30), 0 0 24px rgba(217, 138, 95, 0.06);
  transform: translateY(-3px);
}
.value-actions .btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 16px 36px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.value-actions .btn-outline:hover {
  border-color: var(--primary);
  background: rgba(49, 92, 69, 0.03);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 41, 31, 0.04);
}

/* ===== 16. Blog Section ===== */
.blog {
  background: var(--cream);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
  z-index: 2;
}
.blog-card:nth-child(3n+1)::before { background: linear-gradient(90deg, var(--color-coral), var(--color-coral-light)); }
.blog-card:nth-child(3n+2)::before { background: linear-gradient(90deg, var(--color-sky), var(--color-sky-light)); }
.blog-card:nth-child(3n+3)::before { background: linear-gradient(90deg, var(--color-amber), var(--color-amber-light)); }
.blog-card:hover::before { opacity: 1; }
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(217, 138, 95, 0.08);
}

.blog-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}
.blog-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--accent-light);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(4px);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  transition: background 0.3s var(--ease-out-expo);
  border: 1px solid rgba(255,255,255,0.3);
}
.blog-card:nth-child(3n+1) .blog-category { color: var(--color-coral-dark); }
.blog-card:nth-child(3n+2) .blog-category { color: var(--color-sky-dark); }
.blog-card:nth-child(3n+3) .blog-category { color: var(--color-amber-dark); }

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 500;
}
.blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-card-title {
  font-size: 19.5px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.35;
  font-weight: 700;
}
.blog-card-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s var(--ease-out-expo);
}
.blog-card-title a:hover {
  color: var(--primary);
}
.blog-card-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.blog-author {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--bg);
  transition: all 0.4s var(--ease-out-expo);
  width: fit-content;
  margin-top: auto;
}
.blog-card:nth-child(3n+1) .blog-read-more { color: var(--color-coral-dark); background: rgba(217, 108, 95, 0.06); }
.blog-card:nth-child(3n+2) .blog-read-more { color: var(--color-sky-dark); background: rgba(79, 148, 165, 0.06); }
.blog-card:nth-child(3n+3) .blog-read-more { color: var(--color-amber-dark); background: rgba(217, 138, 95, 0.06); }
.blog-read-more:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(217, 138, 95, 0.15);
  transform: translateY(-1px);
}
.blog-read-more i,
.blog-read-more svg {
  transition: transform 0.4s var(--ease-out-expo);
}
.blog-read-more:hover i,
.blog-read-more:hover svg {
  transform: translateX(4px);
  filter: brightness(0) invert(1);
}

.blog-more {
  text-align: center;
  margin-top: 50px;
}

/* ===== 17. FAQ / SSS Section ===== */
.faq {
  background: var(--bg-alt);
}
.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.faq-left {
  position: sticky;
  top: 120px;
}
.faq-cta {
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg) 100%);
  padding: 32px;
  border-radius: var(--radius-lg);
  margin-top: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(16, 41, 31, 0.02);
  position: relative;
  overflow: hidden;
}
.faq-cta::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--color-amber), var(--color-coral));
  opacity: 0.5;
}
.faq-cta p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active {
  background: var(--card-bg);
  border-color: var(--color-coral);
  box-shadow: 0 4px 20px rgba(217, 108, 95, 0.08);
}

.faq-question {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  gap: 16px;
  transition: color 0.3s var(--ease-out-expo);
}
.faq-item.active .faq-question {
  color: var(--primary);
}
.faq-question i, .faq-question svg {
  color: var(--accent-dark);
  transition: transform 0.4s var(--ease-out-expo);
  flex-shrink: 0;
}
.faq-item.active .faq-question i,
.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 24px 24px;
  font-size: 16.5px;
  color: var(--text-light);
  line-height: 1.75;
}

/* ===== 18. Contact Section ===== */
.contact {
  background: var(--bg);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: stretch;
}
.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.contact-card {
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(16, 41, 31, 0.02);
  border: 1px solid var(--border);
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
  transition: all 0.5s var(--ease-out-expo);
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 138, 95, 0.1);
  box-shadow: 0 12px 28px -8px rgba(217, 138, 95, 0.06);
}
.contact-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217, 138, 95, 0.03) 0%, rgba(49, 92, 69, 0.01) 100%);
  pointer-events: none;
}
.contact-card i,
.contact-card svg {
  width: 56px !important;
  height: 56px !important;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.5s var(--ease-out-expo);
}
/* Contact card icon accent tint — stronger glow */
.contact-card:nth-child(1) i { background: linear-gradient(135deg, var(--color-coral-light) 0%, #FCF6F4 100%); color: var(--color-coral-dark); box-shadow: 0 2px 12px rgba(217, 108, 95, 0.08); }
.contact-card:nth-child(2) i { background: linear-gradient(135deg, var(--color-sky-light) 0%, #F4F8F9 100%); color: var(--color-sky-dark); box-shadow: 0 2px 12px rgba(79, 148, 165, 0.08); }
.contact-card:nth-child(3) i { background: linear-gradient(135deg, var(--color-amber-light) 0%, #FCF9F4 100%); color: var(--color-amber-dark); box-shadow: 0 2px 12px rgba(217, 138, 95, 0.08); }
.contact-card:nth-child(4) i { background: linear-gradient(135deg, var(--color-sage-light) 0%, #F4F8F5 100%); color: var(--color-sage-dark); box-shadow: 0 2px 12px rgba(79, 122, 94, 0.08); }
.contact-card:nth-child(1):hover i { background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark)); color: var(--white); transform: scale(1.08); box-shadow: 0 8px 24px rgba(217, 108, 95, 0.2); }
.contact-card:nth-child(2):hover i { background: linear-gradient(135deg, var(--color-sky), var(--color-sky-dark)); color: var(--white); transform: scale(1.08); box-shadow: 0 8px 24px rgba(79, 148, 165, 0.2); }
.contact-card:nth-child(3):hover i { background: linear-gradient(135deg, var(--color-amber), var(--color-amber-dark)); color: var(--white); transform: scale(1.08); box-shadow: 0 8px 24px rgba(217, 138, 95, 0.2); }
.contact-card:nth-child(4):hover i { background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark)); color: var(--white); transform: scale(1.08); box-shadow: 0 8px 24px rgba(79, 122, 94, 0.2); }
.contact-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.contact-card p {
  font-size: 15.5px;
  color: var(--text-light);
  line-height: 1.55;
}

.contact-map {
  grid-column: span 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-form {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.form-shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-coral), var(--accent), var(--color-sky));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0.5;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}
.required {
  color: var(--error);
}
.form-error {
  font-size: 12px;
  color: var(--error);
  display: none;
  margin-top: 4px;
}

/* ===== 20. Footer ===== */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 80% 20%, rgba(217, 138, 95, 0.06) 0%, transparent 50%),
                    radial-gradient(ellipse at 20% 80%, rgba(79, 148, 165, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.footer-wave {
  position: relative;
  height: 40px;
  margin-top: -1px;
}
.footer-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-main {
  padding: 80px 0 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-logo {
  margin-bottom: 20px;
}
.footer-logo-img {
  max-height: 52px;
  width: auto;
}
.footer-about p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-grid h4 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 24px;
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-services a {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  display: inline-block;
}
.footer-links a:hover,
.footer-services a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.footer-contact li i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  font-size: 14.5px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer-bottom a {
  color: var(--accent);
}
.footer-bottom a:hover {
  text-decoration: underline;
}

/* ===== 21. WhatsApp Float — Premium Desktop Floating Action ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
  color: var(--white);
  border-radius: 9999px;
  box-shadow:
    0 4px 16px rgba(37, 211, 102, 0.25),
    0 0 0 1px rgba(255,255,255,0.08),
    0 0 0 4px rgba(37, 211, 102, 0.06);
  z-index: 99;
  transition: all 0.45s var(--ease-out-expo);
  text-decoration: none;
  cursor: pointer;
  min-width: 58px;
  height: 58px;
  animation: waFloatPulse 4s ease-in-out infinite;
}
@keyframes waFloatPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25), 0 0 0 1px rgba(255,255,255,0.08), 0 0 0 4px rgba(37, 211, 102, 0.06); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35), 0 0 0 1px rgba(255,255,255,0.10), 0 0 0 6px rgba(37, 211, 102, 0.04); }
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(255,255,255,0.14) 0%, transparent 50%);
  pointer-events: none;
}
.whatsapp-float::after {
  content: '';
  position: absolute;
  top: 4px;
  right: 4px;
  width: 10px;
  height: 10px;
  background: #25D366;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.15);
  animation: waDotPulse 3s ease-in-out infinite;
}
@keyframes waDotPulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.15); }
  50% { box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.05); }
}
.whatsapp-float i,
.whatsapp-float svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.1));
}
.whatsapp-float:hover {
  transform: scale(1.07) translateY(-3px);
  box-shadow:
    0 12px 32px rgba(37, 211, 102, 0.40),
    0 0 0 1px rgba(255,255,255,0.12),
    0 0 0 6px rgba(37, 211, 102, 0.06);
  gap: 4px;
  padding-right: 22px;
  animation: none;
}
.whatsapp-float:active {
  transform: scale(1.03) translateY(-1px);
}

.whatsapp-float-text {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 0.5s var(--ease-out-expo), opacity 0.35s var(--ease-out-expo), padding 0.5s var(--ease-out-expo);
  padding-left: 0;
}
.whatsapp-float:hover .whatsapp-float-text {
  max-width: 170px;
  opacity: 1;
  padding-left: 6px;
}
.whatsapp-float:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* ===== Mobile Bottom Contact Bar ===== */
.mobile-contact-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0;
  z-index: 1200;
  gap: 0;
  grid-template-columns: 1fr 1fr;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease-out-expo), transform 0.5s var(--ease-out-expo), visibility 0.4s var(--ease-out-expo);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(16, 41, 31, 0.18);
}
.mobile-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.35s var(--ease-out-expo);
  cursor: pointer;
  border: none;
  min-height: 56px;
}
.mobile-contact-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}
.mobile-contact-label {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.mobile-contact-sublabel {
  font-size: 12.5px;
  font-weight: 500;
  opacity: 0.75;
  line-height: 1.2;
}
.mobile-contact-btn i,
.mobile-contact-btn svg {
  flex-shrink: 0;
}

/* WhatsApp button — left half */
.mobile-contact-wa {
  background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
  color: var(--white);
  position: relative;
}
.mobile-contact-wa::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.mobile-contact-wa:hover {
  filter: brightness(1.08);
}
.mobile-contact-wa:active {
  filter: brightness(0.95);
}

/* Haritalar button — right half */
.mobile-contact-map {
  background: linear-gradient(135deg, var(--color-amber) 0%, var(--accent-dark) 100%);
  color: var(--white);
}
.mobile-contact-map:hover {
  filter: brightness(1.08);
}
.mobile-contact-map:active {
  filter: brightness(0.95);
}

.mobile-contact-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@keyframes contactBarUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== 22. Scroll Top ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== 23. Page Hero (Breadcrumb & Subpages Hero) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1A2E22 100%);
  color: var(--white);
  padding: 70px 0;
  position: relative;
}
.page-hero-sm {
  padding: 40px 0;
}
.page-hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-hero h1 {
  font-size: 34px;
  color: var(--white);
}
.breadcrumb {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a {
  color: rgba(255,255,255,0.85);
}
.breadcrumb a:hover {
  color: var(--accent);
}

/* ===== 24. Certificates Section ===== */
.certificates {
  background: var(--bg);
}
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.certificate-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.certificate-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.cert-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.certificate-card span {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.4;
}

/* ===== 25. Alert Banner ===== */
.alert {
  padding: 16px 24px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}
.alert-success {
  background: #E8F5E9;
  border: 1px solid #C8E6C9;
  color: #2E7D32;
}
.alert-error {
  background: #FFEBEE;
  border: 1px solid #FFCDD2;
  color: #C62828;
}
.alert-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 20px;
  line-height: 1;
}

/* ===== 26. Toast Notification ===== */
.toast-container {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 10000;
}
.toast {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border-light);
  animation: toastIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.toast-success {
  border-left: 4px solid var(--success);
}
.toast-close {
  font-size: 18px;
  color: var(--text-muted);
}
@keyframes toastIn {
  0% { transform: translateY(-20px) scale(0.9); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* ===== 27. Blog & Article Detail Pages ===== */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.sidebar-widget {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.sidebar-widget h3 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-alt);
}
.sidebar-categories li {
  margin-bottom: 8px;
}
.sidebar-categories a {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  color: var(--text-light);
  padding: 6px 0;
}
.sidebar-categories a:hover,
.sidebar-categories a.active {
  color: var(--primary);
  font-weight: 600;
}
.sidebar-categories span {
  color: var(--text-muted);
  font-size: 13px;
}
.sidebar-popular li {
  margin-bottom: 14px;
}
.sidebar-popular a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.popular-number {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--bg-alt);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.popular-title {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.3;
}
.popular-title:hover {
  color: var(--primary);
}
.sidebar-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
}
.sidebar-cta h3 {
  color: var(--white);
  border-bottom: none;
}
.sidebar-cta p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
}
.sidebar-cta .btn {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}
.blog-detail-main {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.blog-detail-header {
  margin-bottom: 24px;
}
.blog-detail-title {
  font-size: 34px;
  color: var(--text);
  margin-top: 10px;
  margin-bottom: 16px;
}
.blog-detail-meta {
  display: flex;
  gap: 16px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.blog-detail-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.blog-detail-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}
.blog-detail-content p {
  margin-bottom: 20px;
}
.blog-detail-content h2 {
  font-size: 24px;
  color: var(--primary);
  margin: 32px 0 16px;
}
.blog-detail-content ul {
  margin-bottom: 24px;
  padding-left: 20px;
  list-style: disc;
}
.blog-detail-content li {
  margin-bottom: 8px;
}

.blog-cta-inline {
  background: var(--bg);
  padding: 30px;
  border-radius: var(--radius);
  border: 1.5px dashed var(--accent);
  text-align: center;
  margin: 36px 0;
}
.blog-cta-inline p {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.blog-detail-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  font-weight: 600;
  color: var(--primary-dark);
}
.blog-detail-share a {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: var(--bg);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-detail-share a:hover {
  background: var(--primary);
  color: var(--white);
}

.blog-author-box {
  background: var(--bg);
  padding: 30px;
  border-radius: var(--radius-lg);
  display: flex;
  gap: 20px;
  margin-top: 40px;
  border: 1px solid var(--border-light);
}
.author-avatar.large {
  width: 64px;
  height: 64px;
  font-size: 24px;
}
.author-box-info h4 {
  font-size: 16px;
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.author-box-info p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== 28. Reveal Animations ===== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.revealed, .reveal-left.revealed, .reveal-right.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== 29. Premium Intro / Manifesto Section ===== */
.intro-section {
  position: relative;
  padding: 120px 0 130px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--bg) 25%, var(--cream) 55%, var(--bg) 100%);
  overflow: hidden;
  isolation: isolate;
}
#introSection {
  scroll-margin-top: 120px;
}
.intro-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 2;
}
.intro-bg-glow {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 50% 25%, rgba(217, 138, 95, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 20% 75%, rgba(79, 148, 165, 0.05) 0%, transparent 35%),
    radial-gradient(ellipse at 80% 65%, rgba(49, 92, 69, 0.04) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}
/* Subtle diagonal pattern overlay */
.intro-bg-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg,
    transparent 0px, transparent 40px,
    rgba(217, 138, 95, 0.012) 40px, rgba(217, 138, 95, 0.012) 41px
  );
  pointer-events: none;
}

/* Floating decorative elements */
.intro-float {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  animation: introFloat 7s ease-in-out infinite;
  will-change: transform;
}
.intro-float svg {
  width: 100%;
  height: 100%;
  display: block;
}
.intro-float-1 {
  top: 10%;
  left: calc(50% - 460px);
  width: 100px;
  height: 100px;
  animation-delay: 0s;
}
.intro-float-2 {
  top: 14%;
  right: calc(50% - 460px);
  width: 120px;
  height: 120px;
  animation-delay: 1.8s;
}
.intro-float-3 {
  bottom: 20%;
  left: calc(50% - 440px);
  width: 90px;
  height: 90px;
  animation-delay: 3.5s;
}
.intro-float-4 {
  bottom: 14%;
  right: calc(50% - 450px);
  width: 80px;
  height: 80px;
  animation-delay: 0.9s;
}
@keyframes introFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1.5deg); }
  66% { transform: translateY(-5px) rotate(-0.5deg); }
}

/* Inner layout */
.intro-inner {
  position: relative;
  z-index: 3;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

/* Badge */
.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-coral-dark);
  background: var(--color-coral-light);
  padding: 6px 22px 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(217, 108, 95, 0.12);
  margin-bottom: 28px;
  position: relative;
  box-shadow: 0 2px 12px rgba(217, 108, 95, 0.06);
}
.intro-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-coral);
  box-shadow: 0 0 10px rgba(217, 108, 95, 0.5);
  flex-shrink: 0;
}

/* Title — Editorial & Bold */
.intro-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.018em;
  position: relative;
}
.intro-title-accent {
  background: linear-gradient(135deg, var(--color-coral) 0%, var(--accent) 50%, var(--color-amber-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.intro-title-underline {
  display: block;
  margin: 12px auto 0;
  text-align: center;
  line-height: 0;
}
.intro-title-underline svg {
  display: inline-block;
  vertical-align: middle;
}

/* Description */
.intro-desc {
  font-size: 17.5px;
  line-height: 1.85;
  color: var(--text);
  max-width: 620px;
  margin: 0 auto 40px;
  font-weight: 420;
  opacity: 0.85;
}

/* Chips grid */
.intro-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}
.intro-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 12px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(16, 41, 31, 0.04);
  transition: all 0.45s var(--ease-out-expo);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  position: relative;
  overflow: hidden;
}
.intro-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  opacity: 0;
  transition: opacity 0.45s var(--ease-out-expo);
  pointer-events: none;
}
.intro-chip:nth-child(1)::before { background: linear-gradient(135deg, rgba(217, 108, 95, 0.06) 0%, transparent 100%); }
.intro-chip:nth-child(2)::before { background: linear-gradient(135deg, rgba(79, 148, 165, 0.06) 0%, transparent 100%); }
.intro-chip:nth-child(3)::before { background: linear-gradient(135deg, rgba(217, 138, 95, 0.06) 0%, transparent 100%); }
.intro-chip:nth-child(4)::before { background: linear-gradient(135deg, rgba(79, 122, 94, 0.06) 0%, transparent 100%); }
.intro-chip:hover::before { opacity: 1; }
.intro-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 138, 95, 0.20);
  box-shadow: 0 16px 36px -10px rgba(217, 138, 95, 0.10);
}
.intro-chip span {
  position: relative;
  z-index: 1;
}

/* Chip icons */
.intro-chip-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.45s var(--ease-out-expo);
}
.intro-chip:hover .intro-chip-icon {
  transform: scale(1.12) rotate(-4deg);
}
.intro-chip:nth-child(1) .intro-chip-icon {
  background: linear-gradient(135deg, var(--color-coral-light) 0%, #FDF6F4 100%);
  box-shadow: 0 2px 10px rgba(217, 108, 95, 0.10);
  color: var(--color-coral-dark);
}
.intro-chip:nth-child(2) .intro-chip-icon {
  background: linear-gradient(135deg, var(--color-sky-light) 0%, #EDF5F7 100%);
  box-shadow: 0 2px 10px rgba(79, 148, 165, 0.10);
  color: var(--color-sky-dark);
}
.intro-chip:nth-child(3) .intro-chip-icon {
  background: linear-gradient(135deg, var(--color-amber-light) 0%, #FDF8F0 100%);
  box-shadow: 0 2px 10px rgba(217, 138, 95, 0.10);
  color: var(--color-amber-dark);
}
.intro-chip:nth-child(4) .intro-chip-icon {
  background: linear-gradient(135deg, var(--color-sage-light) 0%, #E2EEE6 100%);
  box-shadow: 0 2px 10px rgba(79, 122, 94, 0.10);
  color: var(--color-sage-dark);
}
.intro-chip:hover:nth-child(1) .intro-chip-icon {
  background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark));
  box-shadow: 0 6px 20px rgba(217, 108, 95, 0.25);
  color: var(--white);
}
.intro-chip:hover:nth-child(2) .intro-chip-icon {
  background: linear-gradient(135deg, var(--color-sky), var(--color-sky-dark));
  box-shadow: 0 6px 20px rgba(79, 148, 165, 0.25);
  color: var(--white);
}
.intro-chip:hover:nth-child(3) .intro-chip-icon {
  background: linear-gradient(135deg, var(--color-amber), var(--color-amber-dark));
  box-shadow: 0 6px 20px rgba(217, 138, 95, 0.25);
  color: var(--white);
}
.intro-chip:hover:nth-child(4) .intro-chip-icon {
  background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark));
  box-shadow: 0 6px 20px rgba(79, 122, 94, 0.25);
  color: var(--white);
}
.intro-chip:hover .intro-chip-icon svg path,
.intro-chip:hover .intro-chip-icon svg rect,
.intro-chip:hover .intro-chip-icon svg circle,
.intro-chip:hover .intro-chip-icon svg ellipse {
  fill: var(--white) !important;
  stroke: var(--white) !important;
}

/* CTA actions */
.intro-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.intro-btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  box-shadow: 0 4px 20px rgba(16, 41, 31, 0.20);
  padding: 18px 40px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.intro-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 50%);
  border-radius: inherit;
  pointer-events: none;
}
.intro-btn-primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, rgba(217,138,95,0.08), transparent, rgba(79,148,165,0.04));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
}
.intro-btn-primary:hover::after {
  opacity: 1;
}
.intro-btn-primary:hover {
  box-shadow: 0 8px 36px rgba(16, 41, 31, 0.35), 0 0 40px rgba(217, 138, 95, 0.10);
  transform: translateY(-3px) scale(1.02);
}
.intro-btn-outline {
  background: rgba(255,253,248,0.6);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 18px 40px;
  font-size: 15px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.45s var(--ease-out-expo);
}
.intro-btn-outline:hover {
  border-color: var(--primary);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -10px rgba(16, 41, 31, 0.10);
}

/* Intro section responsive */
@media (max-width: 1024px) {
  .intro-section {
    padding: 90px 0 100px;
  }
  .intro-inner {
    max-width: 720px;
  }
  .intro-title {
    font-size: 46px;
  }
  .intro-float-1 { width: 80px; height: 80px; top: 5%; left: 3%; }
  .intro-float-2 { width: 100px; height: 100px; top: 8%; right: 2%; }
  .intro-float-3 { width: 72px; height: 72px; bottom: 14%; left: 4%; }
  .intro-float-4 { width: 65px; height: 65px; bottom: 8%; right: 3%; }
}
@media (max-width: 768px) {
  .intro-section {
    padding: 70px 0 80px;
  }
  .intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-coral), var(--accent), var(--color-amber));
    border-radius: 2px;
    z-index: 4;
    opacity: 0.4;
  }
  .intro-title {
    font-size: 38px;
  }
  .intro-title-underline svg {
    width: 100px;
    height: 6px;
  }
  .intro-desc {
  font-size: 16px;
    max-width: 100%;
  }
  .intro-chips {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .intro-chip {
    width: 100%;
    max-width: 380px;
    justify-content: flex-start;
  }
  .intro-actions {
    flex-direction: column;
    width: 100%;
  }
  .intro-actions .btn {
    width: 100%;
    max-width: 380px;
  }
  .intro-float-1 { width: 44px; height: 44px; top: 3%; left: 3%; }
  .intro-float-2 { width: 52px; height: 52px; top: 4%; right: 3%; }
  .intro-float-3 { width: 38px; height: 38px; bottom: 10%; left: 4%; }
  .intro-float-4 { width: 36px; height: 36px; bottom: 7%; right: 3%; }
}
@media (max-width: 480px) {
  .intro-section {
    padding: 50px 0 70px;
  }
  .intro-section::before {
    width: 44px;
    height: 2px;
    opacity: 0.35;
  }
  .intro-title {
    font-size: 30px;
  }
  .intro-title-underline svg {
    width: 80px;
    height: 5px;
  }
  .intro-badge {
    font-size: 10px;
    padding: 4px 16px 4px 10px;
    margin-bottom: 20px;
  }
  .intro-desc {
    font-size: 14.5px;
    margin-bottom: 28px;
    opacity: 0.9;
  }
  .intro-chip {
    padding: 10px 16px 10px 10px;
    font-size: 13px;
    max-width: 100%;
  }
  .intro-chip-icon {
    width: 34px;
    height: 34px;
  }
  .intro-btn-primary,
  .intro-btn-outline {
    padding: 15px 28px;
    font-size: 14px;
  }
  .intro-float-1 { width: 32px; height: 32px; top: 2%; left: 2%; }
  .intro-float-2 { width: 38px; height: 38px; top: 3%; right: 2%; }
  .intro-float-3 { width: 28px; height: 28px; bottom: 7%; left: 3%; }
  .intro-float-4 { width: 26px; height: 26px; bottom: 5%; right: 2%; }
}
@media (max-width: 390px) {
  .intro-section {
    padding: 40px 0 50px;
  }
  .intro-title {
    font-size: 26px;
  }
  .intro-title-underline svg {
    width: 64px;
    height: 4px;
  }
  .intro-float-1 { width: 24px; height: 24px; top: 2%; left: 2%; }
  .intro-float-2 { width: 30px; height: 30px; top: 2%; right: 2%; }
  .intro-float-3 { width: 22px; height: 22px; bottom: 6%; left: 2%; }
  .intro-float-4 { width: 20px; height: 20px; bottom: 4%; right: 2%; }
}

/* ===== 30. Services Page Hero ===== */
.services-hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1A2E22 50%, #0F2419 100%);
  color: var(--white);
  padding: 80px 0 90px;
  overflow: hidden;
  margin-top: -1px;
}
.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 85% 20%, rgba(217,138,95,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 80%, rgba(79,148,165,0.06) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}
.services-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.03;
  background-image: repeating-linear-gradient(45deg, transparent 0px, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 21px);
}
.services-hero-glow {
  position: absolute;
  left: -120px;
  top: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217,138,95,0.08) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(60px);
}
.services-hero-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.services-hero-left {
  display: flex;
  flex-direction: column;
}
.services-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  padding: 0;
  background: none;
}
.services-hero .breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s var(--ease-out-expo);
}
.services-hero .breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.2);
}
.services-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-light);
  background: rgba(217,138,95,0.10);
  padding: 5px 18px 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(217,138,95,0.12);
  margin-bottom: 20px;
  width: fit-content;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(217,138,95,0.5);
  flex-shrink: 0;
}
.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.015em;
}
.title-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--color-amber) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.services-hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  font-weight: 400;
}
.services-hero-right {
  display: flex;
  justify-content: flex-end;
}
.hero-stats-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-width: 240px;
}
.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(217,138,95,0.10);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.hero-stat-desc {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
}
.hero-stat-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.08), transparent);
}

/* ===== 31. Premium Service Cards ===== */
.services-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 10px;
}
.service-card-premium {
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(16,41,31,0.03);
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(217,138,95,0.03) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out-expo);
}
.service-card-premium:hover .service-card-glow {
  opacity: 1;
}
.service-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px -12px rgba(217,138,95,0.10), 0 4px 12px rgba(16,41,31,0.03);
  border-color: rgba(217,138,95,0.10);
}
.service-card-premium-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 0;
}
.service-card-premium-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s var(--ease-out-expo);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(16,41,31,0.04);
}
.service-card-premium:hover .service-card-premium-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 24px rgba(16,41,31,0.08);
}
.theme-accent-0 .service-card-premium-icon { background: linear-gradient(135deg, var(--color-coral-light) 0%, #FDF6F4 100%); color: var(--color-coral-dark); }
.theme-accent-1 .service-card-premium-icon { background: linear-gradient(135deg, var(--color-sky-light) 0%, #EDF5F7 100%); color: var(--color-sky-dark); }
.theme-accent-2 .service-card-premium-icon { background: linear-gradient(135deg, var(--color-amber-light) 0%, #FDF8F0 100%); color: var(--color-amber-dark); }
.theme-accent-3 .service-card-premium-icon { background: linear-gradient(135deg, var(--color-sage-light) 0%, #E2EEE6 100%); color: var(--color-sage-dark); }
.theme-accent-0:hover .service-card-premium-icon { background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark)); color: var(--white); }
.theme-accent-1:hover .service-card-premium-icon { background: linear-gradient(135deg, var(--color-sky), var(--color-sky-dark)); color: var(--white); }
.theme-accent-2:hover .service-card-premium-icon { background: linear-gradient(135deg, var(--color-amber), var(--color-amber-dark)); color: var(--white); }
.theme-accent-3:hover .service-card-premium-icon { background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark)); color: var(--white); }
.theme-accent-0:hover .service-card-premium-icon i,
.theme-accent-1:hover .service-card-premium-icon i,
.theme-accent-2:hover .service-card-premium-icon i,
.theme-accent-3:hover .service-card-premium-icon i { filter: brightness(0) invert(1); }
.service-card-premium-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  opacity: 0.5;
  transition: opacity 0.4s var(--ease-out-expo);
}
.service-card-premium:hover .service-card-premium-num { opacity: 0.8; }
.service-card-premium-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-premium-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card-premium-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
  flex: 1;
}
.service-benefit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.benefit-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg);
  padding: 4px 12px 4px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  transition: all 0.3s var(--ease-out-expo);
}
.benefit-chip i {
  color: var(--color-sage);
  flex-shrink: 0;
}
.benefit-chip:hover {
  border-color: var(--color-sage);
  color: var(--text);
}
.service-premium-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  padding: 9px 20px;
  border-radius: var(--radius-full);
  background: var(--accent-light);
  transition: all 0.4s var(--ease-out-expo);
  width: fit-content;
  margin-top: auto;
  border: 1px solid transparent;
}
.service-premium-link:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  transform: translateX(3px);
  box-shadow: 0 4px 16px rgba(217,138,95,0.15);
  border-color: transparent;
}
.service-premium-link i {
  transition: transform 0.3s var(--ease-out-expo);
}
.service-premium-link:hover i {
  transform: translateX(3px);
  filter: brightness(0) invert(1);
}

/* ===== 32. How We Choose Section ===== */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.choose-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 16px rgba(16,41,31,0.02);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
}
.choose-card:nth-child(1)::before { background: linear-gradient(90deg, var(--color-coral), var(--color-coral-light)); }
.choose-card:nth-child(2)::before { background: linear-gradient(90deg, var(--color-sky), var(--color-sky-light)); }
.choose-card:nth-child(3)::before { background: linear-gradient(90deg, var(--color-amber), var(--color-amber-light)); }
.choose-card:nth-child(4)::before { background: linear-gradient(90deg, var(--color-sage), var(--color-sage-light)); }
.choose-card:hover::before { opacity: 1; }
.choose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(217,138,95,0.06);
  border-color: rgba(217,138,95,0.08);
}
.choose-num {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.choose-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.5s var(--ease-out-expo);
}
.ci-coral { background: linear-gradient(135deg, var(--color-coral-light) 0%, #FDF6F4 100%); color: var(--color-coral-dark); }
.ci-sky { background: linear-gradient(135deg, var(--color-sky-light) 0%, #EDF5F7 100%); color: var(--color-sky-dark); }
.ci-amber { background: linear-gradient(135deg, var(--color-amber-light) 0%, #FDF8F0 100%); color: var(--color-amber-dark); }
.ci-sage { background: linear-gradient(135deg, var(--color-sage-light) 0%, #E2EEE6 100%); color: var(--color-sage-dark); }
.choose-card:nth-child(1):hover .choose-icon { background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark)); color: var(--white); }
.choose-card:nth-child(2):hover .choose-icon { background: linear-gradient(135deg, var(--color-sky), var(--color-sky-dark)); color: var(--white); }
.choose-card:nth-child(3):hover .choose-icon { background: linear-gradient(135deg, var(--color-amber), var(--color-amber-dark)); color: var(--white); }
.choose-card:nth-child(4):hover .choose-icon { background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark)); color: var(--white); }
.choose-card:hover .choose-icon i { filter: brightness(0) invert(1); }
.choose-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
}
.choose-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
}

/* ===== 33. Guide Section ===== */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.guide-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 16px rgba(16,41,31,0.02);
  transition: all 0.5s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.guide-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
  pointer-events: none;
  border-radius: inherit;
}
.guide-card:nth-child(1)::before { background: linear-gradient(135deg, rgba(217,108,95,0.04) 0%, transparent 60%); }
.guide-card:nth-child(2)::before { background: linear-gradient(135deg, rgba(79,148,165,0.04) 0%, transparent 60%); }
.guide-card:nth-child(3)::before { background: linear-gradient(135deg, rgba(217,138,95,0.04) 0%, transparent 60%); }
.guide-card:nth-child(4)::before { background: linear-gradient(135deg, rgba(79,122,94,0.04) 0%, transparent 60%); }
.guide-card:hover::before { opacity: 1; }
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(217,138,95,0.06);
  border-color: rgba(217,138,95,0.08);
}
.guide-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.5s var(--ease-out-expo);
}
.gi-weight { background: linear-gradient(135deg, var(--color-coral-light) 0%, #FDF6F4 100%); color: var(--color-coral-dark); }
.gi-laptop { background: linear-gradient(135deg, var(--color-sky-light) 0%, #EDF5F7 100%); color: var(--color-sky-dark); }
.gi-heart { background: linear-gradient(135deg, var(--color-amber-light) 0%, #FDF8F0 100%); color: var(--color-amber-dark); }
.gi-leaf { background: linear-gradient(135deg, var(--color-sage-light) 0%, #E2EEE6 100%); color: var(--color-sage-dark); }
.guide-card:nth-child(1):hover .guide-icon { background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark)); color: var(--white); }
.guide-card:nth-child(2):hover .guide-icon { background: linear-gradient(135deg, var(--color-sky), var(--color-sky-dark)); color: var(--white); }
.guide-card:nth-child(3):hover .guide-icon { background: linear-gradient(135deg, var(--color-amber), var(--color-amber-dark)); color: var(--white); }
.guide-card:nth-child(4):hover .guide-icon { background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark)); color: var(--white); }
.guide-card:hover .guide-icon i { filter: brightness(0) invert(1); }
.guide-card h3 {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}
.guide-card p {
  font-size: 15.5px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 18px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.guide-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  z-index: 1;
  width: fit-content;
}
.guide-link:hover {
  color: var(--accent);
  transform: translateX(4px);
}
.guide-link i {
  transition: transform 0.3s var(--ease-out-expo);
}
.guide-link:hover i {
  transform: translateX(3px);
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

/* ===== 34. Detail Page Hero ===== */
.detail-hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1A2E22 50%, #0F2419 100%);
  color: var(--white);
  padding: 70px 0 80px;
  overflow: hidden;
  margin-top: -1px;
}
.detail-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 25% 50%, rgba(217,138,95,0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 75% 50%, rgba(79,148,165,0.04) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}
.detail-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.025;
  background-image: repeating-linear-gradient(45deg, transparent 0px, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 21px);
}
.detail-hero-glow {
  position: absolute;
  right: -80px;
  top: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(217,138,95,0.10) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(60px);
}
.detail-hero-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.detail-hero-content {
  display: flex;
  flex-direction: column;
}
.detail-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  padding: 0;
  background: none;
}
.detail-hero .breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s var(--ease-out-expo);
}
.detail-hero .breadcrumb a:hover { color: var(--accent); }
.detail-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-light);
  background: rgba(217,138,95,0.10);
  padding: 5px 18px 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(217,138,95,0.12);
  margin-bottom: 16px;
  width: fit-content;
}
.detail-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.detail-hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin-bottom: 28px;
}
.detail-hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.detail-hero-visual {
  display: flex;
  justify-content: flex-end;
}
.detail-hero-image-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 48px rgba(16,41,31,0.20);
  background: var(--primary);
}
.detail-hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-hero-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
  color: rgba(255,255,255,0.3);
}
.detail-hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,41,31,0.25) 0%, transparent 50%);
  pointer-events: none;
}
.detail-hero-image-shine {
  position: absolute;
  top: -30%;
  left: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.detail-hero-image-ring {
  position: absolute;
  inset: -2px;
  border-radius: 21px;
  border: 1.5px solid rgba(217,138,95,0.15);
  pointer-events: none;
}

/* ===== 35. Suitable For Grid ===== */
.suitable-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.suitable-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease-out-expo);
}
.suitable-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-sky);
  box-shadow: 0 8px 20px rgba(79,148,165,0.06);
}
.suitable-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--color-sky-light);
  color: var(--color-sky-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s var(--ease-out-expo);
}
.suitable-card:hover .suitable-icon {
  background: linear-gradient(135deg, var(--color-sky), var(--color-sky-dark));
  color: var(--white);
}
.suitable-card span {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

/* ===== 36. Detail Process ===== */
.detail-process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.detail-process-line {
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 1;
}
.detail-process-line-fill {
  height: 100%;
  width: 0;
  background: var(--accent);
  transition: width 1s ease;
}
.detail-process-step {
  position: relative;
  z-index: 2;
}
.detail-process-card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 28px 22px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 16px rgba(16,41,31,0.02);
  transition: all 0.5s var(--ease-out-expo);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.detail-process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), var(--color-coral));
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
  border-radius: 0 2px 2px 0;
}
.detail-process-card:hover::before { opacity: 0.3; }
.detail-process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(217,138,95,0.06);
  border-color: rgba(217,138,95,0.08);
}
.detail-process-num {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-dark);
  background: var(--accent-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.detail-process-card h3 {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.detail-process-card p {
  font-size: 15.5px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== 37. Benefits Grid ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.benefit-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease-out-expo);
}
.benefit-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-amber);
  box-shadow: 0 8px 20px rgba(217,138,95,0.06);
}
.benefit-check {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-amber-light) 0%, var(--bg) 100%);
  color: var(--color-amber-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s var(--ease-out-expo);
}
.benefit-card:hover .benefit-check {
  background: linear-gradient(135deg, var(--color-amber), var(--color-amber-dark));
  color: var(--white);
  transform: scale(1.05);
}
.benefit-card span {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

/* ===== 38. Detail Related ===== */
.detail-related .services-grid-premium {
  margin-top: 0;
}

/* ===== 39. Responsive: Service Pages ===== */
@media (max-width: 1024px) {
  .services-hero-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .services-hero-right { justify-content: flex-start; }
  .hero-stats-strip { flex-direction: row; flex-wrap: wrap; gap: 12px; padding: 20px; min-width: auto; }
  .hero-stat-divider { width: 1px; height: 32px; flex-shrink: 0; }
  .hero-stat-item { flex: 1; min-width: 120px; }
  .services-grid-premium { grid-template-columns: repeat(2, 1fr); }
  .choose-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-hero-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .detail-hero-visual { justify-content: flex-start; }
  .detail-hero-image-card { max-width: 100%; }
  .suitable-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-process-track { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .detail-process-line { display: none; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .services-hero { padding: 50px 0 60px; }
  .services-hero-wrapper { gap: 28px; }
  .hero-stats-strip { flex-direction: column; padding: 18px; }
  .hero-stat-divider { width: 100%; height: 1px; }
  .services-grid-premium { grid-template-columns: 1fr; gap: 20px; }
  .choose-grid { grid-template-columns: 1fr; gap: 16px; }
  .guide-grid { grid-template-columns: 1fr; gap: 16px; }
  .detail-hero { padding: 50px 0 60px; }
  .detail-hero-wrapper { gap: 28px; }
  .detail-hero-actions { flex-direction: column; }
  .detail-hero-actions .btn { width: 100%; justify-content: center; }
  .suitable-grid { grid-template-columns: 1fr; gap: 12px; }
  .detail-process-track { grid-template-columns: 1fr; gap: 14px; margin-top: 30px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 12px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
}
@media (max-width: 480px) {
  .services-hero { padding: 40px 0 50px; }
  .services-hero-title { font-size: 28px; }
  .services-hero-desc { font-size: 15px; }
  .service-card-premium-header { padding: 20px 20px 0; }
  .service-card-premium-body { padding: 16px 20px 20px; }
  .service-card-premium-title { font-size: 19px; }
  .service-card-premium-desc { font-size: 15.5px; }
  .choose-card { padding: 24px 20px; }
  .choose-card h3 { font-size: 17.5px; }
  .choose-card p { font-size: 15.5px; }
  .guide-card { padding: 22px 20px; }
  .guide-card p { font-size: 15px; }
  .detail-hero { padding: 40px 0 50px; }
  .detail-hero-title { font-size: 26px; }
  .detail-hero-desc { font-size: 15px; margin-bottom: 20px; }
  .detail-process-card { padding: 22px 18px; }
}
@media (max-width: 390px) {
  .services-hero { padding: 30px 0 40px; }
  .services-hero-title { font-size: 24px; }
  .service-card-premium-header { padding: 16px 16px 0; }
  .service-card-premium-body { padding: 14px 16px 18px; }
  .choose-card { padding: 20px 16px; }
  .detail-hero { padding: 30px 0 40px; }
  .detail-hero-title { font-size: 24px; }
  .detail-hero-desc { font-size: 15px; }
  .suitable-card { padding: 14px 16px; }
  .benefit-card { padding: 14px 16px; }
}

/* ===== 30 (cont). Responsive Styles ===== */

/* Large Screens */
@media (max-width: 1200px) {
  .services-grid,
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .about-wrapper-new {
    gap: 40px;
  }
  .stats-strip-grid {
    gap: 20px;
  }
  .approach-grid {
    gap: 16px;
  }
}

/* Tablets Landscape */
@media (max-width: 1024px) {
  .section {
    padding: 80px 0;
  }
  .about-wrapper-new {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 50px;
  }
  .about-visual-showcase {
    max-width: 480px;
    margin: 0 auto 30px;
    width: 100%;
  }
  .about-stats-strip {
    padding: 28px 32px;
  }
  .stats-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stat-strip-item::after {
    display: none !important;
  }
  .about-hero-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-hero-right {
    justify-content: flex-start;
  }
  .about-hero { padding: 60px 0 70px; }
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .about-certs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* Tablets Portrait */
@media (max-width: 768px) {
  .services-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .process-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .process-line {
    display: none;
  }
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-left {
    position: static;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .about-hero { padding: 50px 0 60px; }
  .about-hero-wrapper { gap: 28px; }
  .about-hero-desc { max-width: 100%; }
  .about-hero-subtitle { max-width: 100%; }

  :root {
    --navbar-h: 58px;
    --navbar-h-scrolled: 52px;
    --mobile-bar-offset: calc(76px + max(12px, env(safe-area-inset-bottom)));
  }

  .header {
    transform: none !important;
    position: sticky;
    top: 0;
    z-index: 1400;
  }

  .header-top {
    display: none !important;
  }

  .navbar {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255, 249, 240, 0.98);
    z-index: 1400;
  }

  .navbar .container {
    height: var(--navbar-h);
    padding-top: 0;
    padding-bottom: 0;
    gap: 12px;
  }

  .nav-menu {
    display: none !important;
  }

  .whatsapp-float {
    display: none !important;
  }

  .mobile-contact-bar {
    display: grid;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  body.mobile-menu-open .mobile-contact-bar {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(120%);
  }

  .scroll-top {
    bottom: calc(12px + var(--mobile-bar-offset));
  }

  body {
    padding-bottom: var(--mobile-bar-offset);
    font-size: 16px;
  }

  .nav-logo {
    max-height: 44px;
  }
  .navbar.scrolled .nav-logo {
    max-height: 38px;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    margin-left: auto;
  }

  .logo {
    z-index: 1;
    flex-shrink: 0;
    min-width: 0;
  }

  .trust-strip-inner {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 20px 0;
  }
  .trust-divider {
    display: none;
  }
  .trust-track-wrapper {
    width: 100%;
  }
  .hero-slide {
    align-items: flex-start;
    padding-top: 100px;
  }
  .hero-content {
    padding-top: 20px;
  }
  .hero {
    min-height: 85vh;
    padding-bottom: calc(var(--mobile-bar-offset) + 12px);
    box-sizing: border-box;
  }
  .hero-panel {
    width: calc(100% - 32px);
    max-width: 540px;
    margin-inline: auto;
    border-radius: 24px;
    box-sizing: border-box;
    padding: 0;
  }
  .hero-panel-inner {
    padding: 38px 28px;
    border-radius: 24px;
  }
  .hero-panel::after { display: none; }
  .hero-panel .hero-panel-orbit { display: none; }
  .hero-panel-pattern { display: none; }
  .hero-panel-tag {
    font-size: 10.5px;
    padding: 4px 16px 4px 12px;
    margin-bottom: 16px;
    letter-spacing: 0.18em;
  }
  .hero-panel-title {
    font-size: 32px;
    line-height: 1.08;
  }
  .hero-panel-title::after {
    height: 2px;
    bottom: 1px;
  }
  .hero-panel-desc {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 100%;
  }
  .hero-features {
    gap: 8px;
    margin-bottom: 26px;
  }
  .hero-feature {
    padding: 5px 18px 5px 7px;
    gap: 12px;
  }
  .hero-feature-icon {
    width: 48px;
    height: 48px;
  }
  .hero-feature-icon svg {
    width: 24px !important;
    height: 24px !important;
  }
  .hero-feature-label {
    font-size: 14px;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .btn {
    padding: 14px 28px;
    font-size: 14.5px;
    border-radius: 50px;
  }
  .slider-counter {
    display: none;
  }
  .slider-progress {
    height: 2px;
  }
  .slider-controls {
    bottom: calc(var(--mobile-bar-offset) + 0px);
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    gap: 0;
  }
  .slider-ui-shell {
    padding: 8px 20px;
    gap: 14px;
    background: rgba(16, 41, 31, 0.50);
    backdrop-filter: blur(28px) saturate(1.5);
    -webkit-backdrop-filter: blur(28px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 28px rgba(16, 41, 31, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
  .slider-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
  }
  .slider-btn i, .slider-btn svg {
    width: 14px !important;
    height: 14px !important;
  }
  .slider-dots {
    gap: 12px;
  }
  .dot {
    width: 6px;
    height: 6px;
  }
  .dot.active {
    width: 20px;
  }
  .hero-panel-inner {
    padding-bottom: 30px;
  }

  .section-title {
    font-size: 34px;
  }
  .value-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .value-title { font-size: 36px; }
  
  .blog-layout,
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }
  
  .certificates-grid,
  .about-certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Screens */
@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }
  .services-grid,
  .blog-grid,
  .process-track,
  .certificates-grid,
  .about-certs-grid {
    grid-template-columns: 1fr;
  }
  .approach-grid {
    grid-template-columns: 1fr;
  }
  .contact-info {
    grid-template-columns: 1fr;
  }
  .contact-map {
    grid-column: span 1;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-slide {
    align-items: flex-start;
    padding-top: 80px;
  }
  .hero-content {
    padding-top: 10px;
  }
  .hero {
    min-height: 82vh;
    padding-bottom: calc(var(--mobile-bar-offset) + 8px);
  }
  .hero-panel {
    width: calc(100% - 32px);
    max-width: 460px;
    margin-inline: auto;
    border-radius: 22px;
    box-sizing: border-box;
    padding: 0;
  }
  .hero-panel-inner {
    padding: 28px 22px;
    border-radius: 22px;
  }
  .hero-panel::after { display: none; }
  .hero-panel .hero-panel-orbit { display: none; }
  .hero-panel-pattern { display: none; }
  .hero-panel-tag {
    font-size: 10px;
    padding: 3px 14px 3px 10px;
    margin-bottom: 14px;
    letter-spacing: 0.16em;
  }
  .hero-panel-title {
    font-size: 28px;
    line-height: 1.1;
  }
  .hero-panel-title::after {
    height: 2px;
    bottom: 1px;
    width: 70%;
  }
  .hero-panel-desc {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .hero-features {
    flex-direction: column;
    gap: 7px;
    width: 100%;
    margin-bottom: 20px;
  }
  .hero-feature {
    width: 100%;
    padding: 6px 12px 6px 6px;
    gap: 10px;
    box-sizing: border-box;
    border-radius: var(--radius);
  }
  .hero-feature-icon {
    width: 40px;
    height: 40px;
  }
  .hero-feature-icon svg {
    width: 20px !important;
    height: 20px !important;
  }
  .hero-feature-label {
    font-size: 14px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .hero-actions .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 14.5px;
    box-sizing: border-box;
  }
  .hero-actions .btn-outline {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--text);
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .hero-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(217, 138, 95, 0.20);
  }
  .slider-counter {
    display: none;
  }
  .slider-progress {
    height: 2px;
  }
  .slider-controls {
    bottom: calc(var(--mobile-bar-offset) + 0px);
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    gap: 0;
  }
  .slider-ui-shell {
    padding: 6px 16px;
    gap: 10px;
    background: rgba(16, 41, 31, 0.55);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 5px 20px rgba(16, 41, 31, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
  .slider-btn {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
  }
  .slider-btn i, .slider-btn svg {
    width: 13px !important;
    height: 13px !important;
  }
  .slider-btn:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: scale(1.05);
  }
  .slider-dots {
    gap: 10px;
  }
  .dot {
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.35);
  }
  .dot.active {
    width: 14px;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(217, 138, 95, 0.20);
  }
  .hero-panel-inner {
    padding-bottom: 26px;
  }
  .hero-scroll-indicator {
    display: none !important;
  }
  .value-section { padding: 60px 0; }
  .value-title { font-size: 32px; }
  .value-grid { grid-template-columns: 1fr; gap: 16px; }
  .value-actions { flex-direction: column; width: 100%; }
  .value-actions .btn { width: 100%; }
  .value-desc { font-size: 16px; }
  .value-card p { font-size: 15.5px; }
  .contact-card p { font-size: 15px; }
  .contact-form {
    padding: 24px 16px;
  }
  .trust-label { font-size: 12px; }
  .trust-label-icon { width: 36px; height: 36px; }
  .trust-badge { padding: 8px 16px; }
  .trust-badge-icon { width: 26px; height: 26px; }
  .trust-badge-label { font-size: 14px; }

  .mobile-drawer {
    padding: 24px 20px;
  }
  .mobile-drawer-sub a {
    padding: 10px 14px 10px 32px;
  }
  .mobile-drawer-sub a:hover,
  .mobile-drawer-sub a:focus-visible {
    padding-left: 36px;
  }
  .about-hero { padding: 40px 0 50px; }
  .about-hero-title { font-size: 30px; }
  .about-hero-subtitle { font-size: 17px; }
  .about-hero-desc { font-size: 16px; }
  .about-hero-right .hero-stats-strip { flex-direction: column; }
  .about-hero-right .hero-stat-divider { width: 100%; height: 1px; }
  .about-editorial-title { font-size: 34px; }
  .about-quote { padding: 16px 18px; flex-direction: column; gap: 12px; }
  .about-quote-text p { font-size: 16px; }
  .approach-card { padding: 26px 22px; }
  .approach-card h3 { font-size: 17.5px; }
  .approach-card p { font-size: 15.5px; }
  .about-cert-card { padding: 18px 20px; }
  .about-stats-strip { padding: 24px 20px; border-radius: 18px; }
  .stats-strip-grid { grid-template-columns: 1fr; gap: 14px; }
  .stat-strip-item { gap: 14px; }
  .stat-strip-item:not(:last-child)::after { display: none !important; }
  .stat-strip-icon-wrap { width: 44px; height: 44px; }
  .stat-strip-number { font-size: 22px; }
  .stat-strip-label { font-size: 12px; text-transform: none; letter-spacing: 0.02em; }
}

/* Very small screens */
@media (max-width: 390px) {
  .hero-slide {
    align-items: flex-start;
    padding-top: 60px;
  }
  .hero-content {
    padding-top: 6px;
  }
  .hero {
    min-height: 78vh;
    padding-bottom: calc(var(--mobile-bar-offset) + 6px);
  }
  .hero-panel {
    width: calc(100% - 32px);
    margin-inline: auto;
    border-radius: 18px;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
  }
  .hero-panel-inner {
    padding: 22px 18px;
    border-radius: 18px;
  }
  .hero-panel-edge {
    border-radius: 19px;
  }
  .hero-panel-tag {
    font-size: 9.5px;
    padding: 2px 12px 2px 8px;
    margin-bottom: 12px;
    letter-spacing: 0.14em;
  }
  .hero-panel-title {
    font-size: 24px;
    line-height: 1.12;
  }
  .hero-panel-title::after {
    height: 1.5px;
    bottom: 0;
    width: 60%;
  }
  .hero-panel-desc {
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 16px;
  }
  .hero-features {
    gap: 6px;
    margin-bottom: 16px;
  }
  .hero-feature {
    padding: 5px 10px 5px 5px;
    gap: 8px;
    border-radius: 10px;
  }
  .hero-feature-icon {
    width: 36px;
    height: 36px;
  }
  .hero-feature-icon svg {
    width: 18px !important;
    height: 18px !important;
  }
  .hero-feature-label {
    font-size: 13px;
  }
  .hero-actions {
    gap: 6px;
  }
  .hero-actions .btn {
    padding: 14px 24px;
    font-size: 14.5px;
    border-radius: 40px;
  }
  .slider-counter {
    display: none;
  }
  .slider-progress {
    height: 1.5px;
  }
  .slider-controls {
    bottom: calc(var(--mobile-bar-offset) + 0px);
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    gap: 0;
  }
  .slider-ui-shell {
    padding: 5px 12px;
    gap: 8px;
    background: rgba(16, 41, 31, 0.60);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 16px rgba(16, 41, 31, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }
  .slider-btn {
    width: 30px;
    height: 30px;
  }
  .slider-btn i, .slider-btn svg {
    width: 12px !important;
    height: 12px !important;
  }
  .slider-dots {
    gap: 8px;
  }
  .dot {
    width: 4px;
    height: 4px;
  }
  .dot.active {
    width: 12px;
  }
  .hero-panel-inner {
    padding-bottom: 24px;
  }
  .hero-scroll-indicator {
    display: none !important;
  }
  .about-hero { padding: 30px 0 40px; }
  .about-hero-title { font-size: 24px; }
  .about-hero-subtitle { font-size: 15px; }
  .about-editorial-title { font-size: 28px; }
  .about-quote { padding: 14px 16px; }
  .about-quote-text p { font-size: 15px; }
  .approach-card { padding: 20px 16px; }
  .about-cert-card { padding: 16px 16px; }
  .about-stats-strip { padding: 18px 14px; border-radius: 16px; }
  .stats-strip-grid { gap: 12px; }
  .stat-strip-item { gap: 12px; }
  .stat-strip-icon-wrap { width: 38px; height: 38px; }
  .stat-strip-number { font-size: 21px; }
  .stat-strip-label { font-size: 12px; }
}

/* ===== GLOBAL MOBILE OVERFLOW GUARD ===== */
@media (max-width: 768px) {
  /* Global mobile overflow guard */
  html, body {
    overflow-x: hidden;
  }
  /* Allow flex items to shrink normally */
  img, svg, video, canvas, iframe {
    max-width: 100%;
    height: auto;
  }
  /* Ensure sections never overflow */
  .section,
  .hero,
  .footer,
  .trust-strip {
    overflow-x: hidden;
    max-width: 100vw;
  }
  /* Container safe on all screens */
  .container {
    padding: 0 16px;
    box-sizing: border-box;
    overflow: visible;
  }
  /* Grid and flex items won't force overflow */
  .services-grid > *,
  .blog-grid > *,
  .footer-grid > *,
  .process-track > * {
    min-width: 0;
  }
}

/* ===== MOBILE DRAWER — Body-level, no ancestor containing-block issues ===== */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 4990;
  background: rgba(16, 41, 31, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out-expo), visibility 0.5s var(--ease-out-expo);
}
.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100dvh;
  z-index: 5000;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(217,138,95,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(49,92,69,0.05) 0%, transparent 60%),
    rgba(255, 249, 240, 0.94);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-radius: 28px 0 0 28px;
  border-left: 1px solid rgba(217,138,95,0.12);
  box-shadow: -16px 0 48px rgba(16,41,31,0.10), -4px 0 16px rgba(217,138,95,0.04);
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  box-sizing: border-box;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.5s var(--ease-out-expo), opacity 0.45s var(--ease-out-expo), visibility 0.45s var(--ease-out-expo);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.mobile-drawer::before {
  content: '';
  position: absolute;
  left: 0;
  top: 48px;
  bottom: 48px;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--primary-light), rgba(217,138,95,0.2));
  border-radius: 0 3px 3px 0;
  opacity: 0.35;
  pointer-events: none;
}
.mobile-drawer.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 0 20px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(217,138,95,0.08);
  flex-shrink: 0;
}
.mobile-drawer-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.03em;
}
.mobile-drawer-title-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(217,138,95,0.35);
}
.mobile-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(217,138,95,0.10);
  color: var(--text-light);
  transition: var(--transition);
  cursor: pointer;
  flex-shrink: 0;
}

/* Close button only inside drawer — never in header */
.header .mobile-drawer-close,
.navbar .mobile-drawer-close {
  display: none !important;
}
.mobile-drawer-close:hover {
  background: rgba(217,138,95,0.08);
  border-color: rgba(217,138,95,0.20);
  color: var(--primary);
  transform: rotate(90deg);
}
.mobile-drawer-close svg {
  display: block;
  width: 20px;
  height: 20px;
}
.mobile-drawer-close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.mobile-drawer-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
  gap: 8px;
}
.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  margin: 0;
}
.mobile-drawer-links li {
  width: 100%;
}
.mobile-drawer-links > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px 14px 36px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(217,138,95,0.06);
  border-radius: var(--radius);
  position: relative;
  box-sizing: border-box;
  transition: all 0.35s var(--ease-out-expo);
}
.mobile-drawer-links > li > a::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.35;
  transition: var(--transition);
}
.mobile-drawer-links > li > a::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(-45deg);
  opacity: 0.35;
  transition: var(--transition);
  flex-shrink: 0;
}
.mobile-drawer-links > li > a:hover,
.mobile-drawer-links > li > a:focus-visible {
  background: rgba(255,255,255,0.75);
  border-color: rgba(217,138,95,0.14);
  color: var(--primary-dark);
  transform: translateX(-2px);
  box-shadow: 0 4px 16px rgba(217,138,95,0.06);
}
.mobile-drawer-links > li > a:hover::before,
.mobile-drawer-links > li > a:focus-visible::before {
  opacity: 1;
  box-shadow: 0 0 10px rgba(217,138,95,0.30);
}
.mobile-drawer-links > li > a:hover::after,
.mobile-drawer-links > li > a:focus-visible::after {
  opacity: 0.7;
  transform: rotate(-45deg) translateX(2px);
}
.mobile-drawer-links > li > a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- Sub-menu toggle special row --- */
.mobile-drawer-sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.mobile-drawer-sub-toggle .mobile-drawer-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.4s var(--ease-out-expo);
}
.mobile-drawer-sub-toggle::after {
  display: none !important;
}

/* --- Sub-menu panel --- */
.mobile-drawer-sub {
  list-style: none;
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo), opacity 0.4s var(--ease-out-expo), margin 0.4s var(--ease-out-expo);
  opacity: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.mobile-drawer-has-sub.open .mobile-drawer-sub {
  max-height: 400px;
  opacity: 1;
  margin: 4px 0 2px;
  pointer-events: auto;
}
.mobile-drawer-sub li {
  width: 100%;
}
.mobile-drawer-sub a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px 10px 36px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  border-radius: var(--radius-sm);
  position: relative;
  box-sizing: border-box;
  transition: var(--transition);
}
.mobile-drawer-sub a::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary-light);
  opacity: 0.3;
  transition: var(--transition);
}
.mobile-drawer-sub a:hover,
.mobile-drawer-sub a:focus-visible {
  background: rgba(49,92,69,0.04);
  color: var(--primary);
  padding-left: 40px;
}
.mobile-drawer-sub a:hover::before,
.mobile-drawer-sub a:focus-visible::before {
  opacity: 0.8;
  background: var(--accent);
}
.mobile-drawer-sub a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.mobile-drawer-cta {
  margin-top: 16px;
  flex-shrink: 0;
}
.mobile-drawer-cta-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  box-shadow: 0 4px 20px rgba(49, 92, 69, 0.18), 0 0 0 1px rgba(217,138,95,0.08);
  letter-spacing: 0.02em;
}
.mobile-drawer-cta-btn:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(49, 92, 69, 0.24), 0 0 0 1px rgba(217,138,95,0.12);
}
.mobile-drawer-cta-btn:active {
  transform: translateY(0);
}
.mobile-drawer-cta-btn i,
.mobile-drawer-cta-btn svg {
  transition: transform 0.3s var(--ease-out-expo);
}
.mobile-drawer-cta-btn:hover i,
.mobile-drawer-cta-btn:hover svg {
  transform: translateX(4px);
}
.mobile-drawer-cta-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.mobile-drawer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding: 18px 0 0;
  border-top: 1px solid rgba(217,138,95,0.08);
  flex-shrink: 0;
  gap: 12px;
  background: rgba(255,255,255,0.20);
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
  margin-bottom: -28px;
  padding-bottom: 28px;
  border-radius: 0 0 0 28px;
}
.mobile-drawer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(217,138,95,0.06);
}
.mobile-drawer-phone:hover {
  color: var(--primary-dark);
  background: rgba(255,255,255,0.6);
  border-color: rgba(217,138,95,0.14);
}
.mobile-drawer-phone i {
  color: var(--accent);
  flex-shrink: 0;
}
.mobile-drawer-phone:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.mobile-drawer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-drawer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(217,138,95,0.06);
  color: var(--text-light);
  transition: var(--transition);
}
.mobile-drawer-social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(217,138,95,0.20);
}
.mobile-drawer-social-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- Staggered entrance animation --- */
@keyframes drawerItemIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.mobile-drawer.active .mobile-drawer-links > li {
  animation: drawerItemIn 0.45s var(--ease-out-expo) both;
}
.mobile-drawer.active .mobile-drawer-links > li:nth-child(1) { animation-delay: 0.04s; }
.mobile-drawer.active .mobile-drawer-links > li:nth-child(2) { animation-delay: 0.08s; }
.mobile-drawer.active .mobile-drawer-links > li:nth-child(3) { animation-delay: 0.12s; }
.mobile-drawer.active .mobile-drawer-links > li:nth-child(4) { animation-delay: 0.16s; }
.mobile-drawer.active .mobile-drawer-links > li:nth-child(5) { animation-delay: 0.20s; }
.mobile-drawer.active .mobile-drawer-cta {
  animation: drawerItemIn 0.45s var(--ease-out-expo) 0.24s both;
}
.mobile-drawer.active .mobile-drawer-footer {
  animation: drawerItemIn 0.45s var(--ease-out-expo) 0.30s both;
}

/* Hide mobile drawer on desktop */
@media (min-width: 769px) {
  .mobile-drawer,
  .mobile-drawer-overlay,
  .mobile-contact-bar {
    display: none !important;
  }
}

/* Very small screens: tighter drawer */
@media (max-width: 390px) {
  .mobile-drawer {
    padding: 24px 16px;
    width: min(86vw, 360px);
  }
  .mobile-drawer-footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  .mobile-drawer-links > li > a {
    padding: 13px 12px 13px 32px;
    font-size: 14.5px;
  }
  .mobile-drawer-links > li > a::before {
    left: 12px;
  }
}

/* ===== 30. Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.3s !important;
  }
  .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; }
  .hero-panel, .hero-panel-tag, .hero-panel-title, .hero-panel-desc,
  .hero-feature, .hero-actions .btn { opacity: 1; transform: none; }
  .hero-content::before, .hero-panel::before, .hero-panel::after,
  .hero-panel .hero-panel-orbit, .hero-panel-pattern,
  .hero-panel-shine, .hero-panel-edge, .hero-panel-inner { opacity: 1; transform: none; }
  .hero-slide-bg { transform: none !important; }
  .process-line-fill { width: 100% !important; }
  .scroll-dot { animation: none; opacity: 0.6; }
  .trust-track { animation: none; }
  .mobile-drawer.active .mobile-drawer-links > li,
  .mobile-drawer.active .mobile-drawer-cta,
  .mobile-drawer.active .mobile-drawer-footer {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .mobile-contact-bar {
    animation: none;
    transform: translateY(0);
    opacity: 1;
  }

  body.mobile-menu-open .mobile-contact-bar {
    transform: translateY(120%);
    opacity: 0;
  }
}

/* ===================================================================
   PREMIUM 2026 — Section Refinements (visual only)
   =================================================================== */

/* --- Icon badge system --- */
[class*="icon-wrap"] i,
[class*="icon-wrap"] svg,
.service-icon i,
.service-icon svg,
.process-icon i,
.process-icon svg,
.value-card-icon i,
.value-card-icon svg,
.contact-card > i,
.contact-card > svg,
.stat-strip-icon-wrap svg {
  stroke-width: 2px;
  flex-shrink: 0;
}

/* --- Service cards: featured + fallback --- */
.service-card-featured {
  grid-column: span 1;
  border-color: rgba(217, 138, 95, 0.18);
  box-shadow: 0 20px 48px rgba(16, 41, 31, 0.08), 0 0 0 1px rgba(217, 138, 95, 0.08);
}
.service-card-featured::before {
  opacity: 1;
  height: 4px;
}
.service-img-fallback,
.process-img-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--primary-soft) 0%, var(--accent-light) 50%, var(--color-sky-light) 100%);
  color: var(--primary);
  opacity: 0.85;
}
.service-card-img img.img-error + .service-img-fallback,
.process-card-thumb img.img-error + .process-img-fallback {
  display: flex;
}
.service-card-img img.img-error,
.process-card-thumb img.img-error {
  opacity: 0;
}

/* --- Intro section polish --- */
.intro-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--cream) 100%);
}
.intro-chip {
  box-shadow: 0 4px 20px rgba(16, 41, 31, 0.04);
  border: 1px solid rgba(217, 138, 95, 0.08);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), border-color 0.4s var(--ease-out-expo);
}
.intro-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(16, 41, 31, 0.07);
  border-color: rgba(217, 138, 95, 0.16);
}
.intro-chip-icon {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 4px 12px rgba(16, 41, 31, 0.06);
}

/* --- About: integrated seal + visual --- */
.about-image-frame-new {
  filter: drop-shadow(0 32px 64px rgba(16, 41, 31, 0.12));
}
.about-experience-seal {
  transform: translate(8%, -8%);
}
.about-profile-img-new {
  object-position: center 18%;
}
.stat-strip-item {
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s var(--ease-out-expo);
}
.stat-strip-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(16, 41, 31, 0.08);
}
.stat-strip-icon-wrap {
  box-shadow: 0 6px 20px rgba(16, 41, 31, 0.08), inset 0 1px 0 rgba(255,255,255,0.5);
}

/* --- Process timeline cards --- */
.process-card {
  border: 1px solid rgba(217, 138, 95, 0.08);
  box-shadow: 0 12px 40px rgba(16, 41, 31, 0.05);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo), border-color 0.4s ease;
}
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(16, 41, 31, 0.1);
  border-color: rgba(217, 138, 95, 0.18);
}
.process-card-thumb img {
  object-position: center 40%;
}
.process-num {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
}

/* --- Services editorial cards --- */
.service-card {
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo), border-color 0.4s ease;
}
.service-card:hover {
  transform: translateY(-10px);
}
.service-card-img img {
  object-position: center 42%;
  transition: transform 0.7s var(--ease-out-expo), filter 0.5s ease;
}
.service-card:hover .service-card-img img:not(.img-error) {
  transform: scale(1.08);
  filter: saturate(1.05);
}
.service-icon {
  box-shadow: 0 8px 24px rgba(16, 41, 31, 0.1), inset 0 1px 0 rgba(255,255,255,0.4);
}
.service-link {
  transition: gap 0.35s var(--ease-out-expo), color 0.3s ease;
}
.service-card:hover .service-link {
  gap: 10px;
}

/* --- Value highlight cards --- */
.value-card {
  border-top-width: 3px;
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s var(--ease-out-expo);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(16, 41, 31, 0.08);
}
.value-card-icon {
  box-shadow: 0 8px 24px rgba(16, 41, 31, 0.08);
}

/* --- Blog magazine cards --- */
.blog-card {
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
  border: 1px solid rgba(217, 138, 95, 0.06);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(16, 41, 31, 0.1);
}
.blog-card-image img {
  object-position: center 35%;
  transition: transform 0.7s var(--ease-out-expo);
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}
.blog-category {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.blog-read-more {
  border-radius: 999px;
  padding: 8px 16px;
  background: rgba(49, 92, 69, 0.06);
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s var(--ease-out-expo);
}
.blog-card:hover .blog-read-more {
  background: var(--primary);
  color: var(--white);
  transform: translateX(4px);
}

/* --- FAQ accordion --- */
.faq-left {
  background: linear-gradient(145deg, rgba(255,253,248,0.95) 0%, rgba(242,232,216,0.6) 100%);
  border: 1px solid rgba(217, 138, 95, 0.1);
  box-shadow: 0 16px 48px rgba(16, 41, 31, 0.06);
  border-radius: 24px;
  padding: 36px 32px;
}
.faq-item {
  border: 1px solid rgba(217, 138, 95, 0.08);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.faq-item.active {
  border-color: rgba(217, 138, 95, 0.22);
  box-shadow: 0 8px 28px rgba(16, 41, 31, 0.06);
  background: rgba(255, 253, 248, 0.95);
}
.faq-question {
  font-weight: 600;
}
.faq-item.active .faq-question {
  color: var(--primary-dark);
}

/* --- Contact form premium --- */
.contact-form {
  border: 1px solid rgba(217, 138, 95, 0.1);
  box-shadow: 0 20px 56px rgba(16, 41, 31, 0.07);
  background: linear-gradient(165deg, rgba(255,253,248,0.98) 0%, rgba(255,249,240,0.92) 100%);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1.5px solid rgba(217, 138, 95, 0.12);
  background: rgba(255, 255, 255, 0.7);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(217, 138, 95, 0.35);
  box-shadow: 0 0 0 4px rgba(217, 138, 95, 0.1);
  background: var(--white);
}
.contact-card {
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(16, 41, 31, 0.08);
}
.contact-card > i,
.contact-card > svg {
  padding: 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-soft), rgba(217,138,95,0.12));
  color: var(--primary);
}

/* --- Footer refinement --- */
.footer-main {
  padding: 72px 0 52px;
}
.footer-social a {
  transition: transform 0.35s var(--ease-out-expo), background 0.35s ease, color 0.35s ease;
}
.footer-social a:hover {
  transform: translateY(-3px);
}
.footer-links a,
.footer-services a {
  transition: color 0.3s ease, padding-left 0.3s var(--ease-out-expo);
}
.footer-links a:hover,
.footer-services a:hover {
  padding-left: 4px;
}

/* --- CTA banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3d2e 50%, var(--primary) 100%);
}
.cta-banner .btn-primary {
  box-shadow: 0 8px 32px rgba(16, 41, 31, 0.3);
}

/* --- Desktop navbar hover polish --- */
@media (min-width: 769px) {
  .nav-cta {
    box-shadow: 0 4px 20px rgba(49, 92, 69, 0.2);
    transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo);
  }
  .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(49, 92, 69, 0.28);
  }
  .hero-panel-orbit {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero-panel-orbit,
  .hero-panel::after {
    display: none;
  }
  .hero-scroll-indicator {
    display: none !important;
  }
  .faq-left {
    padding: 28px 22px;
    border-radius: 20px;
  }
  .service-card-featured {
    box-shadow: 0 12px 32px rgba(16, 41, 31, 0.06);
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .intro-title {
    font-size: clamp(28px, 8vw, 34px);
  }
  .value-grid {
    gap: 14px;
  }
  .footer-main {
    padding: 56px 0 40px;
  }
  .footer-grid {
    gap: 32px;
  }
  .footer-about p { font-size: 15.5px; }
  .footer-contact li { font-size: 15px; }
}

/* Icon rendering safety */
.stat-strip-icon-wrap i,
.stat-strip-icon-wrap svg,
.value-card-icon i,
.value-card-icon svg,
.approach-icon i,
.approach-icon svg,
.service-icon i,
.service-icon svg,
.choose-icon i,
.choose-icon svg,
.guide-icon i,
.guide-icon svg,
.contact-card > i,
.contact-card > svg,
.intro-chip-icon i,
.intro-chip-icon svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  opacity: 1;
}
