/* ================================================
   SMART HOTEL GROUP — SHARED STYLESHEET
   Palette: Deep Navy + Gold
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0b1a35;
  --navy-mid:    #0f2247;
  --navy-light:  #162d58;
  --gold:        #c49a2a;
  --gold-light:  #e2b94a;
  --gold-pale:   #f5e199;
  --white:       #ffffff;
  --off-white:   #f0ede6;
  --grey:        #8a9bbf;
  --border:      rgba(196, 154, 42, 0.25);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-pale); }

img { max-width: 100%; display: block; }

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(11, 26, 53, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.nav-logo span {
  color: var(--off-white);
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #060f1e 0%, #0b1a35 50%, #0f2247 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(196,154,42,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(196,154,42,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,154,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,154,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--grey);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196,154,42,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-pale);
}

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

/* ── Stats Bar ── */
.stats-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 5%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ── Section Base ── */
.section {
  padding: 6rem 5%;
}

.section-alt {
  background: var(--navy-mid);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.section-desc {
  font-size: 1rem;
  color: var(--grey);
  max-width: 600px;
  line-height: 1.8;
}

/* ── Cards ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color 0.25s, transform 0.25s;
}

.card:hover {
  border-color: rgba(196,154,42,0.5);
  transform: translateY(-3px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(196,154,42,0.1);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.75;
}

.card-highlight {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ── Gold Divider ── */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
}

/* ── Two-col layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Info Block ── */
.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.6;
}

.info-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* ── Feature Row ── */
.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.feature-row:first-child { border-top: 1px solid var(--border); }

.feature-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(196,154,42,0.2);
  line-height: 1;
}

.feature-row h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.feature-row p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.75;
}

/* ── Data Table ── */
.data-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.data-table th {
  background: rgba(196,154,42,0.1);
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 0.9rem 1.25rem;
  color: var(--off-white);
  border-bottom: 1px solid rgba(196,154,42,0.08);
}

.data-table tr:last-child td { border-bottom: none; }

.data-table tr:hover td { background: rgba(196,154,42,0.03); }

.data-table .highlight-row td {
  color: var(--gold-light);
  font-weight: 600;
  background: rgba(196,154,42,0.07);
}

/* ── Video Cards ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .video-grid { grid-template-columns: 1fr; }
}

.video-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}

.video-card video {
  width: 100%;
  display: block;
  background: #000;
  max-height: 320px;
  object-fit: contain;
}

.video-card-body {
  padding: 1.5rem;
}

.video-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.video-card-body p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.7;
}

.video-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

/* ── CTA Band ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 5%;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-band p {
  color: var(--grey);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
}

/* ── Page Header ── */
.page-header {
  padding: 160px 5% 80px;
  background: linear-gradient(135deg, #060f1e 0%, #0b1a35 60%, #0f2247 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(196,154,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-header-inner {
  max-width: 780px;
  position: relative;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-header h1 em { font-style: italic; color: var(--gold-light); }

.page-header p {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.8;
  max-width: 560px;
}

/* ── Brand Pills ── */
.brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.brand-pill {
  background: rgba(196,154,42,0.08);
  border: 1px solid var(--border);
  color: var(--off-white);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  letter-spacing: 0.04em;
}

.brand-pill.gold {
  background: rgba(196,154,42,0.15);
  border-color: rgba(196,154,42,0.4);
  color: var(--gold-light);
}

/* ── Pillar Cards ── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 860px) {
  .pillar-grid { grid-template-columns: 1fr; }
}

.pillar-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  background: rgba(255,255,255,0.02);
}

.pillar-card-num {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.pillar-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pillar-card ul li {
  font-size: 0.85rem;
  color: var(--grey);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}

.pillar-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

/* ── Footer ── */
footer {
  background: #060e1c;
  border-top: 1px solid var(--border);
  padding: 3rem 5%;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.footer-sub {
  font-size: 0.78rem;
  color: var(--grey);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

.footer-links a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(138,155,191,0.5);
}

/* ── Responsive ── */
@media (max-width: 640px) {
  nav { padding: 0 4%; }
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: 0.72rem; }
  .section { padding: 4rem 4%; }
  .hero { padding: 100px 4% 60px; }
  .page-header { padding: 120px 4% 60px; }
  .stats-bar { padding: 2.5rem 4%; }
}
