/* ==========================================================================
   Apotek Keluarga - Modern Website Stylesheet
   Brand Colors:
   - Primary Red: #D32F2F (Highlights & CTA)
   - Primary Green: #006837 (Health Accent & WhatsApp)
   - Deep Burgundy: #7C1423
   - Clean Background: #F8FAFC & #FFFFFF
   ========================================================================== */

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

:root {
  --ak-primary-red: #D32F2F;
  --ak-primary-red-hover: #B71C1C;
  --ak-primary-red-light: #FFEBEE;
  --ak-primary-red-glow: rgba(211, 47, 47, 0.2);

  --ak-primary-green: #006837;
  --ak-primary-green-hover: #004D26;
  --ak-primary-green-light: #E8F5E9;
  --ak-primary-green-glow: rgba(0, 104, 55, 0.2);

  --ak-burgundy: #7C1423;
  --ak-amber: #F59E0B;
  --ak-amber-light: #FEF3C7;

  --ak-bg-body: #F8FAFC;
  --ak-bg-surface: #FFFFFF;
  --ak-bg-subtle: #F1F5F9;

  --ak-text-main: #0F172A;
  --ak-text-muted: #64748B;
  --ak-text-light: #94A3B8;

  --ak-border: #E2E8F0;
  --ak-border-focus: #CBD5E1;

  --ak-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --ak-shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.08);
  --ak-shadow-lg: 0 12px 28px -4px rgba(15, 23, 42, 0.12);
  --ak-shadow-glow-red: 0 8px 20px rgba(211, 47, 47, 0.25);
  --ak-shadow-glow-green: 0 8px 20px rgba(0, 104, 55, 0.25);

  --ak-radius-sm: 8px;
  --ak-radius-md: 14px;
  --ak-radius-lg: 20px;
  --ak-radius-full: 9999px;

  --ak-transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--ak-bg-body);
  color: var(--ak-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--ak-text-main);
  line-height: 1.25;
}

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

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

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

/* Top Notification / Hotline Bar */
.ak-topbar {
  background: linear-gradient(90deg, var(--ak-primary-green) 0%, var(--ak-burgundy) 50%, var(--ak-primary-red) 100%);
  color: #FFFFFF;
  font-size: 0.85rem;
  padding: 8px 0;
  font-weight: 500;
}

.ak-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.ak-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ak-topbar-item svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Navbar */
.ak-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ak-border);
  transition: var(--ak-transition);
}

.ak-header.scrolled {
  box-shadow: var(--ak-shadow-md);
}

.ak-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

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

.ak-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

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

.ak-brand-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.ak-brand-title .text-green { color: var(--ak-primary-green); }
.ak-brand-title .text-red { color: var(--ak-primary-red); }

.ak-brand-tagline {
  font-size: 0.75rem;
  color: var(--ak-primary-green);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.ak-nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.ak-nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ak-text-muted);
  position: relative;
  padding: 6px 0;
}

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

.ak-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--ak-primary-green);
  border-radius: 2px;
  transition: var(--ak-transition);
}

.ak-nav-link:hover::after,
.ak-nav-link.active::after {
  width: 100%;
}

.ak-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Modern Button Styles */
.ak-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--ak-radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--ak-transition);
  text-align: center;
}

.ak-btn-primary {
  background: var(--ak-primary-red);
  color: #FFFFFF !important;
  box-shadow: var(--ak-shadow-glow-red);
}

.ak-btn-primary:hover {
  background: var(--ak-primary-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(211, 47, 47, 0.35);
}

.ak-btn-green {
  background: var(--ak-primary-green);
  color: #FFFFFF !important;
  box-shadow: var(--ak-shadow-glow-green);
}

.ak-btn-green:hover {
  background: var(--ak-primary-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 104, 55, 0.35);
}

.ak-btn-outline-green {
  background: transparent;
  color: var(--ak-primary-green);
  border-color: var(--ak-primary-green);
}

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

.ak-btn-outline-red {
  background: transparent;
  color: var(--ak-primary-red);
  border-color: var(--ak-primary-red);
}

.ak-btn-outline-red:hover {
  background: var(--ak-primary-red-light);
}

.ak-btn-sm {
  padding: 7px 16px;
  font-size: 0.82rem;
}

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

/* ==========================================================================
   Hero Section / Promo Banner Slider
   ========================================================================== */
.ak-hero-section {
  position: relative;
  padding: 24px 0 40px;
}

.ak-slider-container {
  position: relative;
  border-radius: var(--ak-radius-lg);
  overflow: hidden;
  box-shadow: var(--ak-shadow-lg);
  background: #FFFFFF;
  min-height: 440px;
}

.ak-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  height: 100%;
}

.ak-slide {
  min-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  min-height: 440px;
}

.ak-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.5) 60%, rgba(15, 23, 42, 0.1) 100%);
  z-index: 1;
}

.ak-slide-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 60px 48px;
  color: #FFFFFF;
}

.ak-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--ak-radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ak-badge-red {
  background: var(--ak-primary-red);
  color: #FFFFFF;
}

.ak-badge-green {
  background: var(--ak-primary-green);
  color: #FFFFFF;
}

.ak-badge-amber {
  background: var(--ak-amber);
  color: #FFFFFF;
}

.ak-badge-burgundy {
  background: var(--ak-burgundy);
  color: #FFFFFF;
}

.ak-slide-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 14px;
  line-height: 1.15;
}

.ak-slide-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 26px;
  line-height: 1.5;
}

/* Slider Controls */
.ak-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: var(--ak-radius-full);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ak-text-main);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ak-transition);
  box-shadow: var(--ak-shadow-md);
}

.ak-slider-btn:hover {
  background: var(--ak-primary-red);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.08);
}

.ak-slider-prev { left: 20px; }
.ak-slider-next { right: 20px; }

.ak-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.ak-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--ak-radius-full);
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: var(--ak-transition);
}

.ak-slider-dot.active {
  width: 32px;
  background: var(--ak-primary-red);
}

/* ==========================================================================
   Trust / Value Propositions Section
   ========================================================================== */
.ak-features-section {
  padding: 30px 0 50px;
}

.ak-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ak-feature-card {
  background: var(--ak-bg-surface);
  border: 1px solid var(--ak-border);
  border-radius: var(--ak-radius-md);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--ak-transition);
  box-shadow: var(--ak-shadow-sm);
}

.ak-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ak-shadow-md);
  border-color: var(--ak-primary-green-light);
}

.ak-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.ak-feature-icon-red {
  background: var(--ak-primary-red-light);
  color: var(--ak-primary-red);
}

.ak-feature-icon-green {
  background: var(--ak-primary-green-light);
  color: var(--ak-primary-green);
}

.ak-feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.ak-feature-desc {
  font-size: 0.85rem;
  color: var(--ak-text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.ak-section {
  padding: 60px 0;
}

.ak-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.ak-section-pill {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--ak-primary-green);
  background: var(--ak-primary-green-light);
  padding: 5px 14px;
  border-radius: var(--ak-radius-full);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ak-section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.ak-section-title .highlight-red { color: var(--ak-primary-red); }
.ak-section-title .highlight-green { color: var(--ak-primary-green); }

.ak-section-subtitle {
  font-size: 1rem;
  color: var(--ak-text-muted);
}

/* ==========================================================================
   Featured Products Section
   ========================================================================== */
.ak-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.ak-tab-btn {
  padding: 9px 20px;
  border-radius: var(--ak-radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--ak-bg-surface);
  color: var(--ak-text-muted);
  border: 1px solid var(--ak-border);
  cursor: pointer;
  transition: var(--ak-transition);
}

.ak-tab-btn:hover {
  color: var(--ak-primary-red);
  border-color: var(--ak-primary-red-light);
  background: var(--ak-primary-red-light);
}

.ak-tab-btn.active {
  background: var(--ak-primary-red);
  color: #FFFFFF;
  border-color: var(--ak-primary-red);
  box-shadow: var(--ak-shadow-glow-red);
}

.ak-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ak-product-card {
  background: var(--ak-bg-surface);
  border: 1px solid var(--ak-border);
  border-radius: var(--ak-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--ak-transition);
  box-shadow: var(--ak-shadow-sm);
  position: relative;
}

.ak-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ak-shadow-lg);
  border-color: rgba(211, 47, 47, 0.3);
}

.ak-product-img-wrap {
  position: relative;
  background: #F8FAFC;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  overflow: hidden;
}

.ak-product-img {
  max-height: 160px;
  object-fit: contain;
  transition: var(--ak-transition);
}

.ak-product-card:hover .ak-product-img {
  transform: scale(1.06);
}

.ak-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ak-primary-red);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--ak-radius-full);
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
}

.ak-product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ak-product-category {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ak-primary-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.ak-product-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.5em;
  color: var(--ak-text-main);
}

.ak-product-desc {
  font-size: 0.84rem;
  color: var(--ak-text-muted);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ak-product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--ak-border);
}

.ak-product-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ak-primary-red);
}

.ak-product-price small {
  font-size: 0.75rem;
  color: var(--ak-text-muted);
  font-weight: 500;
}

/* ==========================================================================
   Outlet Directory Section
   ========================================================================== */
.ak-outlets-section {
  background: #F1F5F9;
}

.ak-outlet-search-box {
  max-width: 480px;
  margin: 0 auto 30px;
  position: relative;
}

.ak-search-input {
  width: 100%;
  padding: 14px 20px 14px 46px;
  border-radius: var(--ak-radius-full);
  border: 1px solid var(--ak-border);
  background: #FFFFFF;
  font-size: 0.95rem;
  box-shadow: var(--ak-shadow-sm);
  outline: none;
  transition: var(--ak-transition);
}

.ak-search-input:focus {
  border-color: var(--ak-primary-green);
  box-shadow: 0 0 0 4px var(--ak-primary-green-light);
}

.ak-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ak-text-muted);
}

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

.ak-outlet-card {
  background: var(--ak-bg-surface);
  border-radius: var(--ak-radius-md);
  border: 1px solid var(--ak-border);
  overflow: hidden;
  box-shadow: var(--ak-shadow-sm);
  transition: var(--ak-transition);
  display: flex;
  flex-direction: column;
}

.ak-outlet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ak-shadow-lg);
  border-color: var(--ak-primary-green);
}

.ak-outlet-img-wrap {
  height: 180px;
  position: relative;
  background: #E2E8F0;
  overflow: hidden;
}

.ak-outlet-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--ak-transition);
}

.ak-outlet-card:hover .ak-outlet-img {
  transform: scale(1.05);
}

.ak-outlet-status {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--ak-primary-green);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--ak-radius-full);
  display: flex;
  align-items: center;
  gap: 5px;
}

.ak-outlet-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #FFFFFF;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}

.ak-outlet-region-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--ak-radius-sm);
}

.ak-outlet-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ak-outlet-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--ak-text-main);
}

.ak-outlet-info-list {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ak-text-muted);
}

.ak-outlet-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ak-outlet-info-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--ak-primary-green);
}

.ak-outlet-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ==========================================================================
   Video YouTube Section
   ========================================================================== */
.ak-video-section {
  position: relative;
  background: var(--ak-bg-surface);
}

.ak-video-container {
  max-width: 960px;
  margin: 0 auto;
  background: #0F172A;
  border-radius: var(--ak-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.35);
  border: 4px solid #FFFFFF;
}

.ak-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.ak-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.ak-video-info-box {
  padding: 24px 30px;
  background: #FFFFFF;
  border-top: 1px solid var(--ak-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.ak-video-info-text h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.ak-video-info-text p {
  font-size: 0.9rem;
  color: var(--ak-text-muted);
}

/* ==========================================================================
   Consultation Banner / CTA
   ========================================================================== */
.ak-cta-banner {
  background: linear-gradient(135deg, var(--ak-primary-green) 0%, var(--ak-primary-green-hover) 100%);
  border-radius: var(--ak-radius-lg);
  padding: 50px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  box-shadow: var(--ak-shadow-glow-green);
  margin-top: 50px;
}

.ak-cta-content h2 {
  font-size: 2rem;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.ak-cta-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.ak-footer {
  background: #0F172A;
  color: #E2E8F0;
  padding: 70px 0 0;
  border-top: 4px solid var(--ak-primary-red);
}

.ak-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.ak-footer-col h4 {
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.ak-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--ak-primary-red);
  border-radius: 2px;
}

.ak-footer-desc {
  font-size: 0.9rem;
  color: #94A3B8;
  margin: 16px 0 20px;
  line-height: 1.6;
}

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

.ak-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: var(--ak-transition);
}

.ak-social-btn:hover {
  background: var(--ak-primary-red);
  transform: translateY(-3px);
}

.ak-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}

.ak-footer-links a {
  color: #94A3B8;
}

.ak-footer-links a:hover {
  color: #FFFFFF;
  padding-left: 5px;
}

.ak-footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  color: #94A3B8;
}

.ak-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ak-footer-contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--ak-primary-red);
}

.ak-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #64748B;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.ak-floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF !important;
  padding: 12px 22px;
  border-radius: var(--ak-radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: var(--ak-transition);
}

.ak-floating-wa:hover {
  background: #1EBE5D;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}

.ak-floating-wa svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .ak-products-grid { grid-template-columns: repeat(3, 1fr); }
  .ak-features-grid { grid-template-columns: repeat(2, 1fr); }
  .ak-outlets-grid { grid-template-columns: repeat(2, 1fr); }
  .ak-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ak-nav-menu { display: none; }
  .ak-mobile-toggle { display: block; }
  .ak-products-grid { grid-template-columns: repeat(2, 1fr); }
  .ak-outlets-grid { grid-template-columns: 1fr; }
  .ak-footer-grid { grid-template-columns: 1fr; }
  .ak-slide-title { font-size: 1.9rem; }
  .ak-slide-content { padding: 40px 24px; }
  .ak-features-grid { grid-template-columns: 1fr; }
  .ak-cta-banner { padding: 30px 20px; }
  .ak-floating-wa span { display: none; }
  .ak-floating-wa { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .ak-products-grid { grid-template-columns: 1fr; }
  .ak-section-title { font-size: 1.7rem; }
}
