/* ==========================================================================
   STYLE SHEET: Aroma Kopi Nusantara (Portfolio by MANOVA TECH)
   Description: Premium, warm, yet modern tech-aligned Cafe Landing Page.
   Colors: Navy, Blue, Cyan, Warm Gold, White.
   ========================================================================== */

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

/* --- Root Variables & Design Tokens --- */
:root {
  /* Color Palette */
  --color-primary-navy: #0B132A;
  --color-secondary-blue: #1C2541;
  --color-accent-blue: #3A506B;
  --color-accent-cyan: #00F5D4;
  --color-accent-cyan-hover: #00e0c2;
  --color-warm-gold: #E0A96D;
  --color-text-light: #F4F6F9;
  --color-text-dark: #1E293B;
  --color-text-muted: #64748B;
  --color-bg-white: #FFFFFF;
  --color-bg-light: #F8FAFC;
  --color-bg-dark-card: #131E3A;
  
  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  
  /* Shadows & Radius */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-cyan: 0 0 15px rgba(0, 245, 212, 0.4);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Typography & Headings --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary-navy);
}

p {
  color: var(--color-text-muted);
}

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

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

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: var(--color-warm-gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-accent-cyan);
  margin: 0.75rem auto 0;
  border-radius: var(--radius-full);
}

.section-title.light-text::after {
  background-color: var(--color-accent-cyan);
}

.text-light h2 {
  color: var(--color-text-light);
}
.text-light p {
  color: rgba(244, 246, 249, 0.7);
}

/* --- Buttons & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--color-accent-cyan);
  color: var(--color-primary-navy);
  box-shadow: 0 4px 14px rgba(0, 245, 212, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-accent-cyan-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-cyan);
}

.btn-secondary {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-text-light);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-text-light);
  transform: translateY(-2px);
}

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

.btn-dark-outline:hover {
  background-color: var(--color-primary-navy);
  color: var(--color-text-light);
  transform: translateY(-2px);
}

/* --- Sticky Navigation Bar --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background-color: rgba(11, 19, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
}

header.scrolled .nav-container {
  padding: 0.8rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-light);
}

.logo span {
  color: var(--color-accent-cyan);
}

.logo-icon {
  width: 32px;
  height: 32px;
  fill: var(--color-accent-cyan);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(244, 246, 249, 0.8);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-accent-cyan);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent-cyan);
  transition: var(--transition-normal);
}

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

.nav-actions {
  display: flex;
  align-items: center;
}

/* Mobile Toggle Hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--color-text-light);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-primary-navy);
  color: var(--color-text-light);
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, rgba(11, 19, 42, 0.95) 30%, rgba(11, 19, 42, 0.8) 100%),
    url('https://images.unsplash.com/photo-1507133750040-4a8f57021571?auto=format&fit=crop&w=1400&q=80') center center / cover no-repeat;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  max-width: 650px;
}

.hero-tagline {
  color: var(--color-warm-gold);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  display: inline-block;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-title span {
  color: var(--color-accent-cyan);
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(244, 246, 249, 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.hero-circle-accent {
  position: absolute;
  width: 110%;
  height: 110%;
  border: 1px dashed rgba(0, 245, 212, 0.3);
  border-radius: 50%;
  animation: rotateAccent 25s linear infinite;
  pointer-events: none;
}

.hero-image-container {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--color-secondary-blue);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), var(--shadow-cyan);
  transition: var(--transition-slow);
}

.hero-image-container:hover {
  transform: scale(1.03);
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes rotateAccent {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* --- Tentang Kedai (About) Section --- */
.about {
  background-color: var(--color-bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  height: 480px;
  position: relative;
}

.about-img-frame {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-slow);
}

.about-img-frame:hover {
  transform: scale(1.05) translateY(-5px);
  z-index: 10;
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-1 {
  grid-column: 1 / 9;
  grid-row: 1 / 9;
}

.about-img-2 {
  grid-column: 6 / 13;
  grid-row: 5 / 13;
  border: 6px solid var(--color-bg-white);
}

.about-badge {
  position: absolute;
  bottom: 15%;
  left: 5%;
  background: var(--color-primary-navy);
  color: var(--color-text-light);
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--color-accent-cyan);
  z-index: 5;
}

.about-badge .years {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-accent-cyan);
  line-height: 1;
  display: block;
}

.about-badge .text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-text {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  gap: 0.8rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-accent-cyan);
  background-color: rgba(0, 245, 212, 0.1);
  padding: 0.3rem;
  border-radius: 50%;
}

.feature-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.feature-desc {
  font-size: 0.85rem;
}

/* --- Menu Favorit Section --- */
.menu-section {
  background-color: var(--color-bg-light);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.menu-card {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 245, 212, 0.2);
}

.menu-img-container {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.menu-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.menu-card:hover .menu-img-container img {
  transform: scale(1.08);
}

.menu-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--color-primary-navy);
  color: var(--color-accent-cyan);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
}

.menu-name {
  font-size: 1.3rem;
  font-weight: 700;
}

.menu-price {
  font-family: var(--font-body);
  color: var(--color-warm-gold);
  font-weight: 700;
  font-size: 1.15rem;
}

.menu-desc {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.menu-footer {
  margin-top: auto;
}

.menu-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem;
  background-color: var(--color-bg-light);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary-navy);
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.menu-card:hover .menu-order-btn {
  background-color: var(--color-accent-cyan);
  color: var(--color-primary-navy);
  border-color: var(--color-accent-cyan);
}

/* --- Promo Hari Ini Section --- */
.promo {
  background-color: var(--color-primary-navy);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
}

.promo-bg-decor {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: 
    linear-gradient(to right, var(--color-primary-navy) 0%, transparent 100%),
    url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?auto=format&fit=crop&w=800&q=80') center center / cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
}

.promo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.promo-tag {
  background-color: var(--color-warm-gold);
  color: var(--color-primary-navy);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(224, 169, 109, 0.3);
}

.promo-title {
  font-size: 3rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.promo-desc {
  font-size: 1.15rem;
  color: rgba(244, 246, 249, 0.85);
  margin-bottom: 2rem;
  max-width: 600px;
}

.promo-countdown {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.countdown-box {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  min-width: 80px;
  backdrop-filter: blur(8px);
}

.countdown-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent-cyan);
  line-height: 1;
  display: block;
}

.countdown-label {
  font-size: 0.75rem;
  color: rgba(244, 246, 249, 0.5);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* --- Galeri Suasana Section --- */
.gallery {
  background-color: var(--color-bg-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 19, 42, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-normal);
  color: var(--color-text-light);
  padding: 1.5rem;
  text-align: center;
}

.gallery-overlay-icon {
  width: 48px;
  height: 48px;
  color: var(--color-accent-cyan);
  border: 2px solid var(--color-accent-cyan);
  border-radius: 50%;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  transform: scale(0.8);
  transition: var(--transition-normal);
}

.gallery-overlay-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay-icon {
  transform: scale(1);
}

/* Custom Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 19, 42, 0.95);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 80%;
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
  color: var(--color-text-light);
  text-align: center;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: -10px;
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--color-accent-cyan);
  transform: rotate(90deg);
}

/* --- Lokasi & Jam Buka Section --- */
.location {
  background-color: var(--color-bg-light);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: stretch;
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-cards {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-card {
  background-color: var(--color-bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.2rem;
  border-left: 4px solid var(--color-primary-navy);
  transition: var(--transition-fast);
}

.info-card:hover {
  transform: translateX(5px);
  border-left-color: var(--color-accent-cyan);
}

.info-card-icon {
  width: 24px;
  height: 24px;
  color: var(--color-accent-cyan);
  flex-shrink: 0;
}

.info-card-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--color-primary-navy);
}

.info-card-content {
  font-size: 0.9rem;
}

.hours-list {
  list-style: none;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 600;
}

.hours-time {
  color: var(--color-text-muted);
}

.hours-row.today {
  color: var(--color-accent-cyan-hover);
  font-weight: 700;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
  min-height: 380px;
  position: relative;
}

.map-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(11, 19, 42, 0.7), rgba(11, 19, 42, 0.75)),
    url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=800&q=80') center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-text-light);
  padding: 2rem;
  text-align: center;
}

.map-placeholder-icon {
  width: 56px;
  height: 56px;
  color: var(--color-accent-cyan);
  margin-bottom: 1rem;
  animation: pulsePin 2s infinite;
}

@keyframes pulsePin {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* --- Testimoni Section --- */
.testimonials {
  background-color: var(--color-bg-white);
}

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

.testimonial-card {
  background-color: var(--color-bg-light);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background-color: var(--color-bg-white);
  border: 1px solid rgba(0, 245, 212, 0.15);
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  color: rgba(0, 245, 212, 0.15);
  pointer-events: none;
}

.star-rating {
  display: flex;
  gap: 0.25rem;
  color: #FFC107;
  margin-bottom: 1.2rem;
}

.star-rating svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-accent-cyan);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-primary-navy);
}

.author-role {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* --- FAQ Section --- */
.faq {
  background-color: var(--color-bg-light);
}

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

.faq-item {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.02);
  transition: var(--transition-normal);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 245, 212, 0.1);
}

.faq-header {
  padding: 1.25rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-fast);
}

.faq-header:hover {
  background-color: rgba(0, 245, 212, 0.02);
}

.faq-question {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-primary-navy);
  padding-right: 1.5rem;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}

.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background-color: var(--color-primary-navy);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
}

.faq-toggle::before {
  width: 14px;
  height: 2px;
}

.faq-toggle::after {
  width: 2px;
  height: 14px;
}

.faq-item.active .faq-toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-toggle::before {
  background-color: var(--color-accent-cyan-hover);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease;
}

.faq-content {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.95rem;
  border-top: 1px solid rgba(0, 0, 0, 0.02);
  padding-top: 1rem;
}

/* --- CTA Akhir Section --- */
.final-cta {
  background-color: var(--color-primary-navy);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 80% 20%, rgba(0, 245, 212, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(224, 169, 109, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.final-cta .container {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.final-cta-tag {
  color: var(--color-accent-cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.final-cta h2 {
  font-size: 2.8rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.final-cta p {
  font-size: 1.1rem;
  color: rgba(244, 246, 249, 0.8);
  margin-bottom: 2.5rem;
}

/* --- Footer Section --- */
footer {
  background-color: #060a16;
  color: rgba(244, 246, 249, 0.7);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.footer-desc {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: var(--transition-fast);
}

.social-link:hover {
  background-color: var(--color-accent-cyan);
  color: var(--color-primary-navy);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-title {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-accent-cyan);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-accent-cyan);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-contact-icon {
  width: 20px;
  height: 20px;
  color: var(--color-accent-cyan);
  flex-shrink: 0;
}

.footer-credit-box {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.credit-icon {
  width: 44px;
  height: 44px;
  color: var(--color-accent-cyan);
  background: rgba(0, 245, 212, 0.1);
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.credit-text-title {
  font-weight: 700;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.credit-text-desc {
  font-size: 0.85rem;
  color: rgba(244, 246, 249, 0.5);
}

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

/* --- Floating Elements --- */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-normal);
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #25D366;
  border-radius: 50%;
  z-index: -1;
  animation: pulseWA 2s infinite;
  opacity: 0.4;
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@keyframes pulseWA {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* --- Scroll Animations State --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE STYLES)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .about-grid {
    gap: 3rem;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid > *:last-child {
    display: none; /* Hide 3rd on tablet for grid balance if needed, or wrap */
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer-grid > *:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 0;
  }
  .section-title {
    font-size: 2rem;
  }
  
  /* Navigation */
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-primary-navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2.5rem 2rem;
    gap: 1.5rem;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
    z-index: 1000;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-menu .nav-link {
    font-size: 1.1rem;
    width: 100%;
    display: block;
    padding: 0.5rem 0;
  }
  
  /* Hamburger Open State */
  .hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Hero */
  .hero {
    padding-top: 120px;
    min-height: auto;
    padding-bottom: 4rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-image-wrapper {
    order: -1;
  }
  .hero-image-container {
    width: 260px;
    height: 260px;
  }
  
  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-images {
    height: 380px;
  }
  .about-features {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  /* Promo */
  .promo-title {
    font-size: 2.2rem;
  }
  
  /* Location */
  .location-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .map-wrapper {
    min-height: 300px;
  }
  
  /* Testimonial & FAQ */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid > *:last-child {
    display: block;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid > *:last-child {
    grid-column: span 1;
  }
  .footer-credit-box {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .countdown-box {
    padding: 0.75rem 1rem;
    min-width: 65px;
  }
  .countdown-num {
    font-size: 1.5rem;
  }
  .floating-whatsapp {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
  .floating-whatsapp svg {
    width: 26px;
    height: 26px;
  }
}
