/* ===== CSS RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  color: hsl(222.2 84% 4.9%);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --primary: 201 100% 36%;
  --primary-foreground: 210 40% 98%;
  --secondary: 210 40% 96.1%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --accent: 210 40% 96.1%;
  --destructive: 0 84.2% 60.2%;
  --border: 214.3 31.8% 91.4%;
  --ring: 222.2 84% 4.9%;
  --radius: 0.5rem;
}

/* ===== UTILITY CLASSES (Tailwind-compatible) ===== */
.container { width: 100%; max-width: 1280px; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-grow { flex-grow: 1; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.inline-flex { display: inline-flex; }
.hidden { display: none; }
.absolute { position: absolute; }
.relative { position: relative; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.bottom-6 { bottom: 1.5rem; }
.bottom-10 { bottom: 2.5rem; }
.left-6 { left: 1.5rem; }
.top-1\/2 { top: 50%; }
.z-50 { z-index: 50; }
.z-\[60\] { z-index: 60; }
.h-16 { height: 4rem; }
.h-screen { height: 100vh; }
.h-\[50vh\] { height: 50vh; }
.h-\[85vh\] { height: 85vh; }
.h-full { height: 100%; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-14 { height: 3.5rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-48 { height: 12rem; }
.h-4 { height: 1rem; }
.h-2 { height: 0.5rem; }
.h-0\.5 { height: 0.125rem; }
.h-1 { height: 0.25rem; }
.w-full { width: 100%; }
.w-14 { width: 3.5rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-2 { width: 0.5rem; }
.w-24 { width: 6rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-\[90\%\] { max-width: 90%; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.rounded-md { border-radius: var(--radius); }
.rounded-lg { border-radius: 0.75rem; }
.rounded-xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.bg-white { background-color: #fff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-900 { background-color: #111827; }
.bg-black\/40 { background-color: rgba(0,0,0,0.4); }
.bg-black\/50 { background-color: rgba(0,0,0,0.5); }
.bg-black\/60 { background-color: rgba(0,0,0,0.6); }
.bg-black\/30 { background-color: rgba(0,0,0,0.3); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-primary\/80 { background-color: hsla(var(--primary), 0.8); }
.bg-primary\/20 { background-color: hsla(var(--primary), 0.2); }
.bg-green-500 { background-color: #22c55e; }
.bg-yellow-50 { background-color: #fefce8; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-500 { background-color: #3b82f6; }
.text-white { color: #fff; }
.text-primary { color: hsl(var(--primary)); }
.text-gray-400 { color: #9ca3af; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-yellow-800 { color: #92400e; }
.text-yellow-700 { color: #a16207; }
.text-blue-800 { color: #1e40af; }
.text-blue-700 { color: #1d4ed8; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-\[10px\] { font-size: 10px; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.text-center { text-center; }
.leading-relaxed { line-height: 1.625; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-10 { padding: 2.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-8 { padding-top: 2rem; }
.pb-4 { padding-bottom: 1rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-auto { margin-top: auto; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.ml-2 { margin-left: 0.5rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-800 { border-color: #1f2937; }
.border-yellow-200 { border-color: #fef08a; }
.border-blue-200 { border-color: #bfdbfe; }
.border-primary { border-color: hsl(var(--primary)); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.object-cover { object-fit: cover; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.cursor-pointer { cursor: pointer; }
.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  height: 2.75rem;
  padding: 0 2rem;
  transition: all 0.2s;
  ring-offset-background;
}
.btn:focus-visible { outline: none; ring: 2px; ring-color: var(--ring); ring-offset: 2px; }
.btn:disabled { pointer-events: none; opacity: 0.5; }
.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.btn-primary:hover { background-color: hsla(var(--primary), 0.9); }
.btn-outline {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
}
.btn-outline:hover { background: hsl(var(--accent)); color: hsl(var(--accent-foreground, inherit)); }

.btn-sm { height: 2.25rem; padding: 0 1rem; border-radius: calc(var(--radius) - 2px); }
.btn-lg { height: 2.75rem; padding: 0 2rem; border-radius: calc(var(--radius) + 2px); }
.btn-icon { height: 2.5rem; width: 2.5rem; padding: 0; }
.btn-ghost:hover { background: hsl(var(--accent)); color: hsl(var(--accent-foreground, inherit)); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.site-header.scrolled {
  background: rgba(0, 0, 0, 0.9) !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.header-logo {
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
.nav-desktop a {
  color: #fff;
  transition: color 0.2s;
  font-size: 0.875rem;
}
.nav-desktop a:hover { color: hsl(var(--primary)); }
.nav-desktop .lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid hsl(var(--primary));
  border-radius: var(--radius);
  height: 2.25rem;
  padding: 0 0.75rem;
  background: hsla(var(--primary), 0.8);
  color: #fff;
  transition: all 0.2s;
}
.nav-desktop .lang-btn:hover { background: hsl(var(--primary)); }
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  color: #fff;
  transition: all 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,0.1); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #111827;
  z-index: 60;
  transition: right 0.3s ease;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { right: 0; }
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-menu-close {
  align-self: flex-end;
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.1); }
.mobile-menu-nav {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu-nav a {
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.mobile-menu-nav a:hover { color: hsl(var(--primary)); }

/* ===== HERO ===== */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-section.hero-sm { height: 50vh; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  transition: opacity 1s ease-in-out;
  opacity: 0;
}
.hero-slide.active { opacity: 1; }
.hero-slide-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 8s ease-out;
}
.hero-slide.active .hero-slide-img { transform: scale(1.08); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 1rem;
}
.hero-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero-content p {
  font-size: 1.25rem;
  max-width: 48rem;
  margin-bottom: 2rem;
}
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.scroll-indicator-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bounce 2s infinite;
}
.scroll-indicator-inner span { font-size: 0.875rem; margin-bottom: 0.5rem; }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* ===== FEATURES ===== */
.feature-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 0 25px rgba(0,0,0,0.05);
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.feature-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.feature-icon-wrap {
  position: relative;
  margin-bottom: 2rem;
}
.feature-icon-glow {
  position: absolute;
  inset: -0.25rem;
  border-radius: 9999px;
  opacity: 0;
  transition: opacity 0.5s;
}
.feature-card:hover .feature-icon-glow { opacity: 1; }
.feature-icon-glow.blue { background: linear-gradient(to right, #dbeafe, #eff6ff); }
.feature-icon-glow.emerald { background: linear-gradient(to right, #d1fae5, #ecfdf5); }
.feature-icon-glow.amber { background: linear-gradient(to right, #fef3c7, #fffbeb); }
.feature-icon {
  position: relative;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg {
  width: 2rem;
  height: 2rem;
  transition: transform 0.5s;
}
.feature-card:hover .feature-icon svg { transform: scale(1.1); }
.feature-icon.blue svg { color: #3b82f6; }
.feature-icon.emerald svg { color: #10b981; }
.feature-icon.amber svg { color: #f59e0b; }
.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #1f2937;
}
.feature-underline {
  width: 3rem;
  height: 0.125rem;
  margin-bottom: 1.5rem;
  transition: width 0.5s;
  opacity: 0.7;
}
.feature-card:hover .feature-underline { width: 4rem; }
.feature-underline.blue { background: #3b82f6; }
.feature-underline.emerald { background: #10b981; }
.feature-underline.amber { background: #f59e0b; }
.feature-card p { color: #4b5563; line-height: 1.625; }

/* ===== APARTMENT CARDS ===== */
.apartment-card {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0,0,0,0.05);
  transition: all 0.5s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.apartment-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.apartment-card-img {
  position: relative;
  height: 12rem;
  overflow: hidden;
}
.apartment-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.apartment-card:hover .apartment-card-img img { transform: scale(1.1); }
.apartment-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.3), transparent);
  opacity: 0.8;
  transition: opacity 0.5s;
}
.apartment-card:hover .apartment-card-img-overlay { opacity: 0.7; }
.apartment-card-title-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
}
.apartment-card-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.25rem;
  transform: translateY(0);
  transition: transform 0.5s;
}
.apartment-card-underline {
  width: 2rem;
  height: 0.125rem;
  background: #fff;
  opacity: 0.7;
  transition: width 0.5s;
}
.apartment-card:hover .apartment-card-underline { width: 3rem; }
.apartment-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.apartment-card-capacity {
  display: flex;
  align-items: center;
  color: #4b5563;
  margin-bottom: 1rem;
}
.apartment-card-capacity svg { width: 1rem; height: 1rem; margin-right: 0.5rem; }
.apartment-card-capacity span { font-size: 0.875rem; }
.apartment-card-desc {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.625;
  flex-grow: 1;
  font-size: 0.875rem;
}
.apartment-card-btn {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  text-align: center;
  color: hsl(var(--primary));
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s;
}
.apartment-card-btn:hover {
  background: hsl(var(--primary));
  color: #fff;
  border-color: hsl(var(--primary));
}
.apartment-card-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.apartment-card-btn svg {
  width: 0.75rem;
  height: 0.75rem;
  margin-left: 0.5rem;
  transition: transform 0.3s;
}
.apartment-card:hover .apartment-card-btn svg { transform: translateX(0.25rem); }

/* ===== INFO ACCORDION (Additional Info) ===== */
.info-item {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  overflow: hidden;
}
.info-item-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--primary));
}
.info-item-btn:hover { background: #f9fafb; }
.info-item-btn svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); transition: transform 0.3s; }
.info-item-btn.active svg { transform: rotate(45deg); }
.info-item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.info-item-content.open { max-height: 2000px; }
.info-item-body { padding: 1rem 1.5rem 1.5rem; border-top: 1px solid #f3f4f6; }

/* ===== PRICING ACCORDION ===== */
.pricing-item {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  overflow: hidden;
}
.pricing-item-btn {
  width: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
  cursor: pointer;
}
.pricing-item-btn:hover { background: #f9fafb; }
.pricing-item-btn span { font-size: 1.125rem; font-weight: 600; color: hsl(var(--primary)); }
.pricing-item-btn svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); transition: transform 0.3s; }
.pricing-item-btn.active svg { transform: rotate(45deg); }
.pricing-item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.pricing-item-content.open { max-height: 2000px; }
.pricing-item-body { padding: 1rem 1rem 1rem 1rem; border-top: 1px solid #f3f4f6; }
.pricing-item-body p { color: #4b5563; margin-bottom: 1rem; line-height: 1.625; }
.pricing-box {
  margin-bottom: 1rem;
  padding: 1rem;
  background: #eff6ff;
  border-radius: 0.75rem;
}
.pricing-box h4 { font-weight: 700; color: #1e40af; margin-bottom: 0.75rem; }
.pricing-box-item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #1d4ed8;
}
.pricing-box-item + .pricing-box-item { margin-top: 0.5rem; }
.pricing-box-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #3b82f6;
  border-radius: 9999px;
  margin-right: 0.75rem;
  flex-shrink: 0;
}
.pricing-reserve-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: hsl(var(--primary));
  color: #fff;
  border-radius: 0.75rem;
  transition: background 0.2s;
  font-size: 0.875rem;
}
.pricing-reserve-btn:hover { background: hsla(var(--primary), 0.9); }
.pricing-reserve-btn svg { width: 1rem; height: 1rem; margin-right: 0.5rem; }

/* ===== WARNING / INFO BOXES ===== */
.warning-box {
  background: #fefce8;
  border: 1px solid #fef08a;
  border-radius: 0.75rem;
  padding: 1rem;
}
.warning-box p { font-weight: 700; color: #92400e; }
.warning-box-lg { padding: 1.5rem; }
.warning-box-lg h3 { font-weight: 700; margin-bottom: 0.5rem; color: #92400e; }
.warning-box-lg p { color: #a16207; font-weight: 500; }

.info-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.info-box h3 { font-weight: 700; margin-bottom: 0.5rem; color: #1e40af; }
.info-box p { color: #1d4ed8; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 4rem 0;
  background: hsl(var(--primary));
  color: #fff;
  overflow: hidden;
}
.cta-section h2 { font-size: 1.875rem; font-weight: 700; margin-bottom: 1rem; }
.cta-section p { font-size: 1.25rem; margin-bottom: 2rem; max-width: 48rem; margin-left: auto; margin-right: auto; }
.cta-phone { display: flex; align-items: center; }
.cta-phone svg { width: 1.5rem; height: 1.5rem; margin-right: 0.5rem; }

/* ===== FOOTER ===== */
.site-footer {
  background: #111827;
  color: #fff;
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}
.site-footer h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.site-footer p { color: #9ca3af; }
.site-footer a { color: #9ca3af; transition: color 0.2s; }
.site-footer a:hover { color: #fff; }
.site-footer-links li + li { margin-top: 0.5rem; }
.site-footer-bottom {
  border-top: 1px solid #1f2937;
  margin-top: 2rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.site-footer-bottom p { color: #9ca3af; }
.site-footer-bottom-links { display: flex; gap: 1rem; }
.site-footer-bottom-links a { color: #9ca3af; transition: color 0.2s; font-size: 0.875rem; }
.site-footer-bottom-links a:hover { color: #fff; }

/* ===== FAB ===== */
.fab {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: #22c55e;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: all 0.3s;
}
.fab:hover { background: #16a34a; transform: scale(1.1); }
.fab svg { width: 1.5rem; height: 1.5rem; }

/* ===== SCROLL ANIMATIONS ===== */
/* By default visible - JS adds the hidden state and animates in */
.scroll-animate {
  transform: translateY(0);
  opacity: 1;
  transition: none;
}
.js .scroll-animate {
  transform: translateY(2.5rem);
  opacity: 0;
  transition: all 0.7s ease-out;
}
.js .scroll-animate.visible {
  transform: translateY(0);
  opacity: 1;
}
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ===== GALLERY ===== */
.gallery-viewer {
  position: relative;
  width: 100%;
  height: 85vh;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  margin-bottom: 2rem;
  background: #000;
}
.gallery-main-image {
  position: absolute;
  inset: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  opacity: 0;
  transform: scale(1.05);
}
.gallery-main-image.active {
  opacity: 1;
  transform: scale(1);
}
.gallery-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 0.5rem;
  border-radius: 9999px;
  transition: all 0.2s;
  z-index: 10;
}
.gallery-nav-btn:hover { background: rgba(0,0,0,0.8); transform: translateY(-50%) scale(1.1); }
.gallery-nav-btn.prev { left: 1.5rem; }
.gallery-nav-btn.next { right: 1.5rem; }
.gallery-counter {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  backdrop-filter: blur(4px);
  z-index: 10;
}
.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.gallery-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(0,0,0,0.05);
  transition: background 0.2s;
}
.gallery-play-btn:hover { background: rgba(0,0,0,0.1); }
.gallery-progress {
  height: 0.25rem;
  background: rgba(0,0,0,0.1);
  border-radius: 9999px;
  overflow: hidden;
  max-width: 24rem;
  width: 100%;
}
.gallery-progress-bar {
  height: 100%;
  background: hsl(var(--primary));
  transition: width 0.3s;
}
.gallery-thumbnails {
  display: flex;
  overflow-x: auto;
  gap: 0.75rem;
  padding-bottom: 1rem;
}
.gallery-thumbnails::-webkit-scrollbar { height: 6px; }
.gallery-thumbnails::-webkit-scrollbar-track { background: #f3f4f6; border-radius: 3px; }
.gallery-thumbnails::-webkit-scrollbar-thumb { background: #9ca3af; border-radius: 3px; }
.gallery-thumb {
  position: relative;
  flex-shrink: 0;
  width: 6rem;
  height: 6rem;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.gallery-thumb:hover { opacity: 1; transform: scale(1.05); }
.gallery-thumb.active {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 0 0 4px hsl(var(--primary)), 0 10px 15px -3px rgba(0,0,0,0.1);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-thumb.active .gallery-thumb-overlay { opacity: 1; }
.gallery-thumb-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #fff;
  border-radius: 9999px;
}

/* ===== CONTACT ===== */
.contact-item {
  display: flex;
  gap: 1rem;
}
.contact-item-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.25rem;
  margin-right: 1rem;
  flex-shrink: 0;
  color: hsl(var(--primary));
}
.contact-item-content h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.25rem; }
.contact-item-content a { color: hsl(var(--primary)); font-weight: 500; transition: color 0.2s; }
.contact-item-content a:hover { color: hsla(var(--primary), 0.8); }
.contact-item-content p { color: #4b5563; }

/* ===== ABOUT ===== */
.about-text {
  color: #4b5563;
  line-height: 1.625;
  font-size: 1.125rem;
}
.about-text + .about-text { margin-top: 1.5rem; }
.about-text.highlight { font-weight: 600; color: hsl(var(--primary)); }

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .hamburger { display: none; }
  .hero-content h1 { font-size: 3rem; }
  .grid-cols-2-md { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-cols-3-lg { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-cols-4-lg { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .site-footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .site-footer-bottom { flex-direction: row; justify-content: space-between; }
  .gallery-thumb { width: 8rem; height: 8rem; }
}
@media (min-width: 1024px) {
  .hero-content h1 { font-size: 3.75rem; }
  .hero-content p { font-size: 1.5rem; }
}

/* ===== ICON HELPERS ===== */
.icon { display: inline-block; vertical-align: middle; }
.icon svg { width: 100%; height: 100%; }
