/* ==========================================================================
   Norton Trade - Main Stylesheet (style.css)
   Exact 1:1 Implementation of Brand PDF Design
   Responsive for Desktop, Small Laptops, Tablets, and Mobile (iOS / Android)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Merriweather:ital,wght@0,300;0,400;0,700;1,300&display=swap');

/* Base Reset & Variables */
:root {
  --primary-color: #1D4B7F;
  --primary-hover: #153961;
  --primary-active: #0E2642;
  --primary-light: #EBF2F9;
  --primary-glow: rgba(29, 75, 127, 0.12);

  --secondary-color: #4078AC;
  --secondary-hover: #32628E;

  --accent-color: #0563C1;

  --bg-body: #FFFFFF;
  --bg-section: #FFFFFF;
  --bg-section-light: #F4F7FB;
  --bg-section-dark: #1D4B7F;
  --bg-card: #F4F7FB;
  --bg-card-active: #1D4B7F;
  --bg-input: #FFFFFF;

  --text-primary: #1D4B7F;
  --text-heading: #1D4B7F;
  --text-body: #5B6472;
  --text-muted: #798697;
  --text-light: #FFFFFF;
  --text-kicker: #4078AC;

  --border-color: #E2E8F0;
  --border-subtle: #AFC6DE;
  --border-divider: #E3E3DE;
  --border-card: #E3E8EF;

  --font-heading: 'Cambria', 'Merriweather', 'Georgia', serif;
  --font-body: 'Inter', 'Calibri', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 50px;

  --shadow-sm: 0 2px 8px rgba(29, 75, 127, 0.04);
  --shadow-md: 0 6px 20px rgba(29, 75, 127, 0.07);
  --shadow-lg: 0 12px 32px rgba(29, 75, 127, 0.11);
  --shadow-card-hover: 0 16px 36px rgba(29, 75, 127, 0.16);
  --shadow-header: 0 2px 12px rgba(29, 75, 127, 0.05);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Elements */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background-color: var(--bg-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0;
}

p {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

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

a:hover {
  color: var(--secondary-color);
}

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

/* Kicker (Subheading) */
.section-kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--text-kicker);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  color: var(--text-heading);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 820px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Section Spacing */
.site-section,
.contact-section,
.hero-section,
.service-detail-section {
  scroll-margin-top: 80px;
}

.site-section {
  padding: 85px 0;
  position: relative;
}

.site-section-light {
  background-color: var(--bg-section-light);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-header);
  transition: all var(--transition-normal);
}

.navbar {
  padding: 14px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.navbar-brand img {
  height: 68px;
  max-height: 72px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition-fast);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-heading) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color) !important;
  background-color: rgba(29, 75, 127, 0.04);
}

/* Language Dropdown */
.lang-dropdown .dropdown-toggle {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-heading);
  background: var(--bg-section-light);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.lang-dropdown .dropdown-toggle:hover {
  background: #E8EFF7;
  border-color: var(--primary-color);
}

.lang-dropdown .dropdown-toggle::after {
  display: none;
}

.lang-dropdown .dropdown-menu {
  min-width: 100px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  padding: 4px;
}

.lang-dropdown .dropdown-item {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
}

.lang-dropdown .dropdown-item.active,
.lang-dropdown .dropdown-item:hover {
  background-color: var(--primary-light);
  color: var(--primary-color);
}

@media (max-width: 991.98px) {
  .lang-dropdown .dropdown-menu {
    position: static !important;
    float: none;
    box-shadow: none;
    border: none;
    background-color: var(--bg-section-light);
    margin-top: 8px;
    margin-bottom: 12px;
  }
}

/* Primary CTA Button */
.btn-primary-custom {
  background-color: var(--primary-color);
  color: #FFFFFF !important;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--primary-color);
  transition: all var(--transition-fast);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary-custom:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: 0 4px 14px rgba(29, 75, 127, 0.25);
  transform: translateY(-1px);
}

.btn-primary-custom:active {
  background-color: var(--primary-active);
  transform: translateY(0);
}

/* ==========================================================================
   Hero Section (Page 1)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 110px 0 120px;
  background-color: #FFFFFF;
  overflow: hidden;
  text-align: center;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-divider {
  width: 140px;
  height: 2px;
  background-color: var(--border-subtle);
  margin: 0 auto 28px;
  border-radius: 2px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
}

/* ==========================================================================
   Haqqımızda Section (Page 2)
   ========================================================================== */
.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
}

.about-features-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-pill-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--bg-card);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(227, 232, 239, 0.7);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.feature-pill-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background-color: #FFFFFF;
  border-color: var(--border-subtle);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(29, 75, 127, 0.2);
}

.feature-icon-wrapper img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.feature-content h4 {
  font-size: 1.15rem;
  color: var(--primary-color);
  margin-bottom: 6px;
  font-weight: 700;
}

.feature-content p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 0;
  line-height: 1.55;
}

/* ==========================================================================
   Proses Necə İşləyir? Section (Pages 3-6 / DocShipper Style)
   ========================================================================== */
.process-accordion-container {
  display: flex;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: var(--shadow-card);
  min-height: 380px;
  position: relative;
}

.process-step-item {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: flex 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
  border-right: 1px solid var(--border-subtle);
  overflow: hidden;
}

.process-step-item:last-child {
  border-right: none;
}

/* Collapsed Step */
.process-step-item:not(.active) {
  flex: 0 0 80px;
  background-color: #F8FAFC;
  cursor: pointer;
  align-items: center;
  padding: 24px 8px;
}

.process-step-item:not(.active):hover {
  background-color: #EEF4FA;
}

.process-step-item:not(.active) .step-badge-collapsed {
  width: 40px;
  height: 40px;
  background-color: transparent;
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 30px;
}

.process-step-item:not(.active) .step-vertical-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.process-step-item:not(.active) .step-expanded-content {
  display: none;
  opacity: 0;
}

/* Active Step */
.process-step-item.active {
  flex: 1;
  background-color: #FFFFFF;
  padding: 45px 50px;
  cursor: default;
}

.process-step-item.active .step-badge-collapsed,
.process-step-item.active .step-vertical-title {
  display: none;
}

.process-step-item.active .step-expanded-content {
  display: block;
  opacity: 1;
  animation: fadeIn 0.4s ease forwards;
}

.step-active-number {
  width: 52px;
  height: 52px;
  background-color: var(--primary-color);
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.step-active-title {
  font-size: 1.85rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
}

.step-active-description {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.85;
  max-width: 720px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Missiyamız və Dəyərlərimiz (Page 7-8)
   ========================================================================== */
.value-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
}

.value-card .value-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all var(--transition-normal);
}

.value-card .value-icon-circle img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.value-card h3 {
  font-size: 1.35rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  transition: color var(--transition-normal);
}

.value-card p {
  font-size: 0.98rem;
  color: var(--text-body);
  margin-bottom: 0;
  line-height: 1.7;
  transition: color var(--transition-normal);
}

/* Active / Hovered State (Variant B) */
.value-card.active,
.value-card:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.value-card.active .value-icon-circle,
.value-card:hover .value-icon-circle {
  background-color: rgba(255, 255, 255, 0.2);
}

.value-card.active h3,
.value-card:hover h3 {
  color: #FFFFFF;
}

.value-card.active p,
.value-card:hover p {
  color: rgba(255, 255, 255, 0.92);
}

/* ==========================================================================
   Xidmətlərimiz Overview (Page 9)
   ========================================================================== */
.services-timeline {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.services-timeline::before {
  content: '';
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 23px;
  width: 2px;
  border-left: 2px dashed var(--border-subtle);
  z-index: 1;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.timeline-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(29, 75, 127, 0.2);
}

.timeline-content h4 {
  font-size: 1.15rem;
  color: var(--primary-color);
  margin-bottom: 6px;
  font-weight: 700;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 0;
  line-height: 1.6;
}

.services-overview-card {
  padding-left: 20px;
}

/* ==========================================================================
   Service Details (Pages 10, 11, 12, 13)
   ========================================================================== */
.service-detail-section {
  padding: 70px 0;
  border-top: 1px solid #EEF2F6;
}

.service-lead-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-body);
}

.service-checklist-box {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
}

.service-checklist-box h4 {
  font-size: 1.15rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.checklist-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checklist-items li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.55;
}

.checklist-items li .check-icon {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Quality Mini-Process (Page 11) */
.quality-steps-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quality-step-row {
  display: flex;
  align-items: center;
  gap: 18px;
  background-color: var(--bg-card);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.quality-step-row:hover {
  background-color: #FFFFFF;
  border-color: var(--border-subtle);
  transform: translateX(4px);
}

.quality-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quality-step-info h5 {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 4px;
  font-weight: 700;
}

.quality-step-info p {
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Logistics Methods (Page 12) */
.logistics-methods-box {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
}

.logistics-methods-box h4 {
  font-size: 1.15rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.transport-items-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.transport-item-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.transport-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.transport-icon-circle img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.transport-info h5 {
  font-size: 0.98rem;
  color: var(--primary-color);
  margin-bottom: 2px;
  font-weight: 700;
}

.transport-info p {
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 0;
}

/* ==========================================================================
   Niyə Norton Trade? & Kimlər Üçün Uyğundur? (Pages 14-17)
   ========================================================================== */
.interactive-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.interactive-card .card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition-normal);
}

.interactive-card .card-icon-wrap img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Specific light background circle for audience section icons */
.audience-card .card-icon-wrap {
  background-color: #E2EBF5;
}

.interactive-card h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  transition: color var(--transition-normal);
}

.interactive-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 0;
  line-height: 1.65;
  transition: color var(--transition-normal);
}

/* Dynamic Active & Hover State (Variant B) */
.interactive-card.active,
.interactive-card:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.interactive-card.active .card-icon-wrap,
.interactive-card:hover .card-icon-wrap {
  background-color: rgba(255, 255, 255, 0.2);
}

.interactive-card.active h3,
.interactive-card:hover h3 {
  color: #FFFFFF;
}

.interactive-card.active p,
.interactive-card:hover p {
  color: rgba(255, 255, 255, 0.92);
}

/* Invert dark icon colors when card is active */
.audience-card.active .card-icon-wrap img,
.audience-card:hover .card-icon-wrap img {
  filter: brightness(0) invert(1);
}

/* ==========================================================================
   Əlaqə / Sorğu Forması Section (Page 18)
   ========================================================================== */
.contact-section {
  background-color: var(--bg-section-dark);
  color: #FFFFFF;
  padding: 95px 0 70px;
  position: relative;
}

.contact-form-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.contact-form-card h3 {
  font-size: 1.45rem;
  color: var(--primary-color);
  margin-bottom: 24px;
  font-weight: 700;
}

.form-control-custom {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #2D3748;
  background-color: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  transition: all var(--transition-fast);
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(29, 75, 127, 0.15);
}

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

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

.btn-form-submit {
  width: 100%;
  background-color: var(--primary-color);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-form-submit:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.contact-info-block {
  padding-left: 20px;
}

.contact-info-title {
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 22px;
}

.contact-info-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
  margin-bottom: 35px;
}

.contact-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-details-list li {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.contact-details-list a {
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-details-list a:hover {
  color: #AFC6DE;
}

/* Footer Minimal (Variant A) */
.site-footer-minimal {
  background-color: var(--bg-section-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-nav-link {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.footer-nav-link:hover {
  color: #FFFFFF !important;
}

/* ==========================================================================
   Multi-Page Inner Header / Breadcrumb / Blog / Services Styles
   ========================================================================== */
.page-banner {
  background: linear-gradient(135deg, #1D4B7F 0%, #153961 100%);
  color: #FFFFFF;
  padding: 70px 0 60px;
  position: relative;
  text-align: center;
}

.page-banner h1 {
  color: #FFFFFF;
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.breadcrumb-custom {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-custom a {
  color: #AFC6DE;
}

.breadcrumb-custom a:hover {
  color: #FFFFFF;
}

/* Sidebar for Service Single */
.service-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

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

.sidebar-nav-link {
  display: block;
  padding: 12px 18px;
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  color: var(--primary-color);
  font-weight: 600;
  border: 1px solid #E2E8F0;
  transition: all var(--transition-fast);
}

.sidebar-nav-link:hover,
.sidebar-nav-link.active {
  background: var(--primary-color);
  color: #FFFFFF;
  border-color: var(--primary-color);
}

.sidebar-contact-card {
  background: var(--primary-color);
  color: #FFFFFF;
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
}

.sidebar-contact-card h4 {
  color: #FFFFFF;
  margin-bottom: 10px;
}

.sidebar-contact-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

/* Blog Cards */
.blog-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-subtle);
}

.blog-card-thumb {
  height: 220px;
  background-color: #E8EFF7;
  position: relative;
  overflow: hidden;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  font-size: 0.85rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
}

.blog-card-title {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  line-height: 1.35;
}

.blog-card-excerpt {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card-link {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Pagination */
.pagination-custom {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.page-num-link {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: 1px solid var(--border-card);
  transition: all var(--transition-fast);
}

.page-num-link:hover,
.page-num-link.active {
  background: var(--primary-color);
  color: #FFFFFF;
  border-color: var(--primary-color);
}

/* 404 Error Page */
.error-page-section {
  padding: 120px 0;
  text-align: center;
}

.error-badge-large {
  font-size: clamp(5rem, 10vw, 8rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

/* Responsive Rules for Small Laptops, Tablets, and Mobile */
@media (max-width: 1199.98px) {
  .site-section {
    padding: 70px 0;
  }
  .contact-info-block {
    padding-left: 0;
    margin-top: 40px;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #FFFFFF;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    margin-top: 14px;
  }
  .nav-link {
    padding: 10px 14px !important;
  }
  .services-overview-card {
    padding-left: 0;
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .navbar-brand img {
    height: 54px;
    max-height: 58px;
  }

  .site-section {
    padding: 55px 0;
  }

  /* Process Stepper Mobile Accordion Mode */
  .process-accordion-container {
    flex-direction: column;
    min-height: auto;
  }

  .process-step-item {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .process-step-item:last-child {
    border-bottom: none;
  }

  .process-step-item:not(.active) {
    flex: none;
    padding: 16px 20px;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .process-step-item:not(.active) .step-badge-collapsed {
    margin-bottom: 0;
  }

  .process-step-item:not(.active) .step-vertical-title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.05rem;
  }

  .process-step-item.active {
    padding: 28px 22px;
  }

  .contact-form-card {
    padding: 28px 20px;
  }
}
