/* ════════════════════════════════════════════
   ELEGANT EDUCATION — style.css
   ════════════════════════════════════════════ */

/* ── 1. CSS VARIABLES (রঙ ও ফন্ট একজায়গায়) ── */
:root {
  --navy:       #0d1f3c;
  --navy-mid:   #142840;
  --navy-light: #1e3a5f;
  --gold:       #b8933f;
  --gold-light: #d4af6a;
  --cream:      #f9f6f0;
  --cream-dark: #f0ebe0;
  --white:      #ffffff;
  --gray:       #6b6158;
  --gray-light: #c8bfb0;
  --dark:       #080f1e;
  --ssw-blue:   #1b6c8a;
  --ssw-light:  #a8d5e8;
  --green:      #2d6a4f;
}

/* ── 2. RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', 'Noto Sans JP', sans-serif;
  font-weight: 300;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ── 3. NOTICE BAR ── */
#notice-bar {
  background: var(--gold);
  color: var(--dark);
  padding: 10px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1000;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  min-height: 44px;
}
.notice-slider { position: relative; overflow: hidden; flex: 1; text-align: center; }
.notice-item {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.notice-item.active { display: flex; }
.notice-link {
  background: var(--dark);
  color: var(--gold);
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.notice-link:hover { opacity: 0.8; }
.notice-close {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: var(--dark);
  opacity: 0.6;
  transition: opacity 0.3s;
}
.notice-close:hover { opacity: 1; }

/* ── 4. NAVIGATION ── */
#navbar {
  position: fixed;
  top: 44px; /* notice bar height */
  left: 0; right: 0;
  z-index: 900;
  padding: 0px 0px;
  transition: all 0.4s;
}
#navbar.scrolled {
  background: rgba(8,15,30,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184,147,63,0.15);
  top: 0;
}
#notice-bar[style*="none"] ~ #navbar { top: 0; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
  /* logo background হালকা করতে */
  mix-blend-mode: lighten;
  filter: brightness(1.1);
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 16px; }

/* Lang Toggle */
.lang-toggle {
  display: flex;
  border: 1px solid rgba(184,147,63,0.4);
  overflow: hidden;
  border-radius: 3px;
}
.lang-btn {
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  background: transparent;
  color: var(--gray-light);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Jost', sans-serif;
}
.lang-btn.active { background: var(--gold); color: var(--dark); }

/* Nav CTA */
.nav-cta {
  padding: 9px 22px;
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); }

/* ── 5. HERO ── */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,147,63,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,147,63,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,147,63,0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}
.hero-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 4px;
  font-weight: 500;
  color: var(--gold);
  border: 1px solid rgba(184,147,63,0.4);
  padding: 8px 28px;
  margin-bottom: 36px;
  animation: fadeUp 0.8s ease 0.3s both;
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 9vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease 0.5s both;
}
h1 em { color: var(--gold); font-style: italic; }
.hero-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 200;
  color: rgba(255,255,255,0.45);
  letter-spacing: 7px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease 0.6s both;
}
.hero-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 32px;
  animation: fadeUp 0.8s ease 0.7s both;
}
.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 2;
  max-width: 600px;
  margin: 0 auto 48px;
  animation: fadeUp 0.8s ease 0.8s both;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.9s both;
}

/* Buttons */
.btn-gold {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Jost', sans-serif;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-gold.btn-full { width: 100%; text-align: center; }
.btn-outline {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: var(--white);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── 6. STATS BAR ── */
.stats-bar {
  background: var(--dark);
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(184,147,63,0.15);
  border-bottom: 1px solid rgba(184,147,63,0.15);
}
.stat-item {
  text-align: center;
  padding: 40px 48px;
  border-right: 1px solid rgba(184,147,63,0.1);
  flex: 1;
  max-width: 260px;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

/* ── 7. SECTIONS ── */
.section { padding: 120px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-cream { background: var(--cream); color: var(--navy); }
.section-navy { background: var(--navy); color: var(--white); }
.section-white { background: var(--white); color: var(--navy); }
.section-dark { background: var(--dark); color: var(--white); }

.section-label {
  font-size: 10px;
  letter-spacing: 4px;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: 'Jost', sans-serif;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 10px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 8px;
}
.section-navy .section-subtitle { color: var(--gray-light); }
.section-dark .section-subtitle { color: var(--gray-light); }
.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 32px 0 48px;
}

/* ── 8. ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  font-size: 15px;
  line-height: 2;
  color: var(--gray);
  margin-bottom: 20px;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-stat-card {
  background: var(--cream-dark);
  padding: 28px 24px;
  border-left: 3px solid var(--gold);
}
.about-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-en { font-size: 11px; color: var(--gray); letter-spacing: 1px; }

/* ── 9. SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(184,147,63,0.15);
}
.service-card {
  padding: 40px 24px;
  border-right: 1px solid rgba(184,147,63,0.1);
  position: relative;
  transition: background 0.3s;
  cursor: default;
}
.service-card:last-child { border-right: none; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: rgba(184,147,63,0.05); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: rgba(184,147,63,0.18);
  line-height: 1;
  margin-bottom: 20px;
}
.service-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.6;
  letter-spacing: 0.3px;
}

/* ── 10. WHY ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-card {
  background: var(--white);
  padding: 32px;
  display: flex;
  gap: 20px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.why-icon {
  font-size: 26px;
  width: 52px; height: 52px;
  background: var(--cream);
  border: 1px solid rgba(184,147,63,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-card h4 { font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.why-card p  { font-size: 13px; color: var(--gray); line-height: 1.8; }

/* ── 11. TABS ── */
.tab-buttons {
  display: flex;
  border-bottom: 1px solid rgba(184,147,63,0.2);
  margin-bottom: 40px;
}
.tab-btn {
  padding: 14px 36px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--gray-light);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Jost', sans-serif;
}
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.tab-card {
  background: rgba(184,147,63,0.05);
  border: 1px solid rgba(184,147,63,0.2);
  border-top: 2px solid var(--gold);
  padding: 32px;
}
.tab-icon { font-size: 28px; margin-bottom: 14px; }
.tab-card h3 { font-size: 16px; font-weight: 500; color: var(--white); margin-bottom: 12px; }
.tab-card p  { font-size: 13px; color: var(--gray-light); line-height: 1.9; }

/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.industry-card {
  background: rgba(27,108,138,0.1);
  border: 1px solid rgba(27,108,138,0.3);
  border-top: 2px solid var(--ssw-blue);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s;
}
.industry-card:hover { background: rgba(27,108,138,0.2); transform: translateY(-3px); }
.ind-icon { font-size: 24px; margin-bottom: 10px; }
.ind-name { font-size: 16px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.ind-en   { font-size: 10px; color: var(--ssw-light); letter-spacing: 1px; }

/* ── 12. VISA INFO ── */
.visa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 0;
}
.visa-card {
  background: var(--white);
  padding: 40px;
  border-top: 3px solid var(--gold);
}
.visa-icon { font-size: 32px; margin-bottom: 16px; }
.visa-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 24px;
}
.visa-card ul { list-style: none; }
.visa-card li {
  font-size: 14px;
  color: var(--gray);
  line-height: 1;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.visa-card li:last-child { border-bottom: none; }

/* Official Links */
.official-links { margin-top: 60px; }
.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.official-link {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--white);
  padding: 20px;
  border-left: 3px solid var(--gold);
  text-decoration: none;
  transition: all 0.3s;
}
.official-link:hover { background: var(--cream-dark); transform: translateX(4px); }
.link-flag { font-size: 24px; flex-shrink: 0; }
.link-title { font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.link-url   { font-size: 11px; color: var(--gray); }

/* ── 13. APPLY ── */
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.course-card {
  background: rgba(184,147,63,0.05);
  border: 1px solid rgba(184,147,63,0.2);
  padding: 28px;
  margin-bottom: 16px;
  position: relative;
}
.course-card.active-course { border-color: var(--gold); border-top: 2px solid var(--gold); }
.course-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.course-badge.upcoming { background: rgba(184,147,63,0.3); color: var(--gold-light); }
.course-title { font-size: 17px; font-weight: 500; color: var(--white); margin-bottom: 12px; }
.course-detail { font-size: 13px; color: var(--gray-light); line-height: 2; }

/* Form */
.apply-form, .contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
}
.form-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,147,63,0.2);
  padding: 14px 16px;
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s;
  outline: none;
  width: 100%;
  border-radius: 0;
}
.section-white .form-input,
.section-cream .form-input {
  background: var(--cream-dark);
  color: var(--navy);
  border-color: rgba(13,31,60,0.15);
}
.form-input:focus { border-color: var(--gold); }
.form-input option { background: var(--navy); color: var(--white); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-success {
  display: none;
  padding: 16px;
  background: rgba(45,106,79,0.2);
  border: 1px solid rgba(45,106,79,0.5);
  color: #6fcf97;
  font-size: 13px;
  text-align: center;
}

/* ── 14. GALLERY ── */
.gallery-filter {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  color: var(--gray-light);
  border: 1px solid rgba(184,147,63,0.2);
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Jost', sans-serif;
}
.filter-btn.active,
.filter-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* Slider */
.gallery-slider {
  position: relative;
  background: var(--navy-mid);
  overflow: hidden;
  border: 1px solid rgba(184,147,63,0.15);
}
.slider-track { display: flex; transition: transform 0.5s ease; }
.slide {
  min-width: 100%;
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.slide-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gray-light);
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.slide-placeholder span { font-size: 56px; }
.slide-placeholder p { font-size: 16px; letter-spacing: 1px; }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  background: rgba(0,0,0,0.3);
}
.slider-btn {
  background: rgba(184,147,63,0.2);
  border: 1px solid rgba(184,147,63,0.3);
  color: var(--gold);
  width: 40px; height: 40px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: var(--gold); color: var(--dark); }
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(184,147,63,0.3);
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active { background: var(--gold); }
.gallery-note {
  font-size: 12px;
  color: var(--gray-light);
  text-align: center;
  margin-top: 20px;
  font-style: italic;
  opacity: 0.6;
}

/* ── 15. TEAM ── */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.team-row-top {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.team-row-top .team-card {
  width: 220px;
}
.team-row-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.team-row-top .team-avatar {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border: 3px solid var(--gold);
  width: 130px; height: 130px;
  font-size: 44px;
}
.team-row-top .team-name {
  font-size: 22px;
}

.team-card { text-align: center; }
.team-avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--cream-dark);
  border: 2px solid rgba(184,147,63,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--gold);
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 6px;
}
.team-role {
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.team-loc { font-size: 12px; color: var(--gray); }

/* ── 16. CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,147,63,0.12);
}
.contact-icon {
  font-size: 20px;
  width: 44px; height: 44px;
  background: rgba(184,147,63,0.1);
  border: 1px solid rgba(184,147,63,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-label {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 500;
}
.contact-value { font-size: 14px; color: var(--white); line-height: 1.6; }

.map-container {
  margin-top: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

/* LINE QR Placeholder */
.qr-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border: 1px solid rgba(184,147,63,0.3);
  padding: 4px;
  background: white;
}


/* Social Buttons */
.social-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.3s;
  color: var(--white);
}
.social-btn:hover { transform: translateY(-2px); filter: brightness(1.15); }
.facebook  { background: #1877f2; }
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.whatsapp  { background: #25d366; }
.line      { background: #00b900; }

/* ── 17. FOOTER ── */
footer {
  background: var(--dark);
  padding: 48px;
  border-top: 1px solid rgba(184,147,63,0.1);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo-img {
  height: 100px;
  width: auto;
  mix-blend-mode: lighten;
  filter: brightness(1.1);
}
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 11px; color: var(--gray); }

/* ── 18. SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── 19. ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── CONTACT BOTTOM: Address + SNS ── */
.contact-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(184,147,63,0.15);
}
.address-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.address-icon { font-size: 28px; margin-top: 2px; }
.address-text { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.8; margin-top: 6px; }
.map-wrapper { margin-top: 0; }
.map-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.map-frame {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(184,147,63,0.25);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.map-frame iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
  filter: saturate(0.7) contrast(1.1);
}
.map-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(184,147,63,0.2);
  pointer-events: none;
  z-index: 1;
}
.map-directions-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 24px;
  border: 1px solid rgba(184,147,63,0.4);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
}
.map-directions-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

/* SNS Block */
.sns-block { display: flex; flex-direction: column; }
.sns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.sns-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 16px;
  text-decoration: none;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0;
}
.sns-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}
.sns-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.sns-card:hover::before { background: rgba(255,255,255,0.08); }
.sns-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.sns-card:hover .sns-icon-wrap { transform: scale(1.15) rotate(-5deg); }
.sns-name { font-size: 13px; font-weight: 500; letter-spacing: 1px; }
.sns-handle { font-size: 10px; opacity: 0.7; letter-spacing: 0.5px; }
.sns-arrow {
  position: absolute;
  top: 10px; right: 14px;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translate(-4px, 4px);
}
.sns-card:hover .sns-arrow { opacity: 0.8; transform: translate(0, 0); }
.sns-facebook  { background: linear-gradient(135deg, #1877f2, #0d5dbf); }
.sns-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.sns-whatsapp  { background: linear-gradient(135deg, #25d366, #128c7e); }
.sns-line      { background: linear-gradient(135deg, #00b900, #007a00); }

/* Partner form heading */
.partner-form-heading { margin-bottom: 8px; }
.partner-form-subtext {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

/* ── HOVER ANIMATION on all section headings ── */
.section-title {
  transition: letter-spacing 0.4s ease, color 0.3s ease;
  cursor: default;
}
.section-title:hover {
  letter-spacing: 2px;
  color: var(--gold);
}
.section-navy .section-title:hover { color: var(--gold-light); }
.section-dark .section-title:hover { color: var(--gold-light); }
.section-cream .section-title:hover { color: var(--gold); }
.section-white .section-title:hover { color: var(--gold); }

/* Cursor hover shimmer on nav links */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

/* Font size improvements */
.about-text p { font-size: 16px; }
.why-card p { font-size: 14px; }
.tab-card p { font-size: 14px; }
.visa-card li { font-size: 14px; line-height: 1.7; }
.contact-value { font-size: 15px; }

/* Gallery slide caption */
.slide p {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  padding: 32px 24px 16px;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
}

/* Gallery slider aspect ratio improvement */
.slide { aspect-ratio: 16/8; }

/* Scroll to top button */
#scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.3s;
  z-index: 800;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── 20. RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card { border-bottom: 1px solid rgba(184,147,63,0.1); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .links-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  #navbar { padding: 14px 24px; }
  .nav-links { display: none; }
  .section { padding: 80px 24px; }
  .about-grid, .visa-grid, .apply-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .tab-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .team-row-bottom { grid-template-columns: 1fr 1fr; }
  .team-row-top { gap: 24px; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { min-width: 140px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .links-grid { grid-template-columns: 1fr; }
  #notice-bar { padding: 10px 40px 10px 16px; font-size: 12px; }
  .contact-bottom { grid-template-columns: 1fr; gap: 40px; }
  .sns-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  h1 { font-size: 40px; }
  .team-row-bottom { grid-template-columns: 1fr 1fr; }
  .team-row-top .team-card { width: 100%; max-width: 280px; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
