/* ================================================================
   The Lion's Kingdom IT Solutions LLC — Main Stylesheet
   Import order: colors.css → main.css → responsive.css
   ================================================================ */

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

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

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

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-dark);
}

ul {
  list-style: none;
}

/* ----------------------------------------------------------------
   TYPOGRAPHY
   ---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-heading);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem,   4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.text-gold     { color: var(--gold); }
.text-muted    { color: var(--text-muted); }
.text-on-dark  { color: var(--text-on-dark); }

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ----------------------------------------------------------------
   LAYOUT UTILITIES
   ---------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  padding: var(--section-py) 0;
}

.section--dark {
  background-color: var(--bg-hero);
}

.section--mid {
  background-color: var(--bg-dark);
}

.section--alt {
  background-color: #EFECEA;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header .lead {
  max-width: 640px;
  margin: 0 auto;
}

.section--dark .section-header h2,
.section--mid .section-header h2 {
  color: var(--text-gold);
}

.section--dark .section-header .lead,
.section--mid .section-header .lead {
  color: var(--text-on-dark);
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 20px;
  border-radius: var(--radius-full);
}

.text-center { text-align: center; }

.grid {
  display: grid;
  gap: 28px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm      { gap: 12px; }
.gap-md      { gap: 20px; }
.gap-lg      { gap: 32px; }

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border-color: var(--btn-primary-bg);
}

.btn-primary:hover {
  background-color: var(--btn-primary-hover-bg);
  border-color: var(--btn-primary-hover-bg);
  color: var(--btn-primary-hover-text);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--btn-outline-text);
  border-color: var(--btn-outline-border);
}

.btn-outline:hover {
  background-color: var(--btn-outline-hover-bg);
  color: var(--btn-outline-hover-text);
  transform: translateY(-1px);
}

.btn-light {
  background-color: var(--btn-light-bg);
  color: var(--btn-light-text);
  border-color: var(--btn-light-bg);
}

.btn-light:hover {
  background-color: var(--btn-light-hover-bg);
  border-color: var(--btn-light-hover-bg);
  color: var(--btn-light-text);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 38px;
  font-size: 1.05rem;
}

/* ----------------------------------------------------------------
   NAVIGATION
   ---------------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

.site-nav.scrolled {
  background-color: var(--bg-hero);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.site-nav.scrolled .nav-inner {
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 20px var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding var(--transition);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-text .brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.nav-logo-text .brand-tagline {
  font-size: 0.7rem;
  color: var(--text-on-dark);
  opacity: 0.75;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-on-dark);
  text-decoration: none;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(201, 168, 67, 0.08);
}

.nav-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  min-width: 230px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  transform: translateX(-50%) translateY(8px);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-on-dark);
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}

.nav-dropdown a:hover {
  color: var(--gold);
  background: rgba(201, 168, 67, 0.1);
  padding-left: 20px;
}

.nav-cta {
  margin-left: 12px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.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); }

/* Mobile Nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg-hero);
  border-top: 1px solid var(--border-dark);
  padding: 16px var(--container-px) 24px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  padding: 12px 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-on-dark);
  border-bottom: 1px solid var(--border-dark);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-mobile a:hover {
  color: var(--gold);
}

.nav-mobile .mobile-section-label {
  margin-top: 12px;
  margin-bottom: 4px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  border-bottom: none;
}

.nav-mobile .mobile-sub-link {
  padding: 9px 0 9px 16px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* ----------------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-hero);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201, 168, 67, 0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(201, 168, 67, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 67, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 67, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 67, 0.12);
  border: 1px solid rgba(201, 168, 67, 0.3);
  color: var(--gold-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero-text h1 {
  color: var(--text-on-dark);
  margin-bottom: 24px;
}

.hero-text h1 span {
  color: var(--gold);
}

.hero-text .lead {
  color: var(--text-on-dark);
  opacity: 0.85;
  margin-bottom: 36px;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--border-dark);
}

.hero-stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-on-dark);
  opacity: 0.7;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(201, 168, 67, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.05); }
}

.hero-logo-wrap img {
  width: 260px;
  height: 260px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

/* Image placeholder style */
.img-placeholder {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
  border: 2px dashed var(--border-gold);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

.img-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.5;
}

/* ----------------------------------------------------------------
   SERVICE CARDS
   ---------------------------------------------------------------- */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-pale);
}

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

.service-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold-dark);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-heading);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service-card .card-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.service-card:hover .card-link {
  gap: 10px;
}

/* Dark variant service card */
.service-card--dark {
  background: var(--bg-dark);
  border-color: var(--border-dark);
}

.service-card--dark h3 {
  color: var(--text-gold);
}

.service-card--dark p {
  color: var(--text-on-dark);
  opacity: 0.8;
}

.service-card--dark .service-card-icon {
  background: rgba(201, 168, 67, 0.12);
}

.service-card--dark .service-card-icon svg {
  color: var(--gold);
}

/* ----------------------------------------------------------------
   PAGE HERO (inner pages)
   ---------------------------------------------------------------- */
.page-hero {
  background-color: var(--bg-hero);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg-light);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-on-dark);
  opacity: 0.65;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--text-on-dark);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity var(--transition);
}

.breadcrumb a:hover {
  opacity: 1;
  color: var(--gold);
}

.breadcrumb span { opacity: 1; }

.page-hero h1 {
  color: var(--text-on-dark);
  margin-bottom: 16px;
}

.page-hero h1 span { color: var(--gold); }

.page-hero .lead {
  color: var(--text-on-dark);
  opacity: 0.82;
  max-width: 600px;
}

/* ----------------------------------------------------------------
   TRUST BADGES / FEATURE LIST
   ---------------------------------------------------------------- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(201, 168, 67, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.feature-item h4 {
  font-size: 0.95rem;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.feature-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.section--dark .feature-item h4 {
  color: var(--text-gold);
}

.section--dark .feature-item p {
  color: var(--text-on-dark);
  opacity: 0.8;
}

/* ----------------------------------------------------------------
   CTA BANNER
   ---------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-hero) 0%, var(--bg-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-dark);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 67, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--text-on-dark);
  margin-bottom: 16px;
  position: relative;
}

.cta-banner h2 span { color: var(--gold); }

.cta-banner p {
  color: var(--text-on-dark);
  opacity: 0.8;
  max-width: 520px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-banner .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ----------------------------------------------------------------
   FAQ SECTION
   ---------------------------------------------------------------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--gold-dark);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ----------------------------------------------------------------
   TESTIMONIAL
   ---------------------------------------------------------------- */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-pale);
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 20px;
  padding-top: 28px;
}

.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-heading);
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.stars svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  fill: var(--gold);
}

/* ----------------------------------------------------------------
   CONTACT FORM
   ---------------------------------------------------------------- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-heading);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--bg-card);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 67, 0.15);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background-color: var(--bg-footer);
  color: var(--text-footer);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-brand .footer-logo img {
  height: 50px;
}

.footer-brand .footer-logo .brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-footer-heading);
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-footer);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(201, 168, 67, 0.1);
  border: 1px solid rgba(201, 168, 67, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--bg-footer);
  border-color: var(--gold);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-footer-heading);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-footer);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--text-footer-link);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: var(--text-footer);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  color: var(--gold);
  margin-top: 2px;
}

.footer-contact-item a {
  color: var(--text-footer);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--text-footer-link);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 67, 0.12);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-footer);
  opacity: 0.6;
  margin: 0;
}

.footer-bottom a {
  color: var(--text-footer);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--text-footer-link);
}

/* ----------------------------------------------------------------
   UTILITIES
   ---------------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold);
  color: var(--text-heading);
  padding: 8px 16px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* Fade-in animation for sections */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }
