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

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red: #C1121F;
  --red-deep: #8F0B14;
  --red-light: #FDF2F2;
  --blue: #192A6B;
  --gold: #D97706;
  --white: #FFFFFF;
  --sand: #F9FAFB;
  --subtle: #F1F5F9;
  --border: #E2E8F0;
  --headline: #0F172A;
  --body: #334155;
  --muted: #64748B;
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.font-cinzel { font-family: 'Cinzel', serif; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: bold; font-size: 14px;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'Cinzel', serif; font-weight: 700; font-size: 14px; color: var(--headline); letter-spacing: 0.5px; }
.logo-sub { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.badge-info {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 20px; font-size: 10px; font-weight: 600;
  background: #ECFDF5; color: #047857; border: 1px solid #A7F3D0;
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  padding: 8px 14px; font-size: 13px; font-weight: 500; color: var(--muted);
  border-radius: 8px; transition: all 0.2s;
}
.nav-links a:hover { color: var(--headline); background: var(--subtle); }
.nav-links a.active { color: var(--red); }

.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--muted); font-size: 24px;
}
.mobile-nav {
  display: none; background: white; border-top: 1px solid var(--border);
  padding: 12px 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 10px 14px; font-size: 14px; color: var(--body);
  border-radius: 8px; font-weight: 500;
}
.mobile-nav a:hover { background: var(--subtle); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-size: 14px;
  font-weight: 600; border: none; cursor: pointer; transition: all 0.3s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: white;
}
.btn-primary:hover { box-shadow: 0 8px 24px rgba(193,18,31,0.25); transform: translateY(-1px); }
.btn-outline {
  background: white; color: var(--headline);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: #CBD5E1; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }

/* ── Section Headings ── */
.section { padding: 96px 0; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red); margin-bottom: 16px;
  text-align: center;
}
.section-title {
  font-family: 'Cinzel', serif; font-weight: 700;
  font-size: clamp(24px, 4vw, 40px); color: var(--headline);
  text-align: center; margin-bottom: 16px; line-height: 1.2;
}
.section-desc {
  text-align: center; color: var(--muted); max-width: 640px;
  margin: 0 auto 48px; line-height: 1.7; font-size: 15px;
}

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 80px; padding-bottom: 64px; text-align: center;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C1121F' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  position: relative;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(193,18,31,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 600;
  background: var(--red-light); color: var(--red); border: 1px solid #FECACA;
  margin-bottom: 32px;
}
.hero h1 {
  font-family: 'Cinzel', serif; font-weight: 700;
  font-size: clamp(32px, 5vw, 60px); color: var(--headline);
  line-height: 1.1; margin-bottom: 24px;
}
.hero h1 span { color: var(--red); }
.hero-text {
  font-size: 16px; color: var(--muted); max-width: 640px;
  margin: 0 auto 32px; line-height: 1.7;
}
.hero-stats { display: flex; justify-content: center; gap: 32px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-stat { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); font-weight: 500; }
.hero-stat .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.hero-btns { display: flex; justify-content: center; gap: 16px; margin-bottom: 64px; flex-wrap: wrap; }

.quick-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; max-width: 800px; margin: 0 auto; }
.quick-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; text-align: left; transition: all 0.3s;
}
.quick-card:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.06); transform: translateY(-4px); }
.quick-card-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px; margin-bottom: 12px;
}
.quick-card h3 { font-size: 14px; font-weight: 600; color: var(--headline); margin-bottom: 4px; }
.quick-card p { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 48px; }
.about-img { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-float {
  position: absolute; bottom: -16px; right: -16px;
  background: white; border-radius: 12px; padding: 16px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08); border: 1px solid var(--border);
}
.about-float .big { font-family: 'Cinzel', serif; font-weight: 700; font-size: 24px; color: var(--red); }
.about-float .small { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }

.advantages { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.adv-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; transition: all 0.3s;
}
.adv-card:hover { box-shadow: 0 8px 24px rgba(193,18,31,0.06); }
.adv-icon {
  width: 40px; height: 40px; border-radius: 12px; background: var(--red-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 18px; margin-bottom: 12px;
}
.adv-card h3 { font-size: 14px; font-weight: 600; color: var(--headline); margin-bottom: 6px; }
.adv-card p { font-size: 12px; color: var(--muted); line-height: 1.5; }

.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-block {
  text-align: center; padding: 24px 16px; border-radius: var(--radius);
  background: var(--sand); border: 1px solid var(--border);
}
.stat-block .value { font-family: 'Cinzel', serif; font-weight: 700; font-size: 28px; color: var(--headline); }
.stat-block .label { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ── Services Tabs ── */
.bg-sand { background: var(--sand); }
.tabs-nav {
  display: flex; justify-content: center; gap: 8px; margin-bottom: 32px;
  background: white; border-radius: var(--radius); padding: 6px;
  border: 1px solid var(--border); flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 20px; border-radius: 12px; border: none; cursor: pointer;
  font-size: 14px; font-weight: 500; background: transparent; color: var(--muted);
  transition: all 0.3s; font-family: inherit;
}
.tab-btn.active { background: var(--red); color: white; box-shadow: 0 4px 12px rgba(193,18,31,0.2); }
.tab-btn:hover:not(.active) { background: var(--subtle); color: var(--headline); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-content {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px; box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}
.tab-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.tab-icon {
  width: 56px; height: 56px; border-radius: 16px; background: var(--red-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 24px; margin-bottom: 20px;
}
.tab-content h3 { font-family: 'Cinzel', serif; font-size: 22px; color: var(--headline); margin-bottom: 12px; }
.tab-content .desc { color: var(--muted); margin-bottom: 20px; line-height: 1.7; }
.tab-accessible {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: var(--sand); border-radius: 50px;
  font-size: 12px; color: var(--muted); border: 1px solid var(--border);
}
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feature-item {
  display: flex; align-items: center; gap: 12px; padding: 16px; border-radius: 12px;
  background: var(--sand); border: 1px solid var(--border); transition: all 0.2s;
}
.feature-item:hover { border-color: #FECACA; background: var(--red-light); }
.feature-dot {
  width: 32px; height: 32px; border-radius: 8px; background: white;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 14px; flex-shrink: 0;
}
.feature-item span { font-size: 13px; color: var(--headline); font-weight: 500; }

/* ── Guide ── */
.steps { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.step-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all 0.3s; display: flex;
}
.step-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.step-num {
  display: flex; align-items: center; justify-content: center; min-width: 80px;
  font-family: 'Cinzel', serif; font-weight: 700; font-size: 28px;
}
.step-body { flex: 1; padding: 24px; }
.step-body h3 { font-size: 16px; font-weight: 600; color: var(--headline); margin-bottom: 8px; }
.step-body p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.step-tips { display: flex; flex-wrap: wrap; gap: 8px; }
.tip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; background: var(--sand); border: 1px solid var(--border);
  border-radius: 8px; font-size: 12px; color: var(--muted);
}
.tip .check { color: #10B981; }
.alert-box {
  max-width: 800px; margin: 32px auto 0;
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: #FFFBEB; border: 1px solid #FDE68A;
  border-radius: var(--radius);
}
.alert-box .icon { color: var(--gold); font-size: 20px; flex-shrink: 0; }
.alert-box h4 { font-size: 14px; font-weight: 600; color: #92400E; margin-bottom: 4px; }
.alert-box p { font-size: 12px; color: #A16207; line-height: 1.6; }

/* ── Security ── */
.section-dark {
  background: var(--headline); color: white; padding: 96px 0; position: relative; overflow: hidden;
}
.section-dark::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(193,18,31,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.section-dark .section-label { color: var(--red); }
.section-dark .section-title { color: white; }
.section-dark .section-desc { color: #94A3B8; }

.security-rules { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 48px; }
.sec-card {
  background: rgba(30,41,59,0.6); border: 1px solid rgba(71,85,105,0.4);
  border-radius: var(--radius); padding: 24px;
  backdrop-filter: blur(8px); transition: all 0.3s;
}
.sec-card:hover { background: rgba(30,41,59,0.8); }
.sec-card.critical { border-color: rgba(193,18,31,0.3); }
.sec-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 12px;
}
.sec-card.critical .sec-icon { background: rgba(193,18,31,0.2); color: var(--red); }
.sec-card:not(.critical) .sec-icon { background: rgba(71,85,105,0.4); color: #CBD5E1; }
.sec-card h3 { font-size: 14px; font-weight: 600; color: white; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.sec-card p { font-size: 13px; color: #94A3B8; line-height: 1.6; }
.tag-important {
  padding: 2px 8px; background: rgba(193,18,31,0.2); color: var(--red);
  font-size: 10px; font-weight: 700; border-radius: 50px; text-transform: uppercase;
}

.do-dont { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.do-box, .dont-box { padding: 24px; border-radius: var(--radius); }
.do-box { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); }
.dont-box { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); }
.do-box h3, .dont-box h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.do-box h3 { color: #6EE7B7; }
.dont-box h3 { color: #FCA5A5; }
.do-box li, .dont-box li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 13px; color: #CBD5E1; }
.do-box .icon { color: #34D399; }
.dont-box .icon { color: #F87171; }

.emergency-call {
  text-align: center; margin-top: 40px;
  display: flex; justify-content: center;
}
.emergency-pill {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 24px; background: rgba(193,18,31,0.1);
  border: 1px solid rgba(193,18,31,0.2); border-radius: 50px;
  font-size: 14px; color: #CBD5E1;
}
.emergency-pill strong { color: white; }

/* ── History ── */
.history-hero {
  position: relative; border-radius: var(--radius); overflow: hidden;
  max-width: 800px; margin: 0 auto 64px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.history-hero img { width: 100%; height: 380px; object-fit: cover; }
.history-hero .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.6), transparent);
}
.history-hero .caption {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
}
.history-hero .caption h3 { font-family: 'Cinzel', serif; font-size: 28px; color: white; }
.history-hero .caption p { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 4px; }

.timeline { max-width: 800px; margin: 0 auto; position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 16px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--red), var(--blue), var(--gold));
}
.tl-item { position: relative; margin-bottom: 32px; }
.tl-dot {
  position: absolute; left: -32px; top: 20px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--red); border: 4px solid white;
  box-shadow: 0 0 0 2px var(--border);
}
.tl-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; transition: box-shadow 0.3s;
}
.tl-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.tl-year { font-family: 'Cinzel', serif; font-weight: 700; font-size: 18px; color: var(--red); margin-bottom: 4px; }
.tl-card h3 { font-size: 14px; font-weight: 600; color: var(--headline); margin-bottom: 4px; }
.tl-card p { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ── FAQ ── */
.faq-search {
  max-width: 400px; margin: 0 auto 32px; position: relative;
}
.faq-search input {
  width: 100%; padding: 14px 16px 14px 44px; border-radius: 12px;
  border: 1px solid var(--border); font-size: 14px; font-family: inherit;
  background: white; transition: border-color 0.2s;
}
.faq-search input:focus { outline: none; border-color: var(--red); }
.faq-search .icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); }

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white; border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; transition: all 0.3s;
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.faq-item.open { border-color: rgba(193,18,31,0.2); box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; cursor: pointer; gap: 12px;
  font-size: 14px; font-weight: 600; color: var(--headline); transition: color 0.2s;
}
.faq-q:hover { color: var(--red); }
.faq-q .arrow { transition: transform 0.3s; font-size: 18px; color: var(--muted); flex-shrink: 0; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 24px 18px; font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── Contact ── */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.c-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; transition: all 0.3s;
}
.c-card:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
.c-icon {
  width: 48px; height: 48px; border-radius: 16px; background: var(--red-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 22px; margin-bottom: 16px;
}
.c-card h3 { font-size: 15px; font-weight: 600; color: var(--headline); margin-bottom: 16px; }
.c-detail { margin-bottom: 12px; }
.c-detail .lbl { font-size: 11px; color: var(--muted); font-weight: 500; margin-bottom: 2px; }
.c-detail .val { font-size: 14px; color: var(--headline); font-weight: 500; }

/* ── Footer ── */
.disclaimer-bar {
  background: #FFFBEB; border-bottom: 1px solid #FDE68A; padding: 12px 20px;
}
.disclaimer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: flex-start; gap: 12px; }
.disclaimer-inner .icon { color: var(--gold); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.disclaimer-inner p { font-size: 12px; color: #92400E; line-height: 1.6; }

.footer { background: var(--headline); color: white; padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .name { font-family: 'Cinzel', serif; font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.footer-brand .sub { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; }
.footer-brand p { font-size: 12px; color: #64748B; line-height: 1.6; margin-top: 12px; max-width: 300px; }
.footer h4 { font-size: 13px; font-weight: 600; color: #E2E8F0; margin-bottom: 16px; }
.footer ul li { margin-bottom: 8px; }
.footer ul a, .footer ul button {
  font-size: 12px; color: #64748B; transition: color 0.2s;
  background: none; border: none; cursor: pointer; font-family: inherit; padding: 0;
}
.footer ul a:hover, .footer ul button:hover { color: white; }
.footer-phone {
  margin-top: 16px; padding: 12px; background: rgba(30,41,59,0.5);
  border: 1px solid rgba(71,85,105,0.4); border-radius: 8px;
}
.footer-phone .lbl { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.footer-phone .num { font-size: 14px; color: white; font-weight: 600; margin: 4px 0 2px; }
.footer-phone .hrs { font-size: 10px; color: var(--muted); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(30,41,59,0.8);
  font-size: 12px; color: var(--muted); flex-wrap: wrap; gap: 8px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .badge-info { display: none; }
  .mobile-toggle { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .advantages { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .tab-inner { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .security-rules { grid-template-columns: 1fr; }
  .do-dont { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .step-card { flex-direction: column; }
  .step-num { min-width: auto; padding: 12px; }
}
