/* ==========================================================================
   BAP SIGNATURES - CORPORATE BUSINESS COMPONENTS
   Theme: High-Contrast Eye-Comfort Light Sections with Pure Black Header & Footer
   ========================================================================== */

/* --------------------------------------------------------------------------
   GLOBAL SVG & ICON CONTROL (STRICT FIX FOR OVERSIZED ICONS)
   -------------------------------------------------------------------------- */
svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   1. STICKY PURE BLACK NAVIGATION HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-header);
  border-bottom: 1px solid var(--border-dark-header);
  z-index: 100;
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(6, 7, 10, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

/* Brand Logo & High-Visibility Crest */
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-crest {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition-smooth);
  flex-shrink: 0;
}

.brand-crest img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-logo-link:hover .brand-crest {
  transform: scale(1.04);
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 100%;
}

.brand-name {
  font-family: var(--font-primary);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  line-height: 1.1;
  display: block;
}

.brand-tagline {
  font-size: 0.51rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-inverse-muted);
  white-space: nowrap;
  display: block;
  width: 100%;
  text-align: justify;
  text-align-last: justify;
  margin-top: 3px;
  line-height: 1.2;
}

/* Header Navigation Menu (White text on Black Header) */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.94rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-link svg.chevron {
  width: 12px;
  height: 12px;
  max-width: 12px;
  max-height: 12px;
  transition: transform var(--transition-fast);
  color: #94a3b8;
}

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

/* Dropdown Submenu Styling */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  background: #ffffff;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-smooth);
  pointer-events: none;
  z-index: 110;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
  pointer-events: auto;
}

.dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.dropdown-link:hover {
  background: #f8fafc;
}

.dropdown-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  border-radius: 8px;
  background: #f1f5f9;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  flex-shrink: 0;
  margin-top: 2px;
}

.dropdown-icon svg {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
}

.dropdown-content {
  display: flex;
  flex-direction: column;
}

.dropdown-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: #0f172a;
  line-height: 1.3;
}

.dropdown-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.nav-toggle-btn {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle-btn svg {
  width: 26px;
  height: 26px;
}

/* Mobile Slide Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: #090a0f;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 200;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-smooth);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
  overflow-y: auto;
  box-sizing: border-box;
}

.mobile-nav-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.drawer-close-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 6px;
}

.drawer-close-btn svg {
  width: 24px;
  height: 24px;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.mobile-nav-link {
  display: block;
  padding: 12px 14px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-submenu {
  padding-left: 12px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
  margin-bottom: 8px;
}

.mobile-submenu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 0.86rem;
  color: #cbd5e1;
  border-left: 2px solid rgba(255, 255, 255, 0.3);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  .nav-toggle-btn {
    display: flex;
  }
}

@media (max-width: 480px) {
  .nav-container {
    height: 72px;
  }
  .brand-logo-link {
    gap: 10px;
  }
  .brand-crest {
    width: 44px;
    height: 44px;
  }
  .brand-name {
    font-size: 1.15rem;
  }
  .brand-tagline {
    font-size: 0.44rem;
  }
  .hero-headline {
    font-size: 1.85rem;
    line-height: 1.2;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .portfolio-filter-tabs {
    gap: 6px;
  }
  .filter-tab {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
}

/* --------------------------------------------------------------------------
   2. HERO SECTION (CONTAINER-CONTAINED, 2-COLUMN SPLIT WITH HERO IMAGE)
   -------------------------------------------------------------------------- */
.hero-section {
  background: var(--bg-section-white);
  border-bottom: 1px solid var(--border-subtle);
  padding: 75px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid-2col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-content-col {
  width: 100%;
  box-sizing: border-box;
}

.hero-headline {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 20px;
  word-break: break-word;
  max-width: 100%;
}

.hero-description {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.72;
  margin-bottom: 32px;
  max-width: 600px;
}

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

.hero-actions .btn svg {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
}

/* Hero Image Card on Right */
.hero-image-col {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-image-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.hero-image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.hero-image-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(9, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.hero-image-floating-badge .badge-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: #ffffff;
}

.hero-image-floating-badge .badge-subtitle {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .hero-grid-2col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-image-card img {
    height: 320px;
  }
}

/* --------------------------------------------------------------------------
   3. CORPORATE EXPERTISE & STRATEGIC PILLARS (EYE-COMFORT LIGHT BG)
   -------------------------------------------------------------------------- */
.expertise-section {
  background: var(--bg-section-comfort);
  border-bottom: 1px solid var(--border-subtle);
}

.expertise-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: all var(--transition-smooth);
}

.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}

.expertise-icon-wrap {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: var(--radius-md);
  background: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.expertise-icon-wrap svg {
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
}

.expertise-title {
  font-family: var(--font-primary);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.35;
}

.expertise-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.expertise-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.expertise-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: #f1f5f9;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   4. CURATED PRESTIGE PROPERTIES (EXECUTIVE 2-LINE MANDATES STATEMENT)
   -------------------------------------------------------------------------- */
.properties-section {
  background: var(--bg-section-white);
  border-bottom: 1px solid var(--border-subtle);
  padding: 85px 0;
  text-align: center;
}

.properties-statement {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.12rem;
  line-height: 1.82;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   5. SPECIALIZED SERVICES SECTION (EYE-COMFORT LIGHT BG)
   -------------------------------------------------------------------------- */
.services-section {
  background: var(--bg-section-comfort);
  border-bottom: 1px solid var(--border-subtle);
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: all var(--transition-smooth);
}

.service-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 800;
  color: #e2e8f0;
  line-height: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: var(--radius-md);
  background: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
}

.service-title {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.68;
  margin-bottom: 20px;
}

.service-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  margin-top: auto;
  padding: 0;
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-secondary);
}

.service-feature-item svg {
  width: 15px;
  height: 15px;
  max-width: 15px;
  max-height: 15px;
  color: #0f172a;
  flex-shrink: 0;
  margin-top: 3px;
}

/* --------------------------------------------------------------------------
   6. ABOUT SECTION & CORPORATE HERITAGE (CLEAN WHITE BG)
   -------------------------------------------------------------------------- */
.about-section {
  background: var(--bg-section-white);
  border-bottom: 1px solid var(--border-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.about-image-stack {
  position: relative;
  width: 100%;
}

.about-main-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  display: block;
}

.about-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #0f172a;
  color: #ffffff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.25);
  box-sizing: border-box;
}

.floating-badge-title {
  font-weight: 700;
  font-size: 0.98rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.floating-badge-desc {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.5;
}

.about-content-block {
  width: 100%;
}

.about-content-block p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-highlights-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.highlight-box {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.highlight-box h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.highlight-box p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0 !important;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-main-img {
    height: 300px;
  }
}

/* --------------------------------------------------------------------------
   7. GLOBAL CLIENT DIASPORA & TRUSTED CLIENTS (EYE-COMFORT LIGHT BG)
   -------------------------------------------------------------------------- */
.global-clients-section {
  background: var(--bg-section-comfort);
  border-bottom: 1px solid var(--border-subtle);
}

.global-countries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 34px;
  width: 100%;
}

@media (max-width: 1024px) {
  .global-countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .global-countries-grid {
    grid-template-columns: 1fr;
  }
}

.country-badge-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-xs);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition-smooth);
}

.country-badge-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  background: #f8fafc;
}

.country-flag {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.country-name {
  font-family: var(--font-primary);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.global-trust-banner {
  background: #ffffff;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.global-trust-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.global-trust-text p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .global-trust-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}

/* --------------------------------------------------------------------------
   8. CONTACT & CONSULTATION DESK (CLEAN WHITE / LIGHT SECTION)
   -------------------------------------------------------------------------- */
.contact-section {
  background: var(--bg-section-white);
  border-bottom: 1px solid var(--border-subtle);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  align-items: start;
  width: 100%;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.contact-detail-card {
  padding: 20px;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--transition-fast);
}

.contact-detail-card:hover {
  border-color: var(--border-medium);
  background: #f1f5f9;
}

.contact-icon-box {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  border-radius: 8px;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-box svg {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
}

.contact-detail-content h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contact-detail-val {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

.contact-detail-val a:hover {
  text-decoration: underline;
}

/* Map Preview Card */
.map-preview-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #f8fafc;
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
}

.map-embed-frame {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-sm);
  border: none;
  display: block;
}

/* Contact Form Card on Light Background */
.contact-form-card {
  padding: 34px;
  background: #f8fafc;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  width: 100%;
  box-sizing: border-box;
}

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

.form-label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-label span.req {
  color: #e11d48;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.form-control::placeholder {
  color: #94a3b8;
}

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

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 22px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   9. PURE BLACK CORPORATE FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 65px 0 30px;
  color: #94a3b8;
  width: 100%;
  box-sizing: border-box;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
  gap: 36px;
  margin-bottom: 45px;
  width: 100%;
}

.footer-brand-info p {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 320px;
}

.footer-col-title {
  font-family: var(--font-primary);
  font-size: 0.96rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 6px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 2px;
  background: #ffffff;
}

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

.footer-links-list a {
  font-size: 0.86rem;
  color: #cbd5e1;
  transition: all var(--transition-fast);
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(3px);
  display: inline-block;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  max-width: 15px;
  max-height: 15px;
  color: #ffffff;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-social-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all var(--transition-fast);
}

.social-btn svg {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
}

.social-btn:hover {
  background: #ffffff;
  color: #0f172a;
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.82rem;
  color: #64748b;
}

.footer-bottom a:hover {
  color: #ffffff;
}

@media (max-width: 992px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   10. MODALS & TOASTS
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #ffffff;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(15px) scale(0.97);
  transition: all var(--transition-smooth);
  box-sizing: border-box;
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f1f5f9;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: #0f172a;
  color: #ffffff;
}

.toast-notification {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #0f172a;
  border: 1px solid #1e293b;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  z-index: 350;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--transition-smooth);
}

.toast-notification.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toast-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-icon svg {
  width: 12px;
  height: 12px;
  max-width: 12px;
  max-height: 12px;
}
