/*
Theme Name: Zenith Link Theme
Theme URI: https://zenithlinktrading.co.uk
Author: Zenith Link Trading Ltd
Author URI: https://zenithlinktrading.co.uk
Description: Premium, minimalist, one-page corporate theme for ZENITH LINK TRADING LTD (UK Company No. 14580430). Featuring official brand logo, color palette (#091B33 Regal Navy & #B38440 Luxury Gold), white background, alternating beige sections, interactive capabilities tabs, statutory Companies House disclosures, and corporate inquiry form.
Version: 1.4.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zenith-link
Tags: custom-logo, custom-menu, one-column, grid-layout, right-sidebar, full-width-template, translation-ready
*/

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');
html, body{overflow-x:hidden;}
:root {
  /* Official Brand Colors */
  --brand-navy: #091B33;               /* Regal Navy Blue */
  --brand-navy-hover: #051121;
  --brand-navy-light: rgba(9, 27, 51, 0.05);

  --accent-gold: #b38440;              /* Luxury Warm Gold */
  --accent-gold-hover: #966c2f;
  --accent-gold-light: rgba(179, 132, 64, 0.1);
  --accent-gold-border: rgba(179, 132, 64, 0.35);

  /* Page Backgrounds */
  --bg-dark: #ffffff;                  /* Main White Background */
  --bg-surface: #f7f6f2;               /* Soft Warm Beige Section Tint */
  --bg-surface-elevated: #ffffff;      /* Pure White Card Fill */
  --bg-glass: rgba(255, 255, 255, 0.94);

  /* Typography */
  --text-main: #091B33;                /* High Contrast Regal Navy Text */
  --text-muted: #4d596c;
  --text-subtle: #798598;

  --border-light: #e5e3dc;
  --border-subtle: #f0eee7;
  --border-active: rgba(179, 132, 64, 0.6);

  --shadow-sm: 0 4px 16px rgba(9, 27, 51, 0.04);
  --shadow-md: 0 12px 32px rgba(9, 27, 51, 0.08);
  --shadow-glow: 0 4px 20px rgba(179, 132, 64, 0.25);

  /* Typography Pairing */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --max-width: 1280px;
  --header-height: 90px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  background-color: var(--bg-dark);
  color: var(--text-main);
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

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

/* --- Tasteful Scroll Entrance Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Section Typography Utilities --- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background-color: var(--accent-gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--brand-navy);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  font-weight: 400;
  line-height: 1.7;
}

/* --- Sleek Header & Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
}

.site-header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 74px;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(9, 27, 51, 0.12);
  transition: var(--transition);
}

.site-header.scrolled .brand-logo-img {
  height: 44px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link, .nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.nav-link:hover, .nav-menu a:hover, .nav-link.active {
  color: var(--brand-navy);
}

.nav-link::after, .nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-menu a:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.775rem;
  font-weight: 600;
  color: #15803d;
  transition: var(--transition);
  white-space: nowrap;
}

.status-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #16a34a;
  box-shadow: 0 0 6px #16a34a;
  animation: pulse 2.4s infinite ease-in-out;
}

@keyframes pulse {
  0% { opacity: 0.6; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0.6; transform: scale(0.9); }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--brand-navy);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--brand-navy);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: #ffffff;
  color: var(--brand-navy);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: var(--accent-gold-light);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brand-navy);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- Hero Section (White Background) --- */
.hero-section {
  position: relative;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 90px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: #ffffff;
  background-image: radial-gradient(circle at 85% 15%, rgba(247, 246, 242, 0.9) 0%, transparent 55%),
                    radial-gradient(circle at 10% 85%, rgba(179, 132, 64, 0.05) 0%, transparent 45%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.company-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  transition: var(--transition);
}

.company-meta-pill:hover {
  border-color: var(--accent-gold-border);
}

.company-meta-pill strong {
  color: var(--accent-gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: var(--brand-navy);
}

.hero-title span {
  color: var(--accent-gold);
  font-style: italic;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats-row {
  display: flex;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.775rem;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.hero-image-wrapper img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

.hero-badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(9, 27, 51, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.badge-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.badge-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Section Formatting --- */
.section {
  padding: 100px 0;
  position: relative;
  background-color: #ffffff;
}

.section-dark {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* --- About Section --- */
.about-grid-redesigned {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 40px;
}

.about-visual-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 440px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.about-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-visual-card:hover img {
  transform: scale(1.04);
}

.about-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 27, 51, 0.92) 0%, rgba(9, 27, 51, 0.35) 60%, transparent 100%);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
}

.visual-quote {
  margin-bottom: 16px;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 0.5;
  color: var(--accent-gold);
  display: block;
}

.visual-quote p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.4;
  color: #f3f4f6;
}

.visual-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.775rem;
  color: #d1d5db;
  letter-spacing: 0.5px;
}

.meta-dot {
  color: var(--accent-gold);
}

.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-feature-box {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.about-feature-box:hover {
  border-color: var(--accent-gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-gold-light);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-gold-border);
  transition: var(--transition);
}

.about-feature-box:hover .feature-icon-wrapper {
  background: var(--brand-navy);
  color: var(--accent-gold);
  border-color: var(--brand-navy);
  transform: rotate(4deg) scale(1.05);
}

.feature-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 6px;
}

.feature-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --- Operations & Capabilities --- */
.tabs-header {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
  overflow-x: auto;
}

.tab-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--brand-navy);
  border-color: var(--accent-gold);
  transform: translateY(-1px);
}

.tab-btn.active {
  color: #ffffff;
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.tab-content {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
}

.tab-details h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--brand-navy);
}

.sic-badge {
  display: inline-block;
  background: var(--accent-gold-light);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold-border);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.775rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.tab-details p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.925rem;
  color: var(--brand-navy);
  font-weight: 500;
}

.feature-list li svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

.tab-image-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.tab-image-container img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.tab-image-container:hover img {
  transform: scale(1.04);
}

/* --- Lookbook & Aesthetic Showcase --- */
.lookbook-filter {
  display: flex;
  gap: 12px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent-gold);
  color: #ffffff;
  background: var(--accent-gold);
  transform: translateY(-1px);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.lookbook-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border-light);
  cursor: pointer;
  height: 420px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.lookbook-item:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold-border);
  box-shadow: var(--shadow-md);
}

.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.lookbook-item:hover img {
  transform: scale(1.06);
}

.lookbook-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 27, 51, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0.95;
  transition: var(--transition);
}

.lookbook-item:hover .lookbook-overlay {
  background: linear-gradient(to top, rgba(9, 27, 51, 0.95) 0%, transparent 55%);
}

.lookbook-tag {
  font-size: 0.725rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #f3d489;
  font-weight: 600;
  margin-bottom: 4px;
}

.lookbook-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
}

/* --- Corporate Governance Section --- */
.gov-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  margin-top: 40px;
}

.gov-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gov-card:hover {
  box-shadow: var(--shadow-md);
}

.gov-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.gov-card-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.uk-gov-seal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.775rem;
  font-weight: 600;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 6px 12px;
  border-radius: 4px;
}

.details-table {
  width: 100%;
  border-collapse: collapse;
}

.details-table tr {
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.details-table tr:hover {
  background: rgba(247, 246, 242, 0.6);
}

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

.details-table th, .details-table td {
  padding: 14px 0;
  text-align: left;
  font-size: 0.9rem;
}

.details-table th {
  color: var(--text-muted);
  font-weight: 500;
  width: 40%;
}

.details-table td {
  color: var(--brand-navy);
  font-weight: 500;
}

.previous-names-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
}

.previous-names-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--brand-navy);
}

.name-history-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.name-history-item {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid var(--accent-gold);
  transition: var(--transition);
}

.name-history-item:hover {
  transform: translateX(4px);
}

.name-history-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--brand-navy);
}

.name-history-item span {
  font-size: 0.775rem;
  color: var(--text-subtle);
}

/* --- Contact & Inquiries Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-gold-light);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.info-item:hover .info-icon {
  background: var(--brand-navy);
  color: var(--accent-gold);
  transform: scale(1.08);
}

.info-text h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.info-text p {
  font-size: 1rem;
  color: var(--brand-navy);
  font-weight: 500;
}

.contact-form {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--brand-navy);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px var(--accent-gold-light);
}

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

/* --- Footer --- */
.site-footer {
  background-color: var(--brand-navy);
  color: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 60px 0 30px 0;
}

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

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: 4px;
}

.footer-about .brand-name {
  color: #ffffff;
}

.footer-about p {
  color: #a3b0c2;
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 400px;
}

.footer-column h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: #a3b0c2;
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #79879c;
  flex-wrap: wrap;
  gap: 16px;
}

/* --- Lightbox Modal --- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(9, 27, 51, 0.85);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.active {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}

.modal-content {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  max-width: 800px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(9, 27, 51, 0.7);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  font-size: 1.2rem;
}

.modal-body img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.modal-info {
  padding: 24px;
  background: #ffffff;
}

.modal-info .lookbook-tag {
  color: var(--accent-gold);
}

.modal-info .lookbook-title {
  color: var(--brand-navy);
}

/* --- Toast Notification --- */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
}

.toast {
  background: #ffffff;
  border: 1px solid var(--accent-gold);
  border-left: 4px solid var(--accent-gold);
  color: var(--brand-navy);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  animation: slideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* --- Responsive Media Queries --- */
@media (max-width: 1100px) {
  .nav-menu {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .hero-grid, .about-grid-redesigned, .tab-content.active, .gov-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .about-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--header-height));
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 24px;
    border-left: 1px solid var(--border-light);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-toggle {
    display: block;
  }

  .status-badge {
    display: none;
  }

  .hero-stats-row {
    flex-direction: column;
    gap: 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}
