/* ==========================================================
   Siyat Holdings – Design System
   ========================================================== */

:root {
  --primary: #8B1A4A;
  --primary-dark: #6B1035;
  --secondary: #C8703C;
  --accent: #6B8E3D;
  --dark: #0C0C1B;
  --dark-2: #1a1a2e;
  --light-bg: #FAF8F6;
  --text: #1E1E2C;
  --muted: #6D6A7A;
  --border: rgba(139,26,74,0.12);
  --gold: #F2C28A;
  --shadow-sm: 0 4px 16px rgba(12,12,27,0.08);
  --shadow-md: 0 8px 32px rgba(12,12,27,0.10);
  --shadow-lg: 0 16px 48px rgba(12,12,27,0.14);
  --shadow-xl: 0 24px 64px rgba(12,12,27,0.18);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Base ─────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.75;
  padding-top: 80px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--secondary); }

h1, h2, h3, .section-heading h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

/* ── Navbar ───────────────────────────────────────────── */
.navbar-siyat {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(139,26,74,0.08);
  height: 80px;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar-siyat.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 28px rgba(12,12,27,0.10);
}

.navbar-brand {
  align-items: center;
  display: flex;
  gap: 12px;
  max-width: 72%;
}

.navbar-brand img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}

.navbar-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar-brand-text strong {
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: normal;
}

.navbar-brand-text span {
  color: var(--secondary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.navbar-toggler {
  border-color: var(--border);
}

.nav-link,
.dropdown-item {
  color: var(--dark-2);
  font-size: 0.91rem;
  font-weight: 700;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  background: var(--secondary);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  width: 100%;
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-link:hover,
.nav-link.active,
.dropdown-item:hover,
.dropdown-item.active {
  color: var(--secondary) !important;
}

.dropdown-menu {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ── Eyebrow ──────────────────────────────────────────── */
.eyebrow {
  align-items: center;
  color: var(--gold);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--gold);
  border-radius: 2px;
  content: "";
  display: inline-block;
  height: 2px;
  width: 28px;
  flex-shrink: 0;
}

/* ── Hero Section ─────────────────────────────────────── */
.hero-section {
  background:
    linear-gradient(150deg, rgba(12,12,27,0.92) 0%, rgba(107,16,53,0.85) 60%, rgba(200,112,60,0.55) 100%),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
  color: #fff;
  margin-top: -80px;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 50% 100%, 0 92%);
  padding-bottom: 120px;
}

.page-hero {
  background:
    linear-gradient(150deg, rgba(12,12,27,0.92) 0%, rgba(107,16,53,0.85) 60%, rgba(200,112,60,0.55) 100%),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
  color: #fff;
  margin-top: -80px;
  overflow: hidden;
  padding: 150px 0 100px;
  position: relative;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-deco {
  background: radial-gradient(circle, rgba(200,112,60,0.22) 0%, transparent 70%);
  border-radius: 50%;
  height: 600px;
  pointer-events: none;
  position: absolute;
  right: -160px;
  top: -160px;
  width: 600px;
  z-index: 1;
}

.hero-section h1,
.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1.06;
  max-width: 900px;
}

.hero-lead {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  margin-top: 24px;
  max-width: 820px;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, #b05a2a 100%);
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 32px;
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(200,112,60,0.38);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200,112,60,0.50);
  color: #fff;
}

.btn-hero-outline {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.42);
  border-radius: 50px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 32px;
  transition: all var(--transition);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.70);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 44px;
}

.hero-badge {
  align-items: center;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  color: rgba(255,255,255,0.92);
  display: inline-flex;
  font-size: 0.80rem;
  font-weight: 600;
  gap: 7px;
  padding: 8px 18px;
}

.hero-badge i {
  color: var(--gold);
  font-size: 0.95rem;
}

/* ── Notice Band ──────────────────────────────────────── */
.notice-band {
  background: var(--light-bg);
  padding: 32px 0 0;
}

.notice-card {
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(200,112,60,0.24);
  border-left: 5px solid var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 18px;
  padding: 24px 28px;
}

.notice-icon {
  background: rgba(200,112,60,0.10);
  border-radius: 50%;
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notice-icon i {
  color: var(--secondary);
  font-size: 1.5rem;
}

.notice-card p {
  font-weight: 700;
  margin: 0;
  align-self: center;
}

/* ── Stats Strip ──────────────────────────────────────── */
.stats-strip {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 56px 0;
}

.stat-item {
  padding: 12px 20px;
}

.stat-item .stat-number {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.stat-item .stat-label {
  color: rgba(255,255,255,0.72);
  font-size: 0.80rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* ── Section Utilities ────────────────────────────────── */
.section-pad { padding: 90px 0; }
.bg-light-warm { background: var(--light-bg); }

.section-label {
  align-items: center;
  color: var(--secondary);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-label::before {
  background: var(--secondary);
  border-radius: 2px;
  content: "";
  display: inline-block;
  height: 2px;
  width: 22px;
}

.section-heading {
  margin-bottom: 32px;
}
.section-heading span {
  color: var(--secondary);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.section-heading h2 {
  color: var(--dark-2);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
}

/* ── Content Card ─────────────────────────────────────── */
.content-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  height: 100%;
  padding: clamp(24px, 4vw, 44px);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.content-card::before {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  top: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  width: 100%;
}

.content-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.content-card:hover::before { transform: scaleX(1); }

.content-card h2 {
  color: var(--primary);
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  margin-bottom: 18px;
}

.content-card p:last-child,
.content-card ul:last-child {
  margin-bottom: 0;
}

/* Card icon header */
.card-icon-header {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.card-icon-header .icon-box {
  align-items: center;
  background: linear-gradient(135deg, rgba(139,26,74,0.10), rgba(200,112,60,0.10));
  border-radius: var(--radius-sm);
  display: flex;
  flex-shrink: 0;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.card-icon-header .icon-box i {
  color: var(--primary);
  font-size: 1.4rem;
}

.card-icon-header h2 {
  margin-bottom: 0 !important;
}

/* ── Content List ─────────────────────────────────────── */
.content-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.content-list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.content-list li::before {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 8px;
}

/* ── Feature Cards (Key Disclosures) ─────────────────── */
.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-bottom: 3px solid transparent;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  position: relative;
  text-decoration: none;
  transition: all var(--transition);
}

.feature-card:hover {
  border-bottom-color: var(--secondary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-card-icon {
  align-items: center;
  background: rgba(139,26,74,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  height: 52px;
  justify-content: center;
  transition: all var(--transition);
  width: 52px;
}

.feature-card:hover .feature-card-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.feature-card-icon i {
  color: var(--primary);
  font-size: 1.5rem;
  transition: color var(--transition);
}

.feature-card:hover .feature-card-icon i { color: #fff; }

.feature-card-title {
  color: var(--dark-2);
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.feature-card-arrow {
  align-items: center;
  background: rgba(139,26,74,0.06);
  border-radius: 50%;
  color: var(--primary);
  display: flex;
  height: 32px;
  justify-content: center;
  transition: all var(--transition);
  width: 32px;
  flex-shrink: 0;
}

.feature-card:hover .feature-card-arrow {
  background: var(--primary);
  color: #fff;
  transform: translateX(4px);
}

/* ── Overview Graphic ─────────────────────────────────── */
.overview-graphic {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  height: 100%;
}

.overview-stat-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}

.overview-stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.overview-stat-card .ov-icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(139,26,74,0.10), rgba(200,112,60,0.10));
  border-radius: 50%;
  display: flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.overview-stat-card .ov-icon i {
  color: var(--primary);
  font-size: 1.3rem;
}

.overview-stat-card .ov-value {
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.overview-stat-card .ov-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn-siyat {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(139,26,74,0.30);
}
.btn-siyat:hover {
  background: linear-gradient(135deg, var(--secondary) 0%, #a05028 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200,112,60,0.35);
}

.btn-siyat-outline {
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: 50px;
  color: var(--primary);
  font-weight: 700;
  padding: 10px 28px;
  transition: all var(--transition);
}
.btn-siyat-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Tables ───────────────────────────────────────────── */
.table-siyat thead th {
  background: linear-gradient(90deg, var(--dark) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-weight: 700;
  border: none;
}

.table-siyat td,
.table-siyat th {
  padding: 16px 18px;
}

.table-siyat tbody tr:hover {
  background: rgba(139,26,74,0.04);
}

/* ── Contact Info Card ────────────────────────────────── */
.contact-info-card {
  background: linear-gradient(145deg, var(--dark) 0%, var(--dark-2) 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  height: 100%;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px);
  position: relative;
}

.contact-info-card::before {
  background: radial-gradient(circle at 80% 20%, rgba(200,112,60,0.30), transparent 50%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.contact-info-card::after {
  background: radial-gradient(circle at 20% 80%, rgba(139,26,74,0.25), transparent 50%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.contact-info-card > * { position: relative; z-index: 2; }

.contact-info-card h2 {
  color: var(--gold);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.contact-detail {
  align-items: flex-start;
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-detail:last-child { margin-bottom: 0; }

.contact-detail-icon {
  align-items: center;
  background: rgba(242,194,138,0.15);
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.contact-detail-icon i {
  color: var(--gold);
  font-size: 1rem;
}

.contact-detail-text {
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  line-height: 1.6;
  padding-top: 8px;
}

/* ── Map ──────────────────────────────────────────────── */
.map-wrap {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 430px;
  overflow: hidden;
}

.map-wrap iframe {
  border: 0;
  height: 100%;
  min-height: 430px;
  width: 100%;
}

/* ── Notice Articles (Customer Awareness) ─────────────── */
.notice-stack { display: grid; gap: 24px; }

.notice-article {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  padding: clamp(24px, 4vw, 40px);
  position: relative;
  transition: all var(--transition);
}

.notice-article:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.notice-article h2 {
  color: var(--primary);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  margin-bottom: 14px;
}

.notice-article p:last-child,
.notice-article ul:last-child { margin-bottom: 0; }

/* ── Footer ───────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.80);
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--gold), var(--secondary), var(--primary));
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.site-footer::after {
  background: radial-gradient(ellipse at 80% 0%, rgba(200,112,60,0.12) 0%, transparent 55%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.site-footer > .container { position: relative; z-index: 2; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  filter: brightness(1.1);
}

.footer-brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-brand-name strong {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-brand-name span {
  color: var(--gold);
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer h3 {
  color: var(--gold);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-reg-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.78);
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  margin-top: 14px;
  padding: 6px 14px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  align-items: center;
  color: rgba(255,255,255,0.78);
  display: inline-flex;
  font-size: 0.90rem;
  gap: 8px;
  transition: color var(--transition), transform var(--transition);
}

.footer-links a::before {
  background: var(--gold);
  border-radius: 50%;
  content: "";
  flex-shrink: 0;
  height: 5px;
  transition: background var(--transition);
  width: 5px;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-contact-item {
  align-items: flex-start;
  display: flex;
  font-size: 0.90rem;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 3px;
}

.footer-contact-item span {
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}

.footer-divider {
  border-color: rgba(255,255,255,0.10);
  margin: 40px 0 0;
}

.footer-bottom {
  padding-top: 22px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    background: rgba(255,255,255,0.98);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-top: 14px;
    padding: 18px;
  }
  .nav-link::after { display: none; }
}

@media (max-width: 991.98px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .overview-graphic {
    margin-top: 28px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
    padding-bottom: 80px;
  }
  .page-hero {
    clip-path: polygon(0 0, 100% 0, 100% 92%, 50% 100%, 0 92%);
    padding: 140px 0 90px;
  }
  .stats-strip { padding: 40px 0; }
  .stat-item { padding: 8px 12px; }
}

@media (max-width: 575.98px) {
  body { padding-top: 76px; }

  .navbar-siyat { height: 76px; }

  .hero-section,
  .page-hero { margin-top: -76px; }

  .page-hero { padding: 130px 0 80px; }

  .navbar-brand { max-width: 78%; }
  .navbar-brand img { height: 36px; }
  .navbar-brand-text strong { font-size: 0.76rem; }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section-pad { padding: 64px 0; }

  .hero-actions { flex-direction: column; }
  .btn-hero-primary,
  .btn-hero-outline { text-align: center; }
}
