@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Prompt:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* apple-style.css */
:root {
  --bg-primary: #fbfbfd;
  --bg-secondary: #ffffff;
  --text-primary: #1d1d1f;
  --text-secondary: #86868b;
  --accent-gold: #f5a623;
  --nav-bg: rgba(255, 255, 255, 0.72);
  --nav-bg-scrolled: rgba(255, 255, 255, 0.98);
  --footer-bg: #0a0a0a;
  --footer-text: #f5f5f7;
  
  --font-en: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-th: 'Prompt', sans-serif;
  
  --spacing-section: clamp(4rem, 10vw, 8rem);
  --radius-card: 18px;
  
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
html {
  overflow-y: scroll !important;
  scrollbar-gutter: stable !important;
}

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

body {
  font-family: var(--font-en);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 60px !important;
}

/* Universal Link Style - Remove Underlines */
a, a:hover, a:focus, a:active, a:visited,
.product-subnav-link, .product-subnav-link:hover, .product-subnav-link.active {
  text-decoration: none !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #d2d2d7;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #86868b;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.015em;
  font-weight: 600;
}

.thai-text {
  font-family: var(--font-th);
}

.section-heading {
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent-gold);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s ease;
}

/* Navbar */
.apple-nav,
.apple-nav * {
  box-sizing: border-box !important;
  line-height: 1.2 !important;
}

.apple-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  height: 60px !important;
  min-height: 60px !important;
  max-height: 60px !important;
  z-index: 99999 !important;
  background: #ffffff !important;
  transition: top 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease !important;
  padding: 0 !important;
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
  display: flex !important;
  align-items: center !important;
  will-change: top;
}

.apple-nav.nav-hidden {
  top: -70px !important;
}

.apple-nav.scrolled {
  background: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
}

.nav-container {
  max-width: 1200px !important;
  width: 100% !important;
  height: 60px !important;
  margin: 0 auto !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 0 2rem !important;
}

.nav-logo {
  display: flex !important;
  align-items: center !important;
  height: 32px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-logo img {
  height: 32px !important;
  max-height: 32px !important;
  width: auto !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-links {
  list-style: none !important;
  display: flex !important;
  gap: 2rem !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: center !important;
  height: 60px !important;
}

.nav-links li {
  display: flex !important;
  align-items: center !important;
  height: 60px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-links a {
  font-family: 'Prompt', -apple-system, BlinkMacSystemFont, sans-serif !important;
  text-decoration: none !important;
  color: var(--text-primary) !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  transition: color var(--transition-fast) !important;
  display: flex !important;
  align-items: center !important;
  height: 60px !important;
  position: relative !important;
}

.nav-links a i {
  font-size: 1.15rem !important;
  vertical-align: middle !important;
}

.nav-links a::after {
  content: "" !important;
  position: absolute !important;
  width: 0 !important;
  height: 2px !important;
  bottom: 8px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background-color: var(--accent-gold) !important;
  transition: width 0.3s cubic-bezier(0.22, 0.61, 0.36, 1) !important;
  border-radius: 2px !important;
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100% !important;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent-gold) !important;
  font-weight: 500 !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: calc(100% - 2rem);
  max-width: 1400px;
  margin: 1.5rem auto 2.5rem auto;
  aspect-ratio: 2 / 1;
  height: auto;
  min-height: 320px;
  max-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
  background-color: #0f0f0f;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.hero-slider {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide.zoom {
  animation: none;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}

.hero-content {
  display: none !important;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-weight: 300;
  margin-bottom: 1rem;
  color: #f5f5f7;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
}

.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.hero-dot {
  position: relative;
  width: 12px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Extended Click/Touch Area */
.hero-dot::before {
  content: '';
  position: absolute;
  top: -12px;
  bottom: -12px;
  left: -8px;
  right: -8px;
  cursor: pointer;
}

.hero-dot:hover {
  width: 20px;
  background: rgba(255, 255, 255, 0.85);
}

.hero-dot.active {
  width: 32px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.6);
}

/* Sections */
.section {
  padding: var(--spacing-section) 0;
  position: relative;
  background: var(--bg-primary);
}

.section:nth-child(even) {
  background: var(--bg-secondary);
}

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

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.split-layout.reverse .split-content {
  order: -1;
}

.president-section .split-media {
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  aspect-ratio: 3 / 4;
}

.president-section .split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Certifications Media & Images */
.cert-col {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.cert-images-wrapper {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  margin-top: 15px !important;
  width: 100% !important;
}

.cert-images-wrapper img {
  width: 100% !important;
  height: auto !important;
  min-height: initial !important;
  max-height: initial !important;
  object-fit: contain !important;
  display: block !important;
  border-radius: var(--radius-card) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  background: #ffffff !important;
  padding: 8px !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.cert-images-wrapper img:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.14) !important;
}

.lead-text {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.body-text p, .president-section p {
  margin-bottom: 1.5rem;
  color: #555;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  cursor: pointer;
  transform-style: preserve-3d;
}

.gallery-card:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-img-wrapper {
  overflow: hidden;
  aspect-ratio: 2/1;
}

.card-bg-img {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  transition: transform var(--transition-smooth);
}

.gallery-card:hover .card-bg-img {
  transform: scale(1.06);
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.card-info {
  padding: 1.5rem;
  text-align: center;
}

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

.card-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

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

.stat-number, .stat-suffix {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  display: inline-block;
}

.stat-label {
  display: block;
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-smooth);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.apple-footer {
  background-color: var(--footer-bg);
  color: var(--text-secondary);
  padding: 2rem 0 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-wiz-title {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.25rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--nav-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #fff;
  color: var(--accent-gold);
}

/* Section Divider */
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
  margin: 1.5rem 0;
  border-radius: 3px;
}

/* Milestone List */
.milestone-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  line-height: 1.7;
  color: #555;
}

/* President Section Specific */
.president-section .closing-text {
  font-size: 1.15rem;
  color: var(--text-primary);
  font-style: italic;
  border-left: 3px solid var(--accent-gold);
  padding-left: 1.5rem;
}

/* Stats Section Background */
.stats-section {
  background: linear-gradient(135deg, #1d1d1f 0%, #2d2d30 100%) !important;
}

.stats-section .stat-number,
.stats-section .stat-suffix {
  color: #fff;
}

.stats-section .stat-label {
  color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 1px solid rgba(0,0,0,0.05);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .nav-toggle {
    display: block;
  }
  .split-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .split-layout.reverse .split-content {
    order: 0;
  }
  .hero-section {
    width: calc(100% - 1.5rem);
    margin: 1rem auto 1.5rem auto;
    aspect-ratio: 16 / 9;
    min-height: 220px;
    border-radius: 16px;
  }
  .hero-title {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }
  .hero-subtitle {
    font-size: clamp(1.2rem, 5vw, 2rem);
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-number, .stat-suffix {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
}


/* Navbar Isolation */
.apple-nav, .apple-nav * {
    font-family: 'Inter', 'Prompt', sans-serif !important;
    box-sizing: border-box !important;
}
.apple-nav .nav-links li a {
    font-size: 15px !important;
    font-weight: 500 !important;
    letter-spacing: 0.3px !important;
    text-decoration: none !important;
    line-height: normal !important;
}
.apple-nav .nav-links li {
    margin: 0 !important;
    padding: 0 !important;
}

/* Navbar Isolation Final Fix */
.apple-nav, .apple-nav *:not(i):not([class*="fa"]) {
    font-family: 'Inter', 'Prompt', sans-serif !important;
    box-sizing: border-box !important;
}
.apple-nav i[class*="fa"], .apple-nav .fa, .apple-nav .fa-brands, .apple-nav .fa-solid {
    font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free", "FontAwesome" !important;
}
.apple-nav .fa-facebook {
    font-size: 1.15rem !important;
    color: #1877f2 !important;
    vertical-align: middle !important;
    display: inline-block !important;
}
.apple-nav .nav-container {
    height: auto !important;
    min-height: 50px !important;
}
.apple-nav .nav-links {
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center !important;
}
.apple-nav .nav-links li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
.apple-nav .nav-links li a {
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-decoration: none !important;
    line-height: 1.5 !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.apple-nav .nav-links svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
}

.apple-nav .nav-logo img {
    height: 32px !important;
    margin: 0 !important;
    padding: 0 !important;
}


.apple-nav {
    padding: 0.5rem 0 !important;
    background-color: #ffffff !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
}

.apple-nav .nav-links li a {
    text-transform: none !important;
    color: #333 !important;
}
.apple-nav .nav-logo img {
    height: 32px !important;
    width: auto !important;
    max-height: 32px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

/* Luxury Organization Section & Cards */
.org-luxury-section {
    padding: 70px 0 90px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
    position: relative;
    overflow: hidden;
}
.org-luxury-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.org-section-header {
    text-align: center;
    margin-bottom: 45px;
}
.org-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, 0.12);
    color: #d97706;
    border: 1px solid rgba(245, 166, 35, 0.25);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.org-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}
.org-subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}
.org-header-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #f5a623, #d97706);
    border-radius: 2px;
    margin: 16px auto 0 auto;
}

.org-luxury-section {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.org-luxury-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.org-section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}
.org-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    color: #c2410c;
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.12);
}
.org-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}
.org-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}
.org-header-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #f5a623, #d97706);
    border-radius: 4px;
    margin: 20px auto 0 auto;
}

.testimonials-slider {
    padding: 20px 65px 75px 65px !important;
    position: relative;
}

.org-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.07), 0 2px 6px rgba(0,0,0,0.03);
    border: 1px solid rgba(226, 232, 240, 0.9);
    transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.org-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.14), 0 0 25px rgba(245, 166, 35, 0.25);
    border-color: rgba(245, 166, 35, 0.5);
}

.org-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #e2e8f0;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.org-card:hover .org-img-wrapper {
    background-size: 108% !important;
}

.org-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(15, 23, 42, 0.5) 100%);
    pointer-events: none;
}

.org-card, .org-card * {
    font-family: 'Prompt', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    white-space: normal !important;
}

.org-card-content {
    padding: 22px 18px 26px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    background: #ffffff;
    border-top: 1px solid rgba(241, 245, 249, 1);
}
.org-member-name {
    font-family: 'Prompt', 'Inter', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.2px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    word-break: break-word !important;
}
.org-member-title-badge {
    font-family: 'Prompt', 'Inter', sans-serif !important;
    display: inline-block !important;
    background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%) !important;
    color: #b45309 !important;
    border: 1px solid rgba(245, 158, 11, 0.25) !important;
    padding: 6px 14px !important;
    border-radius: 30px !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.6px !important;
    text-transform: uppercase !important;
    max-width: 100% !important;
    word-break: break-word !important;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.08) !important;
}

/* Slider Nav Buttons - Outside Cards with Glassmorphism */
.org-nav-btn {
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15) !important;
    border: 1px solid rgba(226, 232, 240, 1) !important;
    color: #0f172a !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    z-index: 30 !important;
    top: 45% !important;
    margin-top: 0 !important;
}
.org-nav-btn::after { display: none !important; }
.org-nav-btn i { font-size: 1.1rem; color: #0f172a; transition: color 0.3s ease; }
.org-nav-btn:hover {
    background: linear-gradient(135deg, #f5a623, #d97706) !important;
    border-color: #f5a623 !important;
    transform: scale(1.15);
    box-shadow: 0 12px 30px rgba(245, 166, 35, 0.45) !important;
}
.org-nav-btn:hover i { color: #ffffff !important; }

.swiper-button-prev.org-nav-btn { left: 8px !important; }
.swiper-button-next.org-nav-btn { right: 8px !important; }

/* Pagination Bullets */
.org-pagination {
    bottom: 25px !important;
}
.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #cbd5e1 !important;
    opacity: 1 !important;
    transition: all 0.35s ease !important;
    margin: 0 4px !important;
}
.swiper-pagination-bullet-active {
    width: 32px !important;
    border-radius: 12px !important;
    background: linear-gradient(90deg, #f5a623, #d97706) !important;
    box-shadow: 0 3px 12px rgba(245, 166, 35, 0.5) !important;
}

/* Modern Apple Process Page Styles */
.process-section-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px 20px 60px 20px;
}

.process-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  margin-top: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-img-wrapper {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 35px;
  background: #f8f9fa;
  border: 1px solid rgba(0,0,0,0.05);
}

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

.process-header-title {
  font-family: 'Prompt', -apple-system, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.process-header-title i {
  color: var(--accent-gold);
  font-size: 1.4rem;
}

.process-desc-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #424245;
  margin-bottom: 25px;
}

/* 2-Column Feature Grid (for Radial & Axial, etc.) */
.process-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 25px;
}

.process-feature-card {
  background: #fbfbfd;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(245, 166, 35, 0.4);
}

.process-feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.12);
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.process-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 10px;
}

.process-feature-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6e6e73;
}

/* Equipment Showcase Cards */
.equipment-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 25px;
}

.equipment-showcase-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: center;
}

@media (max-width: 768px) {
  .equipment-showcase-card {
    grid-template-columns: 1fr;
  }
}

.equipment-card-img {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.equipment-card-img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.equipment-card-num {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.equipment-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 12px;
}

.equipment-card-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #424245;
}

/* Ultimate Absolute Isolation in PX */
.apple-nav { padding: 8px 0 !important; }
.apple-nav .nav-container { padding: 0 32px !important; max-width: 1200px !important; margin: 0 auto !important; display: flex !important; justify-content: space-between !important; align-items: center !important; }
.apple-nav .nav-links { gap: 32px !important; }
.apple-nav .nav-links li a { font-size: 14px !important; }

/* Product Gallery Grid in Process.html */
#productGalleryGrid, .gallery {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
  gap: 24px !important;
  margin-top: 25px !important;
  width: 100% !important;
}

#productGalleryGrid .gallery-item, .gallery .gallery-item {
  position: relative !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  background: #fbfbfd !important;
  cursor: pointer !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  height: 220px !important;
  width: 100% !important;
}

#productGalleryGrid .gallery-item:hover, .gallery .gallery-item:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12) !important;
}

#productGalleryGrid .gallery-item img, .gallery .gallery-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.4s ease !important;
}

#productGalleryGrid .gallery-item:hover img, .gallery .gallery-item:hover img {
  transform: scale(1.05) !important;
}
