/* ===================================
   46 POWDERCOAT — STYLESHEET v4
   Light Theme · Premium Navy · Global
   =================================== */

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

:root {
  /* ── Navy Blue Palette ── */
  --navy:        #1A3A8C;
  --navy-light:  #2A5BC4;
  --navy-dark:   #0F2260;
  --navy-soft:   #E8EFFE;
  --navy-mid:    #C5D4F5;

  /* ── Backgrounds (Light) ── */
  --bg:          #FFFFFF;
  --bg-2:        #F5F7FF;
  --bg-3:        #EEF1FB;
  --bg-card:     #FFFFFF;
  --bg-hero:     #F0F4FF;

  /* ── Text ── */
  --text:        #0A1628;
  --text-2:      #334166;
  --text-3:      #6B7BA4;
  --white:       #FFFFFF;

  /* ── Border / Divider ── */
  --border:      rgba(26, 58, 140, 0.12);
  --border-soft: rgba(26, 58, 140, 0.07);

  /* ── Shadows ── */
  --shadow-sm:   0 2px 12px rgba(26, 58, 140, 0.08);
  --shadow-md:   0 8px 32px rgba(26, 58, 140, 0.12);
  --shadow-lg:   0 20px 60px rgba(26, 58, 140, 0.16);
  --shadow-blue: 0 8px 40px rgba(26, 90, 200, 0.35);

  /* ── Tokens ── */
  --radius:    20px;
  --radius-sm: 14px;
  --radius-xs: 10px;
  --transition: 0.26s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Prompt', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ════════════════════════════════════
   LOADER
════════════════════════════════════ */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.loader-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 110% 90% at 50% 30%,
    #0d1f4a 0%, #091540 40%, #060d28 75%, #040812 100%);
}
.loader-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 20%,
    rgba(42, 91, 196, 0.15), transparent 70%);
  animation: bgShimmer 3s ease-in-out infinite alternate;
}
@keyframes bgShimmer {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.06); }
}
.loader-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: 28px; width: 100%; max-width: 500px; padding: 0 24px;
  text-align: center;
}
.loader-gif-wrap { position: relative; width: 100%; max-width: 460px; }
.loader-gif {
  width: 100%; border-radius: 20px; display: block;
  box-shadow:
    0 0 0 1px rgba(42, 91, 196, 0.25),
    0 20px 60px rgba(0,0,0,0.65),
    0 0 80px rgba(26, 58, 140, 0.25);
}
.loader-gif-glow {
  position: absolute; inset: -10px; border-radius: 26px;
  background: transparent;
  box-shadow: 0 0 50px rgba(42,91,196,0.3), 0 0 90px rgba(26,58,140,0.15);
  pointer-events: none;
  animation: gifGlow 2s ease-in-out infinite alternate;
}
@keyframes gifGlow {
  from { box-shadow: 0 0 40px rgba(42,91,196,0.25), 0 0 70px rgba(26,58,140,0.12); }
  to   { box-shadow: 0 0 70px rgba(42,91,196,0.45), 0 0 110px rgba(42,91,196,0.22); }
}
.loader-brand-wrap { display: flex; align-items: baseline; gap: 10px; }
.loader-num {
  font-size: 54px; font-weight: 900; color: #FFFFFF; line-height: 1;
  text-shadow: 0 0 30px rgba(100,150,255,0.8), 0 0 60px rgba(42,91,196,0.5);
  animation: numPulse 1.6s ease-in-out infinite alternate;
}
@keyframes numPulse {
  from { text-shadow: 0 0 20px rgba(100,150,255,0.6); }
  to   { text-shadow: 0 0 50px rgba(150,190,255,1), 0 0 90px rgba(42,91,196,0.6); }
}
.loader-word {
  font-size: 20px; font-weight: 700; color: rgba(255,255,255,0.85); letter-spacing: 5px;
}
.loader-progress { display: flex; align-items: center; gap: 12px; width: 100%; max-width: 320px; }
.loader-bar-track {
  flex: 1; height: 3px;
  background: rgba(255,255,255,0.1); border-radius: 99px; overflow: hidden;
}
.loader-bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #2A5BC4, #7BA8FF);
  border-radius: 99px;
  animation: barFill 1.4s ease-in-out forwards;
}
@keyframes barFill {
  0%   { width: 0%;   }
  50%  { width: 65%;  }
  85%  { width: 90%;  }
  100% { width: 100%; }
}
.loader-pct { font-size: 11px; color: rgba(255,255,255,0.4); min-width: 28px; }
.loader-caption { font-size: 12px; color: rgba(255,255,255,0.35); letter-spacing: 2.5px; margin-top: -12px; }
.loader.fade-out { animation: loaderOut 0.5s ease forwards; }
@keyframes loaderOut {
  to { opacity: 0; transform: scale(1.02); pointer-events: none; }
}

/* ════════════════════════════════════
   NAVBAR
════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  /* Transparent at top — white text for dark hero background */
  background: transparent;
}
/* White text state — when navbar is over hero (transparent) */
.navbar:not(.scrolled) .logo-46 { color: #FFFFFF; }
.navbar:not(.scrolled) .logo-pc { color: rgba(255,255,255,0.7); }
.navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,0.85); }
.navbar:not(.scrolled) .nav-link:hover { color: #FFFFFF; background: rgba(255,255,255,0.12); }
.navbar:not(.scrolled) .nav-link.active { color: #FFFFFF; }
.navbar:not(.scrolled) .nav-link.active::after { background: #FFFFFF; }
.navbar:not(.scrolled) .hamburger span { background: #FFFFFF; }
.navbar:not(.scrolled) .lang-toggle { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); }
.navbar:not(.scrolled) .lang-btn { color: rgba(255,255,255,0.75); }
.navbar:not(.scrolled) .lang-btn:hover { color: #FFFFFF; }
.navbar:not(.scrolled) .lang-btn.active { background: rgba(255,255,255,0.25); color: #FFFFFF; box-shadow: none; }
.navbar:not(.scrolled) .nav-cta { background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.4); backdrop-filter: blur(8px); }
.navbar:not(.scrolled) .nav-cta:hover { background: rgba(255,255,255,0.25); }
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center; gap: 20px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
  transition: var(--transition);
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo-img {
  width: 40px; height: 40px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(26,58,140,0.25);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-46 { font-size: 20px; font-weight: 900; color: var(--navy); letter-spacing: -0.5px; }
.logo-pc { font-size: 10px; font-weight: 700; color: var(--text-3); letter-spacing: 2.5px; }

.nav-links {
  display: flex; align-items: center; gap: 2px; margin-left: auto;
}
.nav-link {
  text-decoration: none; color: var(--text-2);
  font-size: 15px; font-weight: 500;
  padding: 8px 16px; border-radius: var(--radius-xs);
  transition: var(--transition); position: relative; white-space: nowrap;
}
.nav-link:hover { color: var(--navy); background: var(--navy-soft); }
.nav-link.active { color: var(--navy); font-weight: 600; }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 4px; left: 16px; right: 16px;
  height: 2px; background: var(--navy); border-radius: 99px;
}

.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Language Toggle */
.lang-toggle {
  display: flex; align-items: center;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 99px; padding: 3px; gap: 2px;
}
.lang-btn {
  display: flex; align-items: center; gap: 5px;
  background: transparent; border: none;
  color: var(--text-3); font-family: var(--font);
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  padding: 5px 11px; border-radius: 99px;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.lang-btn:hover { color: var(--navy); }
.lang-btn.active {
  background: var(--navy); color: var(--white);
  box-shadow: 0 2px 12px rgba(26,58,140,0.35);
}
.lang-flag { font-size: 14px; line-height: 1; }

.nav-cta {
  display: flex; align-items: center; gap: 7px;
  text-decoration: none;
  background: var(--navy);
  color: var(--white); font-weight: 600; font-size: 13px;
  padding: 9px 20px; border-radius: 99px;
  transition: var(--transition); white-space: nowrap;
  box-shadow: 0 4px 20px rgba(26,58,140,0.3);
}
.nav-cta:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(26,58,140,0.45);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--transition);
}

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.03); }
  to   { transform: scale(1.09); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,22,40,0.75) 0%, rgba(10,22,40,0.4) 45%, rgba(10,22,40,0.85) 100%),
    linear-gradient(to right, rgba(10,22,40,0.65) 0%, transparent 65%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute; width: 3px; height: 3px;
  background: rgba(200,220,255,0.7); border-radius: 50%;
  opacity: 0; animation: particleDrift 9s ease-in-out infinite;
}
.particle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 1.5s; }
.particle:nth-child(3) { top: 40%; left: 50%; animation-delay: 3s; width:2px; height:2px; }
.particle:nth-child(4) { top: 75%; left: 25%; animation-delay: 4.5s; }
.particle:nth-child(5) { top: 30%; left: 70%; animation-delay: 2s; width:4px; height:4px; }
.particle:nth-child(6) { top: 85%; left: 60%; animation-delay: 6s; }
@keyframes particleDrift {
  0%,100% { opacity: 0; transform: translateY(0) scale(1); }
  20%      { opacity: 0.8; }
  60%      { opacity: 0.4; }
  80%      { opacity: 0; transform: translateY(-40px) scale(0.5); }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 24px; max-width: 820px;
  animation: fadeUp 1s 1.6s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-logo-wrap { margin-bottom: 20px; }
.hero-logo {
  width: 100px; height: 100px;
  border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(255,255,255,0.35);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.08), 0 20px 60px rgba(0,0,0,0.4);
  animation: logoPulse 3s ease-in-out infinite alternate;
}
@keyframes logoPulse {
  from { box-shadow: 0 0 0 6px rgba(255,255,255,0.08), 0 20px 50px rgba(0,0,0,0.35); }
  to   { box-shadow: 0 0 0 10px rgba(255,255,255,0.12), 0 20px 70px rgba(0,0,0,0.45); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 500;
  padding: 7px 18px; border-radius: 99px; margin-bottom: 22px;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 7px; height: 7px; background: #4ade80; border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(74,222,128,0.8);
}
@keyframes dotPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.4; transform: scale(1.5); }
}
.hero-title { line-height: 1; margin-bottom: 10px; }
.title-46 {
  display: block;
  font-size: clamp(88px, 16vw, 150px); font-weight: 900;
  color: #FFFFFF;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
  line-height: 0.9; letter-spacing: -4px;
}
.title-pc {
  display: block;
  font-size: clamp(18px, 4vw, 42px); font-weight: 700;
  color: rgba(255,255,255,0.9); letter-spacing: 10px;
}
.hero-sub {
  font-size: clamp(13px, 2vw, 17px);
  color: rgba(200,220,255,0.9);
  letter-spacing: 3px; margin-bottom: 14px; font-weight: 400;
}
.hero-desc {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px; line-height: 1.85;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--navy);
  text-decoration: none; font-weight: 700; font-size: 16px;
  padding: 14px 32px; border-radius: 99px;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.btn-primary:hover {
  background: var(--navy-soft);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white); text-decoration: none;
  font-weight: 600; font-size: 16px; padding: 14px 32px;
  border-radius: 99px; backdrop-filter: blur(10px);
  transition: var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6);
  transform: translateY(-3px);
}
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-arrow {
  width: 22px; height: 22px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: rotate(45deg) translateY(0); opacity: 0.8; }
  50%     { transform: rotate(45deg) translateY(7px); opacity: 0.3; }
}

/* ════════════════════════════════════
   ABOUT STRIP
════════════════════════════════════ */
.about-strip {
  background: var(--navy);
  padding: 28px 24px;
}
.strip-container {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-around;
  gap: 20px; flex-wrap: wrap;
}
.strip-item { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 175px; }
.strip-icon-wrap {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(255,255,255,0.12); border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
}
.strip-icon-wrap svg { width: 22px; height: 22px; color: #FFFFFF; }
.strip-item div { display: flex; flex-direction: column; }
.strip-item strong { font-size: 15px; font-weight: 700; color: #FFFFFF; }
.strip-item span { font-size: 12px; color: rgba(255,255,255,0.65); }
.strip-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.18); flex-shrink: 0; }

/* ════════════════════════════════════
   SECTION COMMONS
════════════════════════════════════ */
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 4px;
  color: var(--navy-light); display: block; margin-bottom: 10px;
}
.section-title {
  font-size: clamp(28px, 4vw, 46px); font-weight: 800;
  color: var(--text); margin-bottom: 12px; line-height: 1.15;
}
.section-desc { font-size: 16px; color: var(--text-3); font-weight: 300; }

/* ════════════════════════════════════
   SERVICES
════════════════════════════════════ */
.services { padding: 110px 0; background: var(--bg-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 32px 28px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
  opacity: 0; transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--navy-mid);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.service-card-wide {
  grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 28px;
}
.service-icon-wrap {
  width: 56px; height: 56px; border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-bottom: 20px;
}
.service-icon-wrap svg { width: 26px; height: 26px; }
.service-icon-wrap.orange { background: #EEF2FF; color: var(--navy); }
.service-icon-wrap.blue   { background: #EFF6FF; color: #2563EB; }
.service-icon-wrap.green  { background: #F0FDF4; color: #16a34a; }
.service-icon-wrap.purple { background: #FAF5FF; color: #7C3AED; }
.service-icon-wrap.red    { background: #FFF1F2; color: #E11D48; }
.service-card h3 { font-size: 19px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.service-card p  { font-size: 14px; color: var(--text-3); line-height: 1.75; margin-bottom: 18px; font-weight: 300; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-list li { font-size: 13px; color: var(--text-2); padding-left: 18px; position: relative; }
.service-list li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; background: var(--navy); border-radius: 50%;
}
.powder-content { flex: 1; }
.powder-features { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.powder-tag {
  background: var(--navy-soft); border: 1px solid var(--navy-mid);
  color: var(--navy); font-size: 12px; font-weight: 600;
  padding: 4px 14px; border-radius: 99px;
}

/* ════════════════════════════════════
   GALLERY — POST CARDS
════════════════════════════════════ */
.gallery-section { padding: 110px 0; background: var(--bg); }
.gallery-section .section-container { display: flex; flex-direction: column; gap: 32px; }

.post-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.post-card:hover {
  border-color: var(--navy-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.post-header {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 24px 0;
}
.post-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--navy-mid);
  box-shadow: var(--shadow-sm);
}
.post-avatar img { width: 100%; height: 100%; object-fit: cover; }
.post-meta { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.post-name { font-size: 14px; font-weight: 700; color: var(--text); }
.post-category {
  font-size: 13px; color: var(--text-3); font-weight: 400;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.post-badge {
  flex-shrink: 0;
  background: var(--navy-soft); border: 1px solid var(--navy-mid);
  color: var(--navy); font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px; padding: 4px 12px; border-radius: 99px; white-space: nowrap;
}
.post-badge.chrome       { background: #F8FAFC; border-color: #CBD5E1; color: #475569; }
.post-badge.blue-badge   { background: #EFF6FF; border-color: #BFDBFE; color: #1D4ED8; }
.post-badge.purple-badge { background: #FAF5FF; border-color: #E9D5FF; color: #6D28D9; }

.post-desc {
  padding: 14px 24px 16px;
  font-size: 14px; color: var(--text-2); line-height: 1.7; font-weight: 300;
}
.post-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
}
.post-img-wrap {
  position: relative; aspect-ratio: 1;
  overflow: hidden; cursor: pointer;
  background: var(--bg-3);
}
.post-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
}
.post-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(26,58,140,0); transition: var(--transition);
}
.post-img-wrap:hover img { transform: scale(1.08); }
.post-img-wrap:hover::after { background: rgba(26,58,140,0.12); }

.post-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--border-soft);
  background: var(--bg-2);
}
.post-count { font-size: 13px; color: var(--text-3); }
.post-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--navy-soft); border: 1px solid var(--navy-mid);
  color: var(--navy); text-decoration: none;
  font-size: 13px; font-weight: 600;
  padding: 7px 18px; border-radius: 99px;
  transition: var(--transition);
}
.post-cta:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ════════════════════════════════════
   LIGHTBOX
════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(5,10,25,0.95); backdrop-filter: blur(6px);
}
.lightbox-img-wrap {
  position: relative; z-index: 1;
  max-width: 90vw; max-height: 90vh; text-align: center;
}
.lightbox-img-wrap img {
  max-width: 100%; max-height: 85vh;
  object-fit: contain; border-radius: var(--radius-sm);
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}
.lightbox-caption { color: rgba(255,255,255,0.6); font-size: 13px; margin-top: 12px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; z-index: 2;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); cursor: pointer; border-radius: 50%;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; transition: var(--transition);
  backdrop-filter: blur(8px);
}
.lightbox-close { top: 20px; right: 20px; font-size: 16px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--navy); border-color: var(--navy);
}

/* ════════════════════════════════════
   CONTACT
════════════════════════════════════ */
.contact-section { padding: 110px 0; background: var(--bg-2); }
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px; margin-bottom: 56px;
}
.contact-card {
  background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 30px 22px;
  text-align: center; transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-card:hover {
  border-color: var(--navy-mid); transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.contact-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--navy-soft);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.contact-icon svg { width: 24px; height: 24px; color: var(--navy); }
.line-icon  { background: rgba(6,199,85,0.1)  !important; }
.line-icon  svg { color: #06c755 !important; }
.fb-icon    { background: rgba(24,119,242,0.1) !important; }
.fb-icon    svg { color: #1877f2 !important; }
.contact-card h3 {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  color: var(--text-3); margin-bottom: 8px;
}
.contact-value {
  display: block; font-size: 19px; font-weight: 700;
  color: var(--text); text-decoration: none; margin-bottom: 8px;
  transition: var(--transition);
}
a.contact-value:hover { color: var(--navy); }
.open-badge { color: #16a34a !important; }
.contact-note { font-size: 12px; color: var(--text-3); line-height: 1.5; }

.map-wrap {
  background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-header {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 24px; border-bottom: 1px solid var(--border-soft);
  background: var(--bg-2);
}
.map-header svg { color: var(--navy); }
.map-header h3 { font-size: 17px; font-weight: 700; color: var(--text); }
.map-container iframe { display: block; }
.map-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px; background: var(--navy);
  color: var(--white); text-decoration: none; font-weight: 700; font-size: 15px;
  transition: var(--transition);
}
.map-btn:hover { background: var(--navy-light); }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer {
  background: var(--text);
  padding: 52px 24px; text-align: center;
}
.footer-container {
  max-width: 600px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.footer-logo {
  width: 60px; height: 60px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
}
.footer-brand { display: flex; align-items: baseline; gap: 8px; }
.footer-brand .logo-46 { color: #7BA8FF; }
.footer-brand .logo-pc { color: rgba(255,255,255,0.6); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 300; }
.footer-links {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; justify-content: center;
}
.footer-links a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 13px; transition: var(--transition);
}
.footer-links a:hover { color: #7BA8FF; }
.footer-links span { color: rgba(255,255,255,0.2); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); }

/* ════════════════════════════════════
   FAB CALL BUTTON
════════════════════════════════════ */
.fab-call {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-dark));
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 30px rgba(26,58,140,0.5);
  transition: var(--transition); overflow: hidden;
}
.fab-call:hover {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(26,58,140,0.7);
}
.fab-ripple {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(42,91,196,0.5);
  animation: fabRipple 2.2s ease-out infinite;
}
@keyframes fabRipple {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ════════════════════════════════════
   BOOKING
════════════════════════════════════ */
.booking-section { padding: 110px 0; background: var(--bg-2); }
.booking-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px;
  background: var(--bg-card); border-radius: var(--radius);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.booking-info {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  padding: 40px; color: var(--white);
  display: flex; flex-direction: column; justify-content: center;
}
.info-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.info-card p { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 30px; }
.info-details p {
  display: flex; align-items: center; gap: 12px; font-size: 16px; margin-bottom: 16px;
  font-weight: 500;
}
.info-details svg { width: 20px; height: 20px; flex-shrink: 0; color: #7BA8FF; }

.booking-form { padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.full-width { grid-column: 1 / -1; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--border); border-radius: var(--radius-xs);
  padding: 12px 16px; font-size: 15px; font-family: var(--font);
  width: 100%; transition: var(--transition);
  background: var(--white); color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px var(--navy-soft); outline: none;
}
.form-group input.error, .form-group select.error, .form-group textarea.error {
  border-color: #EF4444; box-shadow: 0 0 0 3px #FEE2E2;
}
.select-wrap { position: relative; }
.select-wrap::after {
  content: '▼'; position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  font-size: 10px; color: var(--text-3); pointer-events: none;
}
.form-group select { appearance: none; padding-right: 40px; }
.btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--navy); color: var(--white); border: none;
  padding: 15px; border-radius: 99px; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: var(--transition); margin-top: 10px;
  font-family: var(--font); box-shadow: 0 4px 15px rgba(26,58,140,0.3);
}
.btn-submit:hover {
  background: var(--navy-light); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,58,140,0.4);
}

/* ════════════════════════════════════
   REVIEWS
════════════════════════════════════ */
.reviews-section { padding: 110px 0; background: var(--bg); }
.google-rating-banner {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 24px 32px; display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border-soft);
  max-width: 700px; margin: 0 auto 40px; flex-wrap: wrap; gap: 20px;
}
.g-rating-content { display: flex; align-items: center; gap: 20px; }
.g-rating-text { display: flex; flex-direction: column; }
.g-score { font-size: 28px; font-weight: 800; color: var(--text); line-height: 1.1; }
.g-stars { display: flex; gap: 2px; margin: 4px 0; }
.g-based { font-size: 13px; color: var(--text-3); }
.g-btn {
  background: #4285F4; color: white; padding: 10px 24px; border-radius: 99px;
  text-decoration: none; font-weight: 600; font-size: 14px; transition: var(--transition);
}
.g-btn:hover { background: #3367D6; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(66,133,244,0.3); }

.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.review-card {
  background: var(--bg-card); border-radius: 16px; padding: 24px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border-soft);
  transition: var(--transition); display: flex; flex-direction: column; gap: 16px;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--navy-mid); }
.review-header { display: flex; align-items: center; gap: 12px; }
.r-avatar {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 18px; flex-shrink: 0;
}
.bg-c1 { background: linear-gradient(135deg, #1A3A8C, #2A5BC4); }
.bg-c2 { background: linear-gradient(135deg, #2563EB, #60A5FA); }
.bg-c3 { background: linear-gradient(135deg, #0F766E, #14B8A6); }
.r-meta { display: flex; flex-direction: column; flex: 1; }
.r-name { font-weight: 700; font-size: 15px; color: var(--text); }
.r-date { font-size: 12px; color: var(--text-3); }
.g-icon { flex-shrink: 0; }
.r-stars { display: flex; gap: 2px; }
.r-text { font-size: 15px; color: var(--text-2); line-height: 1.7; font-style: italic; }

/* ════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
   Breakpoints: 900 | 640 | 480 | 380
════════════════════════════════════ */

/* ── Tablet / Large Mobile (≤ 900px) ── */
@media (max-width: 900px) {
  .nav-container { position: relative; flex-wrap: nowrap; gap: 8px; padding: 0 16px; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    padding: 12px 16px 20px; flex-direction: column; gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md); z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; text-align: center; padding: 13px; font-size: 16px; border-radius: 10px; }
  .hamburger { display: flex; }
  .nav-right { gap: 8px; margin-left: auto; }
  .nav-cta { padding: 7px 14px; font-size: 12px; }
  .lang-btn { padding: 5px 10px; font-size: 11px; }
  .hero-content { max-width: 100%; padding: 20px; }
  .hero-logo { width: 80px; height: 80px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .service-card-wide { grid-column: 1 / -1; }
  .booking-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .services, .gallery-section, .booking-section, .reviews-section, .contact-section { padding: 80px 0; }
  .section-container { padding: 0 20px; }
}

/* ── Mobile (≤ 640px) ── */
@media (max-width: 640px) {
  /* Navbar: keep transparent at hero, white only when scrolled (handled by .scrolled class) */
  /* Mobile nav dropdown (open state) must be white regardless */
  .nav-links.open {
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }
  .nav-links.open .nav-link { color: var(--text-2); }
  .nav-links.open .nav-link:hover { color: var(--navy); background: var(--navy-soft); }
  .nav-links.open .nav-link.active { color: var(--navy); }
  /* hamburger color: white when transparent, dark when scrolled */
  .navbar.scrolled .hamburger span { background: var(--text); }
  .nav-logo-img { width: 34px; height: 34px; }
  .logo-46 { font-size: 17px; }
  .logo-pc { font-size: 9px; letter-spacing: 1.5px; }
  .nav-cta { display: none; }
  .lang-btn .lang-flag { display: none; }
  .lang-btn { padding: 5px 10px; }
  .lang-toggle { padding: 2px; }

  .loader-gif { border-radius: 12px; }
  .loader-num { font-size: 42px; }
  .loader-word { font-size: 16px; letter-spacing: 3px; }
  .loader-progress { max-width: 260px; }

  .hero { min-height: 100svh; }
  .hero-content { padding: 16px; }
  .hero-logo { width: 72px; height: 72px; }
  .hero-logo-wrap { margin-bottom: 14px; }
  .title-46 { font-size: clamp(72px, 22vw, 120px); letter-spacing: -2px; }
  .title-pc { font-size: clamp(14px, 5vw, 28px); letter-spacing: 5px; }
  .hero-sub { font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }
  .hero-desc { font-size: 13px; margin-bottom: 28px; }
  .hero-badge { font-size: 11px; padding: 6px 14px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 10px; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 280px; justify-content: center; font-size: 15px; padding: 13px 24px; }

  .booking-form { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .google-rating-banner { flex-direction: column; text-align: center; justify-content: center; }
  .g-rating-content { flex-direction: column; gap: 12px; }

  .about-strip { padding: 22px 16px; }
  .strip-container { flex-direction: column; gap: 14px; align-items: flex-start; }
  .strip-divider { display: none; }
  .strip-item { min-width: unset; width: 100%; }
  .strip-icon-wrap { width: 36px; height: 36px; }
  .strip-item strong { font-size: 14px; }
  .strip-item span { font-size: 11px; }

  .services { padding: 64px 0; }
  .section-container { padding: 0 16px; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: clamp(24px, 7vw, 36px); }
  .section-desc { font-size: 14px; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 24px 20px; }
  .service-card-wide { flex-direction: column; grid-column: auto; gap: 20px; }
  .service-icon-wrap { width: 48px; height: 48px; margin-bottom: 14px; }
  .service-card h3 { font-size: 17px; }
  .service-card p { font-size: 13px; }

  .gallery-section { padding: 64px 0; }
  .gallery-section .section-container { gap: 20px; }
  .post-card { border-radius: 14px; }
  .post-header { padding: 16px 16px 0; gap: 10px; }
  .post-avatar { width: 38px; height: 38px; }
  .post-name { font-size: 13px; }
  .post-category { font-size: 12px; }
  .post-badge { font-size: 10px; padding: 3px 10px; }
  .post-desc { padding: 12px 16px 14px; font-size: 13px; }
  .post-grid { grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .post-footer { padding: 12px 16px; }
  .post-count { font-size: 12px; }
  .post-cta { font-size: 12px; padding: 6px 14px; }

  .contact-section { padding: 64px 0; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 36px; }
  .contact-card { padding: 22px 16px; border-radius: 14px; }
  .contact-icon { width: 46px; height: 46px; }
  .contact-icon svg { width: 20px; height: 20px; }
  .contact-card h3 { font-size: 10px; letter-spacing: 1.5px; }
  .contact-value { font-size: 15px; }
  .contact-note { font-size: 11px; }
  .map-header { padding: 14px 16px; }
  .map-header h3 { font-size: 15px; }
  .map-container iframe { height: 260px; }
  .map-btn { font-size: 14px; padding: 14px; }

  .lightbox-prev { left: 8px; width: 38px; height: 38px; font-size: 18px; }
  .lightbox-next { right: 8px; width: 38px; height: 38px; font-size: 18px; }
  .lightbox-close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 14px; }
  .lightbox-img-wrap { max-width: 95vw; }

  .footer { padding: 40px 16px; }
  .footer-tagline { font-size: 12px; }
  .footer-logo { width: 52px; height: 52px; }
  .fab-call { bottom: 20px; right: 16px; width: 56px; height: 56px; }
}

/* ── Small Mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .logo-pc { display: none; }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .title-46 { font-size: clamp(64px, 20vw, 100px); }
}

/* ── Tiny Mobile (≤ 380px) ── */
@media (max-width: 380px) {
  .nav-logo-img { width: 30px; height: 30px; }
  .logo-46 { font-size: 15px; }
  .lang-btn { padding: 4px 8px; font-size: 10px; }
  .title-46 { font-size: 60px; }
  .title-pc { font-size: 13px; letter-spacing: 4px; }
  .hero-logo { width: 60px; height: 60px; }
  .loader-num { font-size: 36px; }
  .loader-word { font-size: 13px; }
  .post-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
}

/* ── Safe area: notch / home bar ── */
@supports (padding: env(safe-area-inset-bottom)) {
  .fab-call {
    bottom: calc(20px + env(safe-area-inset-bottom));
    right: calc(16px + env(safe-area-inset-right));
  }
  .navbar { padding-top: calc(16px + env(safe-area-inset-top)); }
  .footer { padding-bottom: calc(40px + env(safe-area-inset-bottom)); }
}

/* ── Touch targets ── */
@media (pointer: coarse) {
  .nav-link, .lang-btn { min-height: 44px; }
  .post-cta, .btn-primary, .btn-secondary { min-height: 48px; }
  .lightbox-prev, .lightbox-next, .lightbox-close { min-width: 44px; min-height: 44px; }
}
