/* ============================================
   CENTRO DIAGNOSTICO CERIMELE - Main Stylesheet
   Mobile-first responsive design
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-primary: #1a2e5a;
  --color-primary-light: #2a4a7f;
  --color-secondary: #5bb8c4;
  --color-secondary-light: #7fd1db;
  --color-secondary-dark: #3a9dad;
  --color-accent: #2ea3b8;
  --color-text: #444444;
  --color-text-light: #666666;
  --color-heading: #1a2e5a;
  --color-bg: #ffffff;
  --color-bg-alt: #f4f8fb;
  --color-bg-dark: #0d1b2a;
  --color-bg-dark-lighter: #132d46;
  --color-border: #e0e6ed;
  --color-white: #ffffff;
  --color-success: #4caf7d;
  --color-warning: #f0ad4e;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 4px 24px rgba(26, 46, 90, 0.08);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50px;

  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;

  --container-max: 1200px;
  --header-height: 70px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: 2rem; margin-bottom: 1rem; }
h2 { font-size: 1.625rem; margin-bottom: 0.875rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p {
  margin-bottom: 1rem;
}

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

/* ---------- Utility Classes ---------- */
.text-center { text-align: center; }
.text-white { color: var(--color-white); }
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }

.bg-white { background-color: var(--color-bg); }
.bg-alt { background-color: var(--color-bg-alt); }
.bg-dark { background-color: var(--color-bg-dark); }

.section {
  padding: 60px 0;
}

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

.section-header h2 {
  font-size: 1.75rem;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
  border-radius: 2px;
}

.section-header p {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(91, 184, 196, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-secondary-dark), var(--color-primary-light));
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(91, 184, 196, 0.4);
}

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

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

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

.btn-outline-primary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  font-size: 1.25rem;
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.8125rem;
  padding: 6px 0;
  display: none;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: var(--color-white);
  opacity: 0.9;
}

.top-bar a:hover {
  opacity: 1;
  color: var(--color-secondary-light);
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item i {
  color: var(--color-secondary-light);
}

/* ---------- Header / Navigation ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--transition), box-shadow var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

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

.nav-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--color-bg-dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 1000;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-menu.open {
  display: flex;
  opacity: 1;
}

.nav-link {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  padding: 12px 20px;
  transition: color var(--transition);
  position: relative;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.header-phone {
  display: none;
}

.header-phone a {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.btn-prenota-header {
  display: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--color-white);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: var(--color-white);
}

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

.nav-dropdown-toggle {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  padding: 12px 20px;
  transition: color var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--color-secondary);
}

.nav-dropdown-toggle .ph {
  font-size: 0.75em;
  transition: transform var(--transition);
}

.nav-dropdown.open .nav-dropdown-toggle .ph {
  transform: rotate(180deg);
}

/* Mobile dropdown menu */
.nav-dropdown-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu .nav-link {
  font-size: 0.9375rem;
  padding: 8px 20px;
  opacity: 0.85;
}

.nav-dropdown-menu .nav-link:hover,
.nav-dropdown-menu .nav-link.active {
  opacity: 1;
  color: var(--color-secondary);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.85) 0%, rgba(26, 46, 90, 0.7) 50%, rgba(91, 184, 196, 0.3) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 120px 20px 60px;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(91, 184, 196, 0.15);
  border: 1px solid rgba(91, 184, 196, 0.3);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  color: var(--color-secondary-light);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero-brand {
  margin-bottom: 20px;
  text-align: left;
}

.hero-logo {
  max-width: 220px;
  height: auto;
  background: var(--color-white);
  padding: 14px 20px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  margin-bottom: 0;
}

.hero-brand-name {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-tagline {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 28px;
}

.hero-tagline span {
  background: linear-gradient(135deg, var(--color-secondary-light), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

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

.hero-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-secondary-light);
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Inner page hero (shorter) */
.hero-inner {
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.hero-inner .hero-content {
  padding: 120px 20px 60px;
  text-align: center;
}

.hero-inner h1 {
  color: var(--color-white);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-inner .hero-text {
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

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

.breadcrumb-sep {
  font-size: 0.75rem;
}

/* ---------- Service Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(91, 184, 196, 0.2);
}

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

.service-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(91, 184, 196, 0.1), rgba(26, 46, 90, 0.08));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--color-secondary);
  transition: all var(--transition);
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  color: var(--color-white);
}

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  margin-bottom: 16px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-secondary);
}

.service-card-link i {
  transition: transform var(--transition);
}

.service-card:hover .service-card-link i {
  transform: translateX(4px);
}

/* ---------- About Preview (Homepage) ---------- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  color: var(--color-white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--shadow-md);
}

.about-content h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.about-content .lead {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(91, 184, 196, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 1.1rem;
}

.about-feature h4 {
  font-size: 0.9375rem;
  margin-bottom: 2px;
}

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

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  padding: 48px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(91, 184, 196, 0.15);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: rgba(91, 184, 196, 0.1);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--color-white);
  font-size: 1.625rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

.cta-section {
  padding: 0 20px;
  margin: -30px auto 60px;
  max-width: var(--container-max);
}

/* ---------- Contact Info Bar ---------- */
.contact-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.contact-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.contact-bar-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, rgba(91, 184, 196, 0.1), rgba(26, 46, 90, 0.08));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-secondary);
}

.contact-bar-text h4 {
  font-size: 0.9375rem;
  margin-bottom: 2px;
}

.contact-bar-text p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.contact-bar-text a {
  color: var(--color-text);
}

.contact-bar-text a:hover {
  color: var(--color-secondary);
}

/* ---------- Map Section ---------- */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ---------- Team Section ---------- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.team-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-card-icon {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--color-bg-alt), rgba(91, 184, 196, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--color-secondary);
}

.team-card-body {
  padding: 24px;
}

.team-card-name {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.team-card-role {
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 12px;
  display: block;
}

.team-card-body p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

.team-card-specializations {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.team-tag {
  background: rgba(91, 184, 196, 0.1);
  color: var(--color-secondary-dark);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
}

/* ---------- Equipment Section ---------- */
.equipment-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.equipment-img {
  height: 250px;
  overflow: hidden;
}

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

.equipment-info {
  padding: 24px;
}

.equipment-info h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.equipment-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  color: var(--color-white);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.equipment-info p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
}

/* ---------- Exam List ---------- */
.exam-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.exam-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.exam-item:hover {
  border-color: rgba(91, 184, 196, 0.3);
  box-shadow: var(--shadow-sm);
}

.exam-item-icon {
  color: var(--color-secondary);
  font-size: 1rem;
  margin-top: 2px;
  min-width: 20px;
}

.exam-item h4 {
  font-size: 0.9375rem;
  margin-bottom: 2px;
}

.exam-item p {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ---------- Preparation Box ---------- */
.prep-box {
  background: linear-gradient(135deg, rgba(91, 184, 196, 0.06), rgba(26, 46, 90, 0.04));
  border-left: 4px solid var(--color-secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px;
  margin-bottom: 24px;
}

.prep-box h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prep-box ul {
  list-style: none;
}

.prep-box ul li {
  padding: 6px 0;
  font-size: 0.9375rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.prep-box ul li::before {
  content: '\f00c';
  font-family: 'Lucida Sans', sans-serif;
  color: var(--color-secondary);
  font-weight: 700;
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item.active {
  border-color: rgba(91, 184, 196, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-heading);
  gap: 12px;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

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

.faq-icon {
  font-size: 0.875rem;
  color: var(--color-secondary);
  transition: transform var(--transition);
  min-width: 20px;
  text-align: center;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ---------- Contact Form ---------- */
.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

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

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-heading);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(91, 184, 196, 0.15);
}

.form-control::placeholder {
  color: #aab3c0;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6.5 6.5-6.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

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

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-check input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--color-secondary);
  cursor: pointer;
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  cursor: pointer;
  line-height: 1.5;
}

.form-check label a {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* ---------- Hours Table ---------- */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--color-border);
}

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

.hours-table td {
  padding: 10px 12px;
  font-size: 0.9375rem;
}

.hours-table td:first-child {
  font-weight: 500;
  color: var(--color-heading);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--color-text-light);
}

.hours-table tr.today {
  background: rgba(91, 184, 196, 0.08);
  border-radius: var(--radius-sm);
}

.hours-table tr.today td {
  color: var(--color-secondary-dark);
  font-weight: 600;
}

.hours-closed {
  color: var(--color-text-light);
  opacity: 0.6;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

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

.footer-col h3 {
  color: var(--color-white);
  font-size: 1.0625rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-secondary);
}

.footer-logo {
  height: auto;
  max-height: 60px;
  width: auto;
  max-width: 220px;
  margin-bottom: 20px;
  background: var(--color-white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
}

.footer-col p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--color-secondary-light);
  padding-left: 4px;
}

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

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

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item a:hover {
  color: var(--color-secondary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal a::before {
  content: "|";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.footer-legal a:hover {
  color: var(--color-secondary-light);
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-content p {
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.cookie-content a {
  color: var(--color-secondary-light);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btns .btn {
  font-size: 0.8125rem;
  padding: 8px 20px;
}

/* ---------- Mobile Sticky Phone ---------- */
.mobile-phone-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  z-index: 999;
  padding: 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.mobile-phone-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 16px;
  text-align: center;
}

.mobile-phone-bar a:hover {
  background: var(--color-primary-light);
  color: var(--color-white);
}

/* ---------- Scroll Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--color-secondary);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

/* ---------- Info Boxes ---------- */
.info-box {
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.info-box-warning {
  background: rgba(240, 173, 78, 0.1);
  border-left: 4px solid var(--color-warning);
}

.info-box-info {
  background: rgba(91, 184, 196, 0.08);
  border-left: 4px solid var(--color-secondary);
}

.info-box h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.info-box p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* ---------- Page content layout ---------- */
.page-content {
  padding-bottom: 60px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.content-sidebar {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 24px;
}

.sidebar-widget {
  margin-bottom: 28px;
}

.sidebar-widget:last-child {
  margin-bottom: 0;
}

.sidebar-widget h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-border);
}

.sidebar-services {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-services a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all var(--transition);
  text-decoration: none;
}

.sidebar-services a:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.sidebar-services a i {
  color: var(--color-secondary);
  font-size: 1.125rem;
  transition: color var(--transition);
}

.sidebar-services a:hover i {
  color: var(--color-white);
}

/* Two columns for contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* ---------- Privacy / Legal pages ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.375rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content h3 {
  font-size: 1.125rem;
  margin-top: 24px;
}

.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  margin-bottom: 6px;
}

/* ---------- Contact Action Cards ---------- */
.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-border);
  background: var(--color-white);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

.contact-action-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-action-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--color-white);
}

.contact-action-icon-phone {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
}


.contact-action-card h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.contact-action-card .contact-action-subtitle {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.contact-action-card .contact-action-value {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 16px;
  word-break: break-all;
}

.contact-action-card .btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 280px;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-action-phone {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
}

.btn-action-phone:hover {
  box-shadow: 0 6px 25px rgba(26, 46, 90, 0.35);
  transform: translateY(-2px);
}


.contact-action-card:hover .btn-action {
  color: var(--color-white);
}

/* ---------- Image Slider ---------- */
.image-slider {
  position: relative;
  overflow: hidden;
}

.image-slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 16px;
}

.image-slider-track::-webkit-scrollbar {
  display: none;
}

.image-slider-slide {
  flex: 0 0 85%;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.image-slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-slider-slide .gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.slider-dot.active {
  background: var(--color-secondary);
  transform: scale(1.2);
}

/* ---------- Footer Credit ---------- */
.footer-credit {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  margin-top: 0;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer-credit a:hover {
  color: var(--color-secondary-light);
}

/* ============================================
   TABLET BREAKPOINT (768px+)
   ============================================ */
@media (min-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.375rem; }

  .section { padding: 80px 0; }

  .section-header h2 { font-size: 2rem; }

  .hero-brand-name { font-size: 2.75rem; }
  .hero-inner h1 { font-size: 2.75rem; }
  .hero-logo { max-width: 340px; }
  .hero-tagline { font-size: 1.1875rem; }
  .hero-text { font-size: 1.125rem; }

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

  .about-preview { grid-template-columns: 1fr 1fr; }
  .about-features { grid-template-columns: 1fr 1fr; }

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

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

  .image-slider-slide { flex: 0 0 45%; }

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

  .exam-list { grid-template-columns: 1fr; }

  .equipment-card { grid-template-columns: 1fr 1fr; }
  .equipment-img { height: 100%; }

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

  .cookie-content { flex-direction: row; align-items: center; }

  .map-container iframe { height: 400px; }

  .contact-grid { grid-template-columns: 1fr 1fr; }

  .contact-actions { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .mobile-phone-bar { display: none; }
  .back-to-top { bottom: 30px; }
}

/* ============================================
   DESKTOP BREAKPOINT (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  :root {
    --header-height: 80px;
  }

  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }

  .section { padding: 100px 0; }

  .section-header h2 { font-size: 2.25rem; }

  .container { padding: 0 40px; }

  /* Header */
  .hamburger { display: none; }

  .nav-menu {
    display: flex;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    align-items: center;
    gap: 0;
    opacity: 1;
  }

  .nav-link {
    font-size: 0.8125rem;
    padding: 8px 10px;
    position: relative;
    color: var(--color-text);
    white-space: nowrap;
  }

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

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--color-secondary);
    transform: scaleX(0);
    transition: transform var(--transition);
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    transform: scaleX(1);
  }

  .header-phone { display: flex; }
  .header-phone a { font-size: 0.8125rem; }
  .btn-prenota-header { display: inline-flex; font-size: 0.8125rem; }

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

  .nav-dropdown-toggle {
    font-size: 0.8125rem;
    padding: 8px 10px;
    color: var(--color-text);
    white-space: nowrap;
    position: relative;
  }

  .nav-dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--color-secondary);
    transform: scaleX(0);
    transition: transform var(--transition);
  }

  .nav-dropdown:hover .nav-dropdown-toggle::after,
  .nav-dropdown-toggle.active::after {
    transform: scaleX(1);
  }

  .nav-dropdown:hover .nav-dropdown-toggle {
    color: var(--color-secondary);
  }

  .nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    min-width: 200px;
    padding: 8px 0;
    z-index: 1002;
    border: 1px solid var(--color-border);
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: flex;
  }

  .nav-dropdown-menu .nav-link {
    font-size: 0.8125rem;
    padding: 10px 20px;
    color: var(--color-text);
    opacity: 1;
    white-space: nowrap;
  }

  .nav-dropdown-menu .nav-link::after {
    display: none;
  }

  .nav-dropdown-menu .nav-link:hover {
    background: var(--color-bg-alt);
    color: var(--color-secondary);
  }

  /* Hero */
  .hero-brand-name { font-size: 3.25rem; }
  .hero-inner h1 { font-size: 3.25rem; }
  .hero-content { padding: 0 40px; }
  .hero-logo { max-width: 380px; }
  .hero-tagline { font-size: 1.25rem; }
  .hero-text { font-size: 1.1875rem; }
  .hero-stats { gap: 40px; }

  /* Services */
  .services-grid { grid-template-columns: repeat(3, 1fr); }

  /* Contact bar */
  .contact-bar { grid-template-columns: repeat(4, 1fr); }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }

  .image-slider-slide { flex: 0 0 30%; }

  /* Team */
  .team-grid { grid-template-columns: repeat(3, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }

  .footer-bottom {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    text-align: center;
    flex-wrap: wrap;
    padding-bottom: 20px;
  }

  /* Content with sidebar */
  .content-grid { grid-template-columns: 1fr 320px; }
}

/* ============================================
   LARGE DESKTOP (1280px+)
   ============================================ */
@media (min-width: 1280px) {
  .hero-brand-name { font-size: 3.5rem; }
  .hero-inner h1 { font-size: 3.5rem; }
  .hero-tagline { font-size: 1.3125rem; }

  .nav-wrapper { padding: 0 40px; }

  .nav-link {
    font-size: 0.875rem;
    padding: 8px 12px;
  }

  .nav-link::after {
    left: 12px;
    right: 12px;
  }

  .nav-dropdown-toggle {
    font-size: 0.875rem;
    padding: 8px 12px;
  }

  .nav-dropdown-toggle::after {
    left: 12px;
    right: 12px;
  }
}
