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

:root {
  --bg: #111214;
  --bg-elevated: #161820;
  --bg-card: #1e2028;
  --nav-bg: rgba(13, 14, 18, 0.96);

  /* Brand colours */
  --primary: #a95f08;
  --primary-dark: #7d4506;
  --primary-light: rgba(169, 95, 8, 0.12);
  --primary-border: rgba(169, 95, 8, 0.35);

  --secondary: #00364b;
  --secondary-dark: #002538;
  --secondary-light: rgba(0, 54, 75, 0.15);
  --secondary-border: rgba(0, 54, 75, 0.5);

  /* Aliases used throughout the file */
  --accent: var(--primary);
  --accent-dark: var(--primary-dark);
  --amber: var(--secondary);
  --amber-dark: var(--secondary-dark);

  --text: #e8eaed;
  --text-muted: #8b92a0;
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: var(--primary-border);
  --radius: 8px;
  --ease: 0.2s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
  gap: 1px;
}
.nav-logo .logo-name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text);
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.nav-logo .logo-name img {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo .logo-sub {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--primary);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--ease);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active {
  color: var(--text);
  border-bottom-color: var(--primary);
}
.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius) !important;
  border-bottom: none !important;
  transition: background var(--ease) !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; }
.dir-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  border: 1px solid rgba(169,95,8,0.35)!important;
  border-radius: var(--radius);
  padding: calc(0.5rem - 2.5px) 1.25rem !important;
  transition: all var(--ease);
}
.dir-cta:hover {
  background: rgba(169,95,8,0.1);
  border-color: var(--primary);
}
.dir-cta svg { width: 13px; height: 13px; }


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 2rem 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--ease);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--text); }

/* ── LAYOUT ── */
main { padding-top: 68px; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

section { padding: 5rem 2rem;}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-amber { background: var(--secondary); color: #fff; }
.btn-amber:hover { background: var(--secondary-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--primary-border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.8125rem; }

/* ── SECTION LABELS ── */
.label {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}

h2.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 3rem;
}

.divider {
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 2rem;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(169,95,8,0.18) 0%, transparent 65%),
    linear-gradient(180deg, rgba(12,14,18,0.78) 0%, rgba(17,18,20,0.88) 100%),
    url('../images/gallery/home-background.jpeg') center / cover no-repeat;
}

.hero-grid { display: none; }

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(169,95,8,0.12);
  border: 1px solid rgba(169,95,8,0.35);
  border-radius: 100px;
  padding: 0.375rem 1.125rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 2rem;
}
.hero-badge::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  max-width: 820px;
}
.hero h1 .accent { color: var(--primary); display: inline-block; margin-top: 10px; }
.hero h1 .line2 { display: block; color: var(--text-muted); font-size: 0.6em; font-weight: 300; letter-spacing: 0.02em; margin-top: 0.25em; }

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

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

/* ── STAT BAR ── */
.stat-bar {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.stat-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 0.5rem; }
.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}
.service-card:hover {
  border-color: var(--primary-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 48px; height: 48px;
  background: rgba(169,95,8,0.1);
  border: 1px solid rgba(169,95,8,0.22);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
}
.service-icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.service-list {
  list-style: none;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.service-list li {
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}
.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.7rem;
  line-height: 1.7;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
  text-align: center;
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band .section-desc { margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--bg-elevated);
  /*border-bottom: 1px solid var(--border);*/
  
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 0% 50%, rgba(0,54,75,0.18) 0%, transparent 60%);
}
.page-hero-inner {
  position: relative;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  margin-top: 0.75rem;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.7;
}

/* ── ABOUT ── */
.about-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about-text p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.about-text p:last-of-type { margin-bottom: 0; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.value-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
}
.value-item h4 {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.4rem;
}
.value-item p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── RATES ── */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.rate-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.2s ease;
}
.rate-card:hover { transform: translateY(-3px); }
.rate-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}
.rate-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.rate-price-wrap { padding: 1rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.rate-price {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--primary);
  line-height: 1;
}
.rate-price-unit { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }
.rate-price-unit1 {height: 1.45rem;}
.rate-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}
.rate-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  line-height: 1.5;
}
.rate-features li::before {
  content: '';
  display: inline-block;
  min-width: 14px; height: 14px;
  margin-top: 2px;
  background: rgba(169,95,8,0.12);
  border: 1px solid rgba(169,95,8,0.3);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='%23a95f08' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}

.notice-box {
  background: rgba(0,54,75,0.12);
  border: 1px solid rgba(0,54,75,0.35);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.notice-box svg { min-width: 20px; color: var(--primary); margin-top: 2px; }
.notice-box p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; }
.notice-box strong { color: var(--primary); }

.disclaimer {
  margin-top: 1.5rem;
  padding: 0.875rem 0.25rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.85;
}

.cvip-table {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.cvip-header {
  display: grid;
  grid-template-columns: 1fr 100px 100px;
  padding: 0.65rem 1.75rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
}
.cvip-col-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-align: right;
}
.cvip-row {
  display: grid;
  grid-template-columns: 1fr 100px 100px;
  align-items: center;
  padding: 1.1rem 1.75rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}
.cvip-row:last-child { border-bottom: none; }
.cvip-row:hover { background: rgba(255,255,255,0.025); }
.cvip-vehicle {
  font-weight: 600;
  font-size: 0.9375rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.cvip-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}
.cvip-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  text-align: right;
}
.cvip-price-flat {
  grid-column: 2 / span 2;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  text-align: right;
}

/* ── GALLERY SLIDER ── */
.gallery-section { padding: 5rem 0 4rem; }
.gallery-section .container { margin-bottom: 2rem; }
.gallery-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 6;
  background: var(--bg-elevated);
}
.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.gallery-slide.active { opacity: 1; }
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 10;
}
.gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}
.gallery-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* ── FOOTER ── */
footer { background: #09090d; border-top: 1px solid var(--border); }

.footer-map {
  width: 100%;
  height: 280px;
  display: block;
  overflow: hidden;
  position: relative;
}
.footer-map iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
  filter: grayscale(20%) brightness(0.75) contrast(1.05);
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.4fr;
  gap: 3rem;
}

.footer-brand .f-logo-name {
  display: block;
  margin-bottom: 1.25rem;
}
.footer-brand .f-logo-name img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--ease);
}
.footer-col ul a:hover { color: var(--text); }

.contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.875rem;
}
.contact-item svg { min-width: 15px; margin-top: 3px; color: var(--primary); }
.contact-item span, .contact-item a {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  text-decoration: none;
}
.contact-item a:hover { color: var(--primary); }

.footer-dir-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--primary);
  text-decoration: none;
  border: 1px solid rgba(169,95,8,0.35);
  border-radius: var(--radius);
  padding: 0.45rem 1rem;
  transition: all var(--ease);
}
.footer-dir-btn:hover {
  background: rgba(169,95,8,0.1);
  border-color: var(--primary);
}
.footer-dir-btn svg { width: 13px; height: 13px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78125rem;
  color: var(--text-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 3.5rem 1.25rem; }
  .hero-content { padding: 4rem 1.25rem; }
  .page-hero { padding: 4rem 1.25rem 3rem; }
  .footer-main { grid-template-columns: 1fr; padding: 2.5rem 1.25rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 3.5rem 1.25rem; }
}
