/* ============================================================
   INK SOLUTIONS - Global Stylesheet
   A classic, professional printer & tech services site
   ============================================================ */



/* ---- CSS Variables ---- */
:root {
  --ink: #1a1a2e;
  --ink-mid: #2d2d44;
  --accent: #0a7abf;
  --accent-dark: #055a8c;
  --accent-light: #e8f4fb;
  --gold: #c9a84c;
  --white: #ffffff;
  --off-white: #f8f8f5;
  --grey-light: #f0eff0;
  --grey: #888;
  --border: #ddd;
  --text: #333;
  --text-light: #666;
  --shadow: 0 2px 16px rgba(0,0,0,0.10);
  --shadow-md: 0 4px 32px rgba(0,0,0,0.13);
  --radius: 4px;
  --max-w: 1140px;
  --font-display: Arial, 'Helvetica Neue', sans-serif;
  --font-body: Arial, 'Helvetica Neue', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-dark); }

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.3;
}

p { margin-bottom: 1rem; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Top Bar ---- */
.top-bar {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: rgba(255,255,255,0.75); }
.top-bar a:hover { color: var(--gold); }
.top-bar-left, .top-bar-right { display: flex; gap: 20px; align-items: center; }
.top-bar i { margin-right: 5px; color: var(--gold); }

/* ---- Header / Nav ---- */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-logo svg { height: 42px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .brand { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--ink); letter-spacing: -0.5px; }
.logo-text .tagline { font-size: 0.68rem; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav > ul { display: flex; gap: 0; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color .2s, background .2s;
  border-radius: var(--radius);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a { color: var(--accent); }

/* Dropdown */
.has-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--white);
  min-width: 680px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-md);
  padding: 20px 24px;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 200;
}
.dropdown-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dropdown-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
  margin-bottom: 10px;
}
.dropdown-col ul { display: flex; flex-direction: column; gap: 4px; }
.dropdown-col ul li a {
  font-size: 0.87rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 3px 0;
}
.dropdown-col ul li a:hover { color: var(--accent); }
.dropdown-col ul li a::before {
  content: '›';
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

/* Popular in dropdown */
.dropdown-popular {
  border-top: 1px solid var(--border);
  margin-top: 14px;
  padding-top: 12px;
  grid-column: 1/-1;
}
.dropdown-popular h4 { margin-bottom: 8px; }
.dropdown-popular .pop-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.dropdown-popular .pop-links a {
  background: var(--grey-light);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text);
}
.dropdown-popular .pop-links a:hover { background: var(--accent-light); color: var(--accent); border-color: var(--accent); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero / Page Banner ---- */
.page-banner {
  background: linear-gradient(110deg, var(--ink) 55%, var(--accent-dark) 100%);
  color: var(--white);
  padding: 56px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23ffffff' 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");
}
.page-banner h1 {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  position: relative;
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb li + li::before { content: '›'; margin-right: 10px; }

/* ---- Sections ---- */
.section { padding: 70px 0; }
.section-alt { background: var(--off-white); }
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 { font-size: 2rem; margin-bottom: 10px; }
.section-title p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-title .title-line {
  width: 50px; height: 3px;
  background: var(--accent);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ---- Cards ---- */
.card-grid { display: grid; gap: 24px; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.service-card .icon {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
  color: var(--accent);
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-card p { font-size: 0.92rem; color: var(--text-light); margin: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 11px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* ---- Hero Section (home) ---- */
.hero {
  background: linear-gradient(115deg, var(--ink) 50%, #0d3b5e 100%);
  color: var(--white);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23ffffff' 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");
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; }
.hero-text h1 { font-size: 2.8rem; color: var(--white); margin-bottom: 18px; }
.hero-text h1 span { color: var(--gold); }
.hero-text p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img { display: flex; justify-content: center; align-items: center; }
.hero-img img { border-radius: var(--radius); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }

/* Printer search box */
.search-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.search-box h3 { font-size: 1rem; margin-bottom: 14px; color: var(--ink); }
.search-box p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 12px; }
.search-row { display: flex; gap: 10px; }
.search-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color .2s;
}
.search-row input:focus { border-color: var(--accent); }
.search-row button {
  padding: 10px 20px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background .2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.search-row button:hover { background: var(--accent-dark); }

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--accent);
  padding: 28px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  text-align: center;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px;
}
.stat-item:last-child { border-right: none; }
.stat-item .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; display: block; }
.stat-item .lbl { font-size: 0.82rem; opacity: 0.85; text-transform: uppercase; letter-spacing: 1px; }

/* ---- Feature List ---- */
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-item .fi-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1rem;
}
.feature-item h4 { font-size: 0.97rem; margin-bottom: 3px; }
.feature-item p { font-size: 0.875rem; color: var(--text-light); margin: 0; }

/* ---- Two Col Layout ---- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col.reverse > *:first-child { order: 2; }
.two-col.reverse > *:last-child { order: 1; }

/* ---- Content Article ---- */
.article-body h3 { font-size: 1.35rem; margin: 28px 0 10px; color: var(--ink); }
.article-body h5 { font-size: 1rem; margin: 20px 0 8px; color: var(--ink-mid); font-family: var(--font-body); font-weight: 700; }
.article-body p { color: var(--text-light); font-size: 0.97rem; }
.article-body ul { margin: 0 0 1rem 0; padding-left: 20px; list-style: disc; }
.article-body ul li { margin-bottom: 6px; color: var(--text-light); font-size: 0.97rem; }

/* Gallery two cols */
.img-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.img-gallery img { border-radius: var(--radius); width: 100%; object-fit: cover; height: 200px; border: 1px solid var(--border); }

/* ---- Installation / Loading ---- */
.install-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  max-width: 520px;
  box-shadow: var(--shadow-md);
}
.install-card .status { font-size: 0.88rem; color: var(--accent); font-weight: 600; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.install-icons { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.install-icons i { font-size: 2rem; color: var(--accent); }
.connect-line { flex: 1; height: 3px; background: var(--grey-light); border-radius: 2px; overflow: hidden; }
.connect-fill { height: 100%; background: var(--accent); width: 0%; transition: width 1s; }
.install-info { font-size: 0.875rem; color: var(--text-light); margin-bottom: 20px; }
.progress-wrap { margin-bottom: 12px; }
.progress-label { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--text-light); margin-bottom: 5px; }
.progress-bar { height: 8px; background: var(--grey-light); border-radius: 20px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 20px; background: var(--accent); width: 0%; transition: width .4s; }
.progress-fill.dl { background: var(--accent); }
.progress-fill.inst { background: var(--gold); }

/* ---- Policy Pages ---- */
.policy-content h2 { font-size: 1.5rem; margin: 32px 0 10px; }
.policy-content h3 { font-size: 1.15rem; margin: 24px 0 8px; }
.policy-content h4, .policy-content h5 { font-size: 1rem; margin: 18px 0 6px; font-family: var(--font-body); font-weight: 700; }
.policy-content p { color: var(--text-light); font-size: 0.95rem; margin-bottom: .9rem; }
.policy-content ul { padding-left: 20px; list-style: disc; margin-bottom: 1rem; }
.policy-content ul li { color: var(--text-light); font-size: 0.95rem; margin-bottom: 5px; }
.policy-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.875rem; }
.policy-content table th { background: var(--ink); color: var(--white); padding: 10px 14px; text-align: left; font-family: var(--font-body); font-weight: 600; }
.policy-content table td { padding: 9px 14px; border-bottom: 1px solid var(--border); }
.policy-content table tr:nth-child(even) { background: var(--off-white); }
.policy-date { background: var(--accent-light); border-left: 3px solid var(--accent); padding: 10px 16px; font-size: 0.875rem; color: var(--text-light); margin-bottom: 24px; border-radius: 0 var(--radius) var(--radius) 0; }

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer;
  font-weight: 600; font-size: 1rem; color: var(--ink);
  transition: color .2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q .faq-arrow { font-size: 1.1rem; color: var(--accent); transition: transform .2s; }
.faq-a { display: none; padding: 0 0 18px; color: var(--text-light); font-size: 0.95rem; }
.faq-item.open .faq-q { color: var(--accent); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-item.open .faq-a { display: block; }

/* ---- Contact / Appointment Form ---- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color .2s;
  background: var(--white);
  color: var(--text);
}
.form-control:focus { border-color: var(--accent); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox-row { display: flex; gap: 16px; flex-wrap: wrap; }
.checkbox-label { display: flex; align-items: center; gap: 7px; font-size: 0.88rem; cursor: pointer; }
.checkbox-label input { accent-color: var(--accent); }

/* ---- Membership ---- */
.plan-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  background: var(--white);
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan-card.featured { border-color: var(--accent); border-width: 2px; }
.plan-badge {
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}
.plan-name { font-size: 1.3rem; margin-bottom: 8px; }
.plan-price { font-family: var(--font-display); font-size: 2.6rem; color: var(--accent); font-weight: 700; line-height: 1; margin-bottom: 4px; }
.plan-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 8px; }
.plan-period { font-size: 0.8rem; color: var(--text-light); margin-bottom: 24px; }
.plan-features { text-align: left; margin-bottom: 24px; }
.plan-features li { padding: 6px 0; font-size: 0.9rem; border-bottom: 1px solid var(--grey-light); display: flex; gap: 8px; }
.plan-features li::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.testimonial-card .stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.92rem; color: var(--text-light); font-style: italic; margin-bottom: 16px; }
.testimonial-author { font-weight: 700; font-size: 0.88rem; color: var(--ink); }
.testimonial-role { font-size: 0.8rem; color: var(--text-light); }

/* ---- About page ---- */
.about-highlight { background: var(--accent); color: var(--white); padding: 28px; border-radius: var(--radius); }
.about-highlight h3 { color: var(--white); margin-bottom: 8px; }
.about-highlight p { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.95rem; }

/* ---- Partner ---- */
.partner-steps { counter-reset: step; }
.step {
  display: flex; gap: 20px; align-items: flex-start;
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}
.step-body h4 { font-size: 1rem; margin-bottom: 5px; }
.step-body p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ---- Alert / Notice ---- */
.notice {
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 20px;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
  font-size: 0.92rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { margin-top: 12px; line-height: 1.6; font-size: 0.875rem; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand .footer-logo svg { height: 36px; }
.footer-brand .footer-logo span { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); font-weight: 700; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; font-family: var(--font-body); font-weight: 700; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 8px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.875rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-item i { color: var(--gold); margin-top: 2px; font-size: 0.9rem; }
.footer-contact-item span { font-size: 0.875rem; color: rgba(255,255,255,0.65); }

.footer-bottom {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-light); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .dropdown-grid { grid-template-columns: repeat(2, 1fr); }
  .dropdown-menu { min-width: 440px; }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .hero-text h1 { font-size: 2rem; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col.reverse > *:first-child { order: unset; }
  .two-col.reverse > *:last-child { order: unset; }
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .form-row { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-top: 2px solid var(--accent);
    box-shadow: var(--shadow-md);
    padding: 16px 24px;
    gap: 0;
  }
  .main-nav.open > ul { flex-direction: column; width: 100%; }
  .main-nav.open > ul > li > a { border-bottom: 1px solid var(--border); border-radius: 0; }
  .dropdown-menu { position: static; min-width: unset; box-shadow: none; border: none; border-top: none; padding: 10px 0 0 12px; display: none; }
  .has-dropdown.open .dropdown-menu { display: block; }
  .dropdown-grid { grid-template-columns: 1fr; gap: 10px; }
  .page-banner h1 { font-size: 1.7rem; }
  .section { padding: 48px 0; }
}

@media (max-width: 500px) {
  .card-grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-text h1 { font-size: 1.7rem; }
}