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

:root {
  /* Color Palette - Updated to Bali Japan Dream Red/Silver Theme */
  --primary: #d31f1f; /* Logo Red */
  --primary-light: #f15c5c;
  --primary-dark: #b01a1a;
  --accent: #64748b; /* Silver/Slate */
  --accent-light: #94a3b8;
  --accent-red: #d31f1f;
  --accent-yellow: #ffb332;
  --accent-green: #00a343;

  /* Typography */
  --font-base: 'Inter', sans-serif;
  --font-headings: 'Outfit', sans-serif;
  
  /* Utilities */
  --bg-light: #f1f5f9; /* Light Silver */
  --bg-white: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --border-color: #cbd5e1;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-bg-dark: rgba(15, 23, 42, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(100, 116, 139, 0.1);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 800;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), #9b1c1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
  position: relative;
}

/* Glass Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo img {
  height: 40px;
  width: auto;
}

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

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.btn-pendaftaran {
  background: linear-gradient(135deg, var(--primary), #911717);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(211, 31, 31, 0.3);
}

.nav-links a.btn-pendaftaran::after {
  display: none;
}

.nav-links a.btn-pendaftaran:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 31, 31, 0.4);
}

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

/* Beautiful Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: radial-gradient(circle at top right, rgba(211, 31, 31, 0.05), transparent 40%),
              radial-gradient(circle at bottom left, rgba(100, 116, 139, 0.05), transparent 40%);
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.hero-logo {
  width: 100%;
  max-width: 600px;
  margin-bottom: 1rem;
  animation: fadeInDown 1s cubic-bezier(0.1, 0.8, 0.3, 1);
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(211, 31, 31, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 3.5rem;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-base);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: 0 10px 20px rgba(211, 31, 31, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(211, 31, 31, 0.3);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: white;
  box-shadow: 0 10px 20px rgba(100, 116, 139, 0.2);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(100, 116, 139, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(37, 211, 102, 0.3);
}

.hero-media {
  position: relative;
  width: 100%;
  max-width: 900px; /* Horizontal video size optimized */
  margin: 2rem auto;
}

/* Video Wrapper Placeholder Strategy */
.video-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  position: relative;
  border: 4px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.video-wrapper iframe,
.video-wrapper video {
  width: 100%;
  height: auto;
  border: none;
  object-fit: cover;
  display: block;
}

.video-mute-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.video-mute-btn:hover {
  background: rgba(211, 31, 31, 0.7);
  transform: scale(1.1);
}

.video-mute-btn i {
  pointer-events: none;
}

.video-placeholder {
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.video-placeholder i {
  font-size: 3rem;
  color: var(--primary);
}

/* Section Formatting */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-light);
  box-shadow: 0 20px 40px rgba(211, 31, 31, 0.1);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(211, 31, 31, 0.05);
  color: var(--primary);
  transition: var(--transition);
}

.feature-card:hover .icon-wrapper {
  background: var(--primary);
  color: white;
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Glass Panels with Image & Text */
.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--bg-white);
  border-radius: 30px;
  padding: 4rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  margin-bottom: 4rem;
}

.split-panel.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.split-panel.reverse > * {
  direction: ltr;
}

.panel-img img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.panel-img img:hover {
  transform: scale(1.02);
}

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

.panel-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.check-list {
  list-style: none;
  margin-bottom: 2rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  background: rgba(211, 31, 31, 0.1);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  top: 2px;
}

/* Programs Cards Pricing Style */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.price-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(211, 31, 31, 0.15);
  transform: translateY(-10px);
}

.featured-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: white;
  padding: 0.5rem 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  transform: translate(25%, 50%) rotate(45deg);
  width: 150px;
  text-align: center;
}

.price-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.price-value {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2rem;
}

.price-value span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Facilities Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 900px;
}

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

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

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  aspect-ratio: 4/3;
  background: var(--border-color);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

/* Student Activity Circles */
.activity-circle {
  border-radius: 50% !important;
  aspect-ratio: 1 / 1 !important;
  background: var(--bg-white);
  padding: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
  margin: 0 auto; /* Center within grid cell */
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 200px; /* Prevent them from getting too large on wide screens */
}

.activity-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.activity-circle:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 30px rgba(211, 31, 31, 0.1) !important;
  border-color: var(--primary-light);
}

/* Q&A Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-light);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.faq-question i {
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px; /* arbitrary high value for transition */
}

/* CTA Subfooter */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  text-align: center;
  padding: 6rem 2rem;
  border-radius: 30px;
  margin: 4rem auto;
  max-width: 1200px;
  box-shadow: 0 20px 40px rgba(211, 31, 31, 0.2);
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

.cta-banner .btn {
  background: white;
  color: var(--primary);
}

.cta-banner .btn:hover {
  background: var(--bg-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  background: var(--text-dark);
  color: #f1f5f9;
  padding: 5rem 0 2rem;
}

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

.footer-logo {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
}

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

.footer-desc {
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-links h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  color: #94a3b8;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #64748b;
  font-size: 0.9rem;
}

/* Main Programs Section */
.main-programs {
  background: var(--bg-white);
  padding: 6rem 0;
}

.main-programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.main-program-card {
  background: var(--bg-light);
  border-radius: 30px;
  padding: 4rem 3rem 3rem;
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.main-program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: var(--primary-light);
}

.main-program-card.accent:hover {
  border-color: var(--accent-light);
}

.card-tag {
  position: absolute;
  top: 0;
  left: 3rem;
  padding: 0.6rem 1.5rem;
  color: white;
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: 0 0 15px 15px;
  letter-spacing: 1px;
}

.card-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

.main-program-card.accent .card-icon {
  color: var(--accent);
}

.main-program-card h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card-tag.popular {
  background: linear-gradient(135deg, #ff4e50, #f9d423);
  box-shadow: 0 4px 15px rgba(255, 78, 80, 0.4);
  animation: popularPulse 2s infinite;
}

@keyframes popularPulse {
  0% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 78, 80, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 4px 25px rgba(255, 78, 80, 0.6); }
  100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 78, 80, 0.4); }
}

.card-highlight {
  font-size: 1.1rem;
  color: #ff4e50;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  padding: 0.5rem 0;
  border-top: 1px dashed rgba(255, 78, 80, 0.3);
  border-bottom: 1px dashed rgba(255, 78, 80, 0.3);
}

.card-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.card-price {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.main-program-card.accent .card-price {
  background: var(--accent);
}

.program-details {
  list-style: none;
  margin-top: auto;
}

.program-details li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
}

.program-details li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.1rem;
}

.main-program-card.accent .program-details li::before {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero .container, .split-panel {
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .hero .container, .split-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .split-panel.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .split-panel {
    padding: 2rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    margin: 0 auto 2rem;
  }

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

  .check-list li {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .main-program-card {
    padding: 3rem 2rem 2rem;
  }
  .main-programs-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

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

/* Location Summary Section */
.location-summary {
  padding: 5rem 0;
  text-align: center;
  background: white;
}

.location-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3.5rem;
}

.location-logos img.top-banner-logo {
  max-height: 180px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.location-catchphrases {
    margin-bottom: 2.5rem;
}

.location-catchphrases h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: #222;
}

.location-catchphrases p {
  font-size: 1.6rem;
  margin: 0.3rem 0;
  font-weight: 600;
  color: #333;
}

.location-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 2.5rem 0;
  font-weight: 700;
  font-size: 1.1rem;
}

.maps-pin {
  width: 50px;
  height: auto;
}

.location-description {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 1.05rem;
  color: #333;
  padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .location-logos img.top-banner-logo {
        max-height: 90px;
    }
    .location-catchphrases h3 {
        font-size: 1.5rem;
    }
    .location-catchphrases p {
        font-size: 1.1rem;
    }
}

/* Staff Signature */
.staff-signature {
  text-align: right;
  margin-top: 2.5rem;
  font-weight: 700;
  line-height: 1.6;
  font-size: 1.1rem;
  color: var(--text-dark);
}

/* Staff Page Specific Styles */
.staff-page-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
  text-align: center;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.staff-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.staff-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: var(--primary-light);
}

.staff-img {
  width: 100%;
  aspect-ratio: 1/1;
  background: #f0f2f5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.staff-img i {
  font-size: 5rem;
  color: #cbd5e1;
}

.staff-info {
  padding: 1.5rem;
  text-align: center;
  flex-grow: 1;
}

.staff-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.staff-info p {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0;
}

.partner-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: center;
  justify-items: center;
}

.partner-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  width: 100%;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  transition: var(--transition);
}

.partner-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.partner-logo {
  max-width: 120px;
  height: auto;
  opacity: 0.8;
  transition: var(--transition);
  filter: grayscale(100%);
}

.partner-card:hover .partner-logo {
  opacity: 1;
  filter: grayscale(0%);
}

.partner-name {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: floatWa 3s infinite ease-in-out;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

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

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 2rem;
    }
}

/* Video Showcase Styles */
.video-box-container {
    max-width: 1000px;
    margin: 3rem auto 0 auto;
    padding: 0 1rem;
    perspective: 1000px;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    background: #000;
    line-height: 0;
    transition: transform 0.5s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
    object-fit: cover;
}

/* Specific fix for vertical/portrait videos on mobile */
@media (max-width: 768px) {
    .video-box-container {
        margin-top: 2rem;
        padding: 0 0.5rem;
    }
    .video-wrapper {
        aspect-ratio: auto; /* Allow the container to follow video's vertical height */
        border-radius: 12px;
        border-width: 2px;
    }
    .video-wrapper video {
        max-height: 85vh; /* Allow tall portrait videos on mobile screens */
        object-fit: contain; /* Don't crop if it's vertical on mobile */
        background: #000;
    }
    .hero-media {
        max-width: 100%;
        margin: 1rem auto;
        padding: 0;
    }
}
