/* ==========================================================================
   Infocomm Solution - Master Design System (Restrained Corporate Luxury)
   Logo Colors: Deep Navy (#102A56), Logo Gold (#DFA500), Logo Green (#19804D)
   Hierarchy: 70-80% Warm White/Neutral, 15-20% Deep Navy, 5% Gold Accent
   Typography: Manrope (Headings) + Inter (Body & UI)
   ========================================================================== */

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

:root {
  /* Restrained Brand Palette */
  --bg-primary: #FAFAF8;       /* Primary Warm White */
  --bg-secondary: #F3F2EE;     /* Soft Warm Grey */
  --bg-surface: #FFFFFF;       /* Pure White for Surfaces & Cards */
  --bg-surface-hover: #F8F7F3;
  
  --text-main: #102A56;        /* Deep Navy - Primary Brand Text */
  --text-secondary: #5F6570;   /* Muted Slate Grey */
  --text-muted: #858A91;       /* Light Muted Text */
  
  --border: #E4E3DF;           /* Subtle Warm Border */
  --border-subtle: #EBEAE5;
  
  --accent-gold: #DFA500;       /* Logo Gold - Used Sparingly (CTAs & Highlights) */
  --accent-gold-hover: #C89400;
  --accent-gold-subtle: #FFF9E6;
  --accent-gold-border: #F3DD99;

  --accent-green: #19804D;      /* Logo Green - Used extremely sparingly */

  /* Dark Grounding Footer & Contrast Sections */
  --navy-dark: #0B2347;
  --navy-dark-text: #FAFAF8;
  --navy-dark-muted: #94A3B8;
  --navy-dark-border: #1E3A66;

  /* Typography Families */
  --font-heading: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout & Spacing */
  --container-max: 1200px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Shadows - Minimal & Restrained */
  --shadow-subtle: 0 2px 8px rgba(16, 42, 86, 0.03), 0 1px 2px rgba(16, 42, 86, 0.02);
  --shadow-card: 0 4px 16px rgba(16, 42, 86, 0.04);
  --shadow-dropdown: 0 10px 30px rgba(16, 42, 86, 0.08);

  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.gradient-text {
  color: var(--text-main);
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-secondary); }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

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

.site-logo {
  width: 190px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.925rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
}

/* Dropdown Menu */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 230px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  box-shadow: var(--shadow-dropdown);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
}

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

.dropdown-link {
  display: block;
  padding: 0.55rem 0.85rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-body);
}

.dropdown-link:hover {
  background: var(--bg-primary);
  color: var(--text-main);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons - Restrained Brand Design */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.925rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}

/* Primary Button: Logo Gold background, Deep Navy text */
.btn-primary, .btn-hero {
  background: var(--accent-gold);
  color: var(--text-main);
  border: 1px solid var(--accent-gold);
  box-shadow: 0 2px 6px rgba(223, 165, 0, 0.25);
}

.btn-primary:hover, .btn-hero:hover {
  background: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  color: var(--text-main);
  transform: translateY(-1px);
}

.btn-outline, .btn-secondary {
  background: var(--bg-surface);
  border-color: var(--border);
  color: var(--text-main);
}

.btn-outline:hover, .btn-secondary:hover {
  background: var(--bg-primary);
  border-color: var(--text-main);
  color: var(--text-main);
}

.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   2026 Quiet Premium Hero Section
   ========================================================================== */
.hero {
  padding: 5.5rem 0 4.5rem;
  position: relative;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 3.5rem;
  align-items: center;
}

/* Eyebrow badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
}

/* Main headline - 56px max desktop */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

/* Subtitle */
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 2.25rem;
  font-weight: 400;
}

/* Primary CTA Group */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.btn-hero {
  font-size: 0.95rem;
  padding: 0.85rem 1.85rem;
}

.btn-hero .cta-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.btn-hero:hover .cta-arrow {
  transform: translateX(4px);
}

/* Quiet Secondary Service Line */
.hero-services-line {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* Visual Side - Studio Browser Frame Showcase */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-mockup-frame {
  width: 100%;
  max-width: 490px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-mockup-frame:hover {
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

/* Mockup Browser Top Bar */
.mockup-header {
  height: 38px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.mockup-dots .dot.red { background: #E26D5C; }
.mockup-dots .dot.yellow { background: #E9B44C; }
.mockup-dots .dot.green { background: #70B77E; }

.mockup-address {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-surface);
  padding: 3px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.mockup-address .lock-icon {
  font-size: 0.68rem;
}

.status-badge {
  font-size: 0.7rem;
  color: var(--accent-green);
  font-weight: 600;
}

/* Mockup Body Content */
.mockup-body {
  padding: 20px;
  background: var(--bg-primary);
}

.preview-site {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.preview-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.preview-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--text-main);
  letter-spacing: 0.04em;
}

.preview-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.preview-btn {
  background: var(--accent-gold);
  color: var(--text-main);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.preview-hero {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}

.preview-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent-green);
  background: rgba(25, 128, 77, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.preview-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
  line-height: 1.3;
}

.preview-text {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.preview-cta {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.72rem;
  padding: 5px 12px;
  border-radius: 4px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.preview-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px;
}

.card-line {
  height: 5px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 4px;
}

.card-line.long { width: 80%; }
.card-line.short { width: 50%; background: var(--accent-gold-border); }

/* Floating Enquiry Notification Badge */
.floating-badge-card {
  position: absolute;
  bottom: -14px;
  left: -14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-dropdown);
}

.badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--accent-gold-subtle);
  border: 1px solid var(--accent-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.badge-info {
  display: flex;
  flex-direction: column;
}

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

.badge-info span {
  font-size: 0.72rem;
  color: var(--accent-green);
  font-weight: 600;
}

/* ==========================================================================
   Sections & Standard Cards
   ========================================================================== */
.section {
  padding: 5.5rem 0;
  background-color: var(--bg-primary);
}

.section-darker, .section-alt {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.section-subtitle {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.section-desc {
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Cards - Restrained Quiet Style */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-subtle);
}

.card:hover {
  transform: translateY(-2px);
  border-color: var(--text-muted);
  box-shadow: var(--shadow-card);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-gold-subtle);
  border: 1px solid var(--accent-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.card-title {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
  color: var(--text-main);
}

.card-text {
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.card-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-link:hover {
  color: var(--accent-gold-hover);
}

/* Team Profile Cards */
.team-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 250px 1fr;
  transition: var(--transition);
  box-shadow: var(--shadow-subtle);
}

.team-card:hover {
  border-color: var(--text-muted);
  box-shadow: var(--shadow-card);
}

.team-img-wrapper {
  position: relative;
  height: 100%;
  min-height: 280px;
  background: var(--bg-secondary);
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: var(--bg-surface);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-main);
  font-weight: 600;
  border: 1px solid var(--border);
}

.team-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-name {
  font-size: 1.45rem;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

.team-role {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.925rem;
  margin-bottom: 0.75rem;
}

.team-exp {
  display: inline-block;
  background: var(--bg-secondary);
  color: var(--text-main);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  width: fit-content;
  border: 1px solid var(--border);
}

.team-bio {
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-size: 0.925rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 500;
}

/* AI Answer Box (AEO / GEO feature) */
.ai-answer-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 2rem;
  position: relative;
  box-shadow: var(--shadow-subtle);
}

.ai-answer-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text-main);
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.65rem;
}

.ai-answer-content {
  font-family: var(--font-body);
  font-size: 0.975rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.ai-answer-content strong {
  color: var(--text-main);
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.15rem 1.35rem;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.35rem 1.15rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.925rem;
  display: none;
  border-top: 1px solid var(--border-subtle);
  margin-top: 0.25rem;
  padding-top: 0.85rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question {
  color: var(--text-main);
}

/* Interactive Forms & Inputs */
.estimator-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
  color: var(--text-main);
  font-family: var(--font-body);
}

.form-control {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.925rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--text-main);
  box-shadow: 0 0 0 3px rgba(16, 42, 86, 0.08);
}

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

/* Breadcrumbs & Badges */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--text-secondary);
}

.breadcrumb a:hover {
  color: var(--text-main);
}

.breadcrumb span {
  color: var(--text-muted);
}

.geo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-main);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

/* Footer - Grounding Deep Navy Palette */
/* ==========================================================================
   High-Contrast & Accessible Footer Section
   ========================================================================== */
.footer {
  background-color: #102A56;
  color: #D9DEE7;
  padding: 4.5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand .logo-brand {
  display: inline-block;
  background: #FFFFFF;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.footer-brand .logo-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.footer-brand p {
  color: #D9DEE7;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  max-width: 330px;
  font-family: var(--font-body);
}

.footer-brand .geo-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: #D9DEE7;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  font-family: var(--font-heading);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: #C8D0DC;
  font-size: 0.925rem;
  font-family: var(--font-body);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #DFA500;
  text-decoration: underline;
}

.footer-contact p {
  color: #D9DEE7;
  font-size: 0.925rem;
  font-family: var(--font-body);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  line-height: 1.5;
}

.footer-contact svg {
  stroke: #D9DEE7;
  flex-shrink: 0;
  transition: stroke 0.2s ease;
}

.footer-contact p:hover svg {
  stroke: #DFA500;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #AEB8C6;
  font-size: 0.875rem;
  font-family: var(--font-body);
}

.footer-bottom a {
  color: #C8D0DC;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #DFA500;
  text-decoration: underline;
}

.footer-legal-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.78rem;
  color: #8E9BAE;
}

.footer-legal-bar a {
  color: #8E9BAE;
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-bar a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.legal-sep {
  color: #556375;
  font-size: 0.75rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-card {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 0 2rem;
  }

  .hero-title {
    font-size: 2.15rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

  .btn-hero {
    width: 100%;
    text-align: center;
  }

  .hero-cta-group {
    width: 100%;
  }

  .floating-badge-card {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    background: var(--bg-surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.75rem 2rem;
    gap: 1.15rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-dropdown);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }
  
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu .nav-item-dropdown {
    width: 100%;
  }

  .nav-menu .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    background: var(--bg-secondary);
    margin-top: 0.5rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
  }
  
  .grid-3, .grid-2, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .site-logo {
    width: 155px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Floating Action Triggers (Call & WhatsApp) */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 50px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.875rem;
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
}

.floating-btn-phone {
  background: linear-gradient(135deg, #102A56 0%, #1D4ED8 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.floating-btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: currentColor;
}

@media (max-width: 768px) {
  .floating-actions {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }
  
  .floating-btn span {
    display: none;
  }

  .floating-btn {
    padding: 14px;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    justify-content: center;
  }
}
