/* =============================================
   DEA MEDIC — 2026 Modern Medical Design System
   ============================================= */

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

/* ── CSS Custom Properties ── */
:root {
  /* Colors */
  --primary: #0a9e7f;
  --primary-dark: #077a62;
  --primary-light: #00d4b1;
  --accent: #00e5c3;
  --navy: #0d1b2a;
  --navy-mid: #112233;
  --navy-light: #1a2f44;
  --surface: #ffffff;
  --surface-alt: #f4f8f7;
  --text-primary: #0d1b2a;
  --text-secondary: #4a6274;
  --text-muted: #7a9aaa;
  --border: rgba(10, 158, 127, 0.18);
  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.15);
  --shadow-sm: 0 2px 12px rgba(10, 158, 127, 0.08);
  --shadow-md: 0 8px 32px rgba(10, 158, 127, 0.12);
  --shadow-lg: 0 20px 60px rgba(13, 27, 42, 0.2);

  /* Typography */
  --font-body: 'Inter', sans-serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;

  /* Spacing */
  --section-gap: 100px;
  --card-radius: 16px;
  --btn-radius: 10px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── Scroll-Reveal Keyframes ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.15);
  }
}

@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }

  100% {
    background-position: 400px 0;
  }
}

/* ── Section Title Helper ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
}

.section-divider {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  margin: 14px auto 0;
}

/* ============================================
   HEADER
   ============================================ */

/* ── Pre-header top bar ── */
header .pre-header {
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header .pre-header ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  padding: 8px 40px;
  flex-wrap: wrap;
}

header .pre-header ul li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  padding: 4px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: color var(--transition);
}

header .pre-header ul li:last-child {
  border-right: none;
}

header .pre-header ul li:first-child {
  margin-right: auto;
  border-right: none;
  padding-left: 0;
}

header .pre-header ul li i {
  font-size: 13px;
  color: var(--accent);
}

header .pre-header ul li a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

header .pre-header ul li a:hover,
header .pre-header ul li:hover {
  color: var(--accent);
}

header .pre-header ul li a:hover {
  color: var(--accent);
}

header .pre-header ul li img {
  max-width: 150px;
}

@media (max-width: 992px) {
  header .pre-header ul {
    justify-content: center;
    padding: 8px 16px;
    gap: 0;
  }

  header .pre-header ul li:first-child {
    margin-right: 0;
    width: 100%;
    justify-content: center;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
    margin-bottom: 6px;
  }
}

@media (max-width: 576px) {
  header .pre-header ul {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  header .pre-header ul li {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    justify-content: center;
    padding: 6px 0;
  }

  header .pre-header ul li:last-child {
    border-bottom: none;
  }
}

/* ── Main navbar ── */
header .main-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  z-index: 10;
}

header .main-header nav {
  display: flex;
  align-items: center;
  padding: 0 40px;
  min-height: 62px;
}

header .main-header nav.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(7, 122, 98, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  transition: background var(--transition), box-shadow var(--transition);
}

header .main-header nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin-left: auto;
}

header .main-header nav ul li a {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

header .main-header nav ul li a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

header .main-header nav ul #eng img {
  width: 24px;
  height: 16px;
  border-radius: 3px;
  object-fit: cover;
  margin-top: 2px;
}

/* Hamburger */
header .main-header nav .hamburger-menu-button {
  display: none;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  margin-left: auto;
  transition: background var(--transition), border-color var(--transition);
}

header .main-header nav .hamburger-menu-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

header .main-header nav .hamburger-menu-button .fa-times {
  display: none;
}

header .main-header nav .hamburger-menu-button.opened .fa-times {
  display: block;
}

header .main-header nav .hamburger-menu-button.opened .fa-bars {
  display: none;
}

@media (max-width: 992px) {
  header .main-header nav .hamburger-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  header .main-header nav ul {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(7, 122, 98, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
    z-index: 999;
  }

  header .main-header nav ul li {
    width: 100%;
  }

  header .main-header nav ul li a {
    display: block;
    padding: 14px 30px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
  }

  header .main-header nav ul #eng {
    left: 0;
  }
}

@media (max-width: 992px) {
  header .main-header nav {
    padding: 0 20px;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

@keyframes hero-orb-drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(40px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-25px, 25px) scale(0.95);
  }
}

@keyframes hero-orb-drift2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  40% {
    transform: translate(-45px, 35px) scale(1.12);
  }

  75% {
    transform: translate(20px, -30px) scale(0.94);
  }
}

@keyframes hero-card-shine {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes hero-badge-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 177, 0.3);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(0, 212, 177, 0);
  }
}

/* ── Wrapper ── */
section.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-color: #0d1b2a;
}

/* Dark overlay for text readability */
section.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgb(0 0 0 / 41%) 0%,
      rgb(3 23 18 / 42%) 50%,
      rgb(6 51 39 / 78%) 100%);
  z-index: 1;
}

/* Top accent line */
section.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-dark), var(--accent), var(--primary-dark));
  z-index: 3;
  pointer-events: none;
}

/* ── Background orbs ── */
section.hero .hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

section.hero .hero-bg-orb--1 {
  width: 500px;
  height: 500px;
  top: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(0, 212, 177, 0.2) 0%, transparent 70%);
  animation: hero-orb-drift 13s ease-in-out infinite;
}

section.hero .hero-bg-orb--2 {
  width: 420px;
  height: 420px;
  bottom: -100px;
  right: -90px;
  background: radial-gradient(circle, rgba(10, 158, 127, 0.16) 0%, transparent 70%);
  animation: hero-orb-drift2 16s ease-in-out infinite;
}

/* ── Hero headline area ── */
section.hero .hero-headline {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 72px 40px 48px;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  animation: fadeUp 0.7s var(--ease) both;
}

/* pill badge */
section.hero .hero-headline .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 177, 0.12);
  border: 1px solid rgba(0, 212, 177, 0.3);
  border-radius: 50px;
  padding: 9px 22px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  animation: hero-badge-pulse 3s ease-in-out infinite;
}

section.hero .hero-headline .hero-badge i {
  font-size: 13px;
}

/* main title */
section.hero .hero-headline .hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 62px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

section.hero .hero-headline .hero-title span {
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* subtitle */
section.hero .hero-headline .hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 400;
}

/* CTA buttons row */
section.hero .hero-headline .hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

section.hero .hero-headline .hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 24px rgba(0, 212, 177, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}

section.hero .hero-headline .hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 212, 177, 0.5);
}

section.hero .hero-headline .hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  letter-spacing: 0.5px;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

section.hero .hero-headline .hero-btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 212, 177, 0.06);
}

/* ── Info cards row ── */
section.hero .hero-cards {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1100px;
  padding: 0 40px 60px;
  margin: 0 auto;
  animation: fadeUp 0.9s var(--ease) 0.15s both;
}

/* ── Glassmorphism cards ── */
section.hero .hero-cards .hero-item,
section.hero .hero-cards .hero-item2,
section.hero .hero-cards .hero-item3 {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  min-width: 0;
  position: relative;
  overflow: hidden;
}

/* shimmer top line */
section.hero .hero-cards .hero-item::before,
section.hero .hero-cards .hero-item2::before,
section.hero .hero-cards .hero-item3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  background-size: 200% auto;
  animation: hero-card-shine 4s linear infinite;
}

section.hero .hero-cards .hero-item:hover,
section.hero .hero-cards .hero-item2:hover,
section.hero .hero-cards .hero-item3:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(0, 212, 177, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Icon */
section.hero .hero-cards .hero-item i,
section.hero .hero-cards .hero-item2 i,
section.hero .hero-cards .hero-item3 i {
  font-size: 38px;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(0, 212, 177, 0.4));
}

/* Card heading */
section.hero .hero-cards .hero-item h3,
section.hero .hero-cards .hero-item2 h3,
section.hero .hero-cards .hero-item3 h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Card text */
section.hero .hero-cards .hero-item p,
section.hero .hero-cards .hero-item2 p,
section.hero .hero-cards .hero-item3 p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

section.hero .hero-cards .hero-item strong,
section.hero .hero-cards .hero-item2 strong,
section.hero .hero-cards .hero-item3 strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* Divider span */
section.hero .hero-cards .hero-item span,
section.hero .hero-cards .hero-item2 span,
section.hero .hero-cards .hero-item3 span {
  display: block;
  width: 36px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 12px auto;
  border-radius: 2px;
}

/* ── Responsive ── */
@media (max-width: 992px) {
  section.hero .hero-cards {
    flex-direction: column;
    align-items: center;
    padding: 0 20px 50px;
    gap: 16px;
  }

  section.hero .hero-cards .hero-item,
  section.hero .hero-cards .hero-item2,
  section.hero .hero-cards .hero-item3 {
    width: 100%;
    max-width: 500px;
    padding: 30px 24px;
  }

  section.hero .hero-headline {
    padding: 56px 24px 36px;
  }
}

@media (max-width: 576px) {
  section.hero .hero-headline {
    padding: 48px 16px 28px;
  }

  section.hero .hero-cards {
    padding: 0 14px 40px;
  }

  section.hero .hero-headline .hero-btn-primary,
  section.hero .hero-headline .hero-btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
section.about {
  padding: var(--section-gap) 0 60px;
}

/* ── Logo pop-up on scroll ── */
@keyframes logo-pop-in {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(20px);
  }

  60% {
    opacity: 1;
    transform: scale(1.12) translateY(-4px);
  }

  80% {
    transform: scale(0.96) translateY(2px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.logo-pop {
  opacity: 0;
  transform: scale(0.5) translateY(20px);
  transition: none;
}

.logo-pop.visible {
  animation: logo-pop-in 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

section.about .about-title {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeUp 0.6s var(--ease) both;
}

section.about .about-title img {
  max-width: 70px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

section.about .about-title h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--navy);
}

section.about .about-title span {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  margin: 14px auto 0;
}

section.about .container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

section.about .container .left-img {
  flex: 1;
  min-width: 0;
}

section.about .container .left-img img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

section.about .container .right-text {
  flex: 1;
  min-width: 0;
}

section.about .container .right-text h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 20px;
}

section.about .container .right-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

@media (max-width: 992px) {
  section.about .container {
    flex-direction: column;
    gap: 36px;
    padding: 0 24px;
    text-align: center;
  }

  section.about .container .left-img img {
    max-width: 100%;
  }
}

/* Services title within about */
section.about .services-title {
  text-align: center;
  padding-top: 80px;
  margin-bottom: 50px;
}

section.about .services-title img {
  max-width: 60px;
  margin: 0 auto 14px;
  opacity: 1;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

section.about .services-title h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--navy);
}

section.about .services-title span {
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  margin: 12px auto 0;
}

/* Product/Services cards grid */
section.about .about-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 30px;
}

section.about .about-info .about-clinic1 {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  width: 100%;
  max-width: 340px;
  height: 300px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

section.about .about-info .about-clinic1:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

section.about .about-info .about-clinic1.product-clinic1 {
  background-image: url(../images/laser.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

section.about .about-info .about-clinic1.product-clinic2 {
  background-image: url(../images/shockwave.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

section.about .about-info .about-clinic1.product-clinic3 {
  background-image: url(../images/trakcija.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

section.about .about-info .about-clinic1.product-clinic4 {
  background-image: url(../images/kineziotejping.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

section.about .about-info .about-clinic1.product-clinic5 {
  background-image: url(../images/manuelnetehnike.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

section.about .about-info .about-clinic1.product-clinic6 {
  background-image: url(../images/kineziterapija1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Image overlay gradient (always shown at bottom) */
section.about .about-info .about-clinic1::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 40%,
      rgba(13, 27, 42, 0.85) 100%);
  transition: opacity var(--transition);
}

section.about .about-info .product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px 18px 18px;
  background: transparent;
  border: none;
  text-align: left;
}

section.about .about-info .product-info h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

section.about .about-info .overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(10, 158, 127, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: background var(--transition), opacity var(--transition);
}

section.about .about-info .about-clinic1:hover .overlay {
  opacity: 1;
  background: rgba(10, 158, 127, 0.55);
}

section.about .about-info .overlay a {
  display: inline-block;
  background: #fff;
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: var(--btn-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

section.about .about-info .overlay a:hover {
  background: var(--accent);
  color: var(--navy);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  section.about .about-info {
    padding: 0 16px;
    gap: 16px;
  }

  section.about .about-info .about-clinic1 {
    max-width: 100%;
    height: 240px;
  }
}

/* "See all services" button */
section.about .about-more {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 20px;
}

section.about .about-more a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--btn-radius);
  padding: 14px 34px;
  box-shadow: 0 4px 20px rgba(10, 158, 127, 0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}

section.about .about-more a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(10, 158, 127, 0.45);
}

section.about .about-more i {
  font-size: 13px;
  transition: transform var(--transition);
}

section.about .about-more a:hover i {
  transform: translateX(4px);
}

/* O-nama page specific */
section.about .about-nama {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1140px;
  margin: 50px auto 0;
  padding: 50px 40px;
  background: var(--surface-alt);
  border-radius: 20px;
}

section.about .about-nama .about-text {
  flex: 1;
}

section.about .about-nama .about-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 16px;
}

section.about .about-nama .about-img {
  flex: 1;
}

section.about .about-nama .about-img img {
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  section.about .about-nama {
    flex-direction: column;
    padding: 36px 24px;
    gap: 30px;
  }

  section.about .about-nama .about-text p {
    text-align: center;
  }
}

/* Gallery */
section.about .gallery {
  max-width: 1140px;
  margin: 50px auto 0;
  padding: 0 40px;
}

section.about .gallery .gallery-img {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

section.about .gallery .gallery-img img {
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform var(--transition), box-shadow var(--transition);
}

section.about .gallery .gallery-img img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  section.about .gallery {
    padding: 0 16px;
  }

  section.about .gallery .gallery-img {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  section.about .gallery .gallery-img img {
    height: 220px;
  }
}

/* ============================================
   MAP SECTION
   ============================================ */
section.map {
  margin-top: var(--section-gap);
  background: var(--surface-alt);
  padding: 60px 0 80px;
}

section.map .map-title {
  text-align: center;
  margin-bottom: 50px;
}

section.map .map-title img {
  max-width: 60px;
  margin: 0 auto 14px;
  opacity: 1;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

section.map .map-title h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--navy);
}

section.map .map-title span {
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  margin: 12px auto 0;
}

section.map .bus-line {
  text-align: center;
  margin-bottom: 40px;
}

section.map .bus-line h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

section.map .bus-line h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

section.map .bus-line p {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 158, 127, 0.08);
  padding: 8px 22px;
  border-radius: 50px;
  border: 1px solid var(--border);
}

section.map .bus-line i {
  color: var(--primary);
}

section.map .location {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

section.map .location iframe {
  width: 100%;
  height: 420px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-lg);
  border: none;
  display: block;
}

@media (max-width: 768px) {
  section.map .location {
    padding: 0 16px;
  }

  section.map .location iframe {
    height: 300px;
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
section.contact {
  padding: var(--section-gap) 0;
}

section.contact .contact-title {
  text-align: center;
  margin-bottom: 60px;
}

section.contact .contact-title h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--navy);
}

section.contact .contact-title span {
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  margin: 12px auto 0;
}

section.contact .container {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

section.contact .container .contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 36px 28px;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

section.contact .container .contact-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

section.contact .container .contact-item .contact-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(10, 158, 127, 0.1), rgba(0, 212, 177, 0.08));
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 18px;
}

section.contact .container .contact-item h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--navy);
  margin-bottom: 12px;
}

section.contact .container .contact-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-top: 4px;
}

section.contact .container .contact-item a {
  color: var(--primary);
  font-weight: 500;
  padding-left: 4px;
  transition: color var(--transition);
}

section.contact .container .contact-item a:hover {
  color: var(--primary-dark);
}

section.contact .container .contact-item span {
  display: block;
  width: 30px;
  height: 1.5px;
  background: rgba(10, 158, 127, 0.3);
  margin: 8px auto;
  border-radius: 2px;
}

@media (max-width: 768px) {
  section.contact .container {
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
  }

  section.contact .container .contact-item {
    max-width: 100%;
    width: 100%;
  }
}

section.contact .contact-info {
  text-align: center;
  margin-top: 70px;
}

section.contact .contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy);
}

section.contact .contact-info span {
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  margin: 12px auto 0;
}

section.contact .contact-text {
  margin-top: 30px;
  text-align: center;
}

section.contact .contact-text p {
  max-width: 580px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

section.contact .contact-text span {
  font-weight: 600;
  color: var(--text-primary);
}

section.contact .contact-text #dea {
  color: var(--primary);
  font-weight: 700;
}

section.contact .contact-location {
  max-width: 1100px;
  margin: 50px auto 0;
  padding: 0 40px;
}

section.contact .contact-location iframe {
  width: 100%;
  height: 400px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-lg);
  border: none;
  display: block;
}

@media (max-width: 768px) {
  section.contact .contact-location {
    padding: 0 16px;
  }

  section.contact .contact-location iframe {
    height: 280px;
  }
}

/* ============================================
   SERVICES PAGE (usluge.html)
   ============================================ */
section.services {
  padding: var(--section-gap) 0 80px;
}

section.services .services-title {
  text-align: center;
  margin-bottom: 60px;
}

section.services .services-title h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}

section.services .services-title span {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  margin: 14px auto 0;
}

/* Services item grid */
section.services .services-item {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 30px;
}

section.services .services-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 10px;
}

section.services .services-item li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
}

section.services .services-item li:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

section.services .services-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 13.5px;
  transition: color var(--transition);
}

section.services .services-item li:hover a {
  color: #fff;
}

section.services .services-item img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
  transition: border-color var(--transition);
}

section.services .services-item li:hover img {
  border-color: rgba(255, 255, 255, 0.3);
}

section.services .services-item span {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  section.services .services-item {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  section.services .services-item {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  section.services .services-item {
    grid-template-columns: 1fr;
  }
}

/* Services info section */
section.services .services-info {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1140px;
  margin: 70px auto 0;
  padding: 50px 40px;
  background: var(--surface-alt);
  border-radius: 20px;
}

section.services .services-info .services-img,
section.services .services-info .services-img-1,
section.services .services-info .services-img-2,
section.services .services-info .services-img-3 {
  flex: 1;
  min-width: 0;
}

section.services .services-info img {
  width: 100%;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 380px;
}

section.services .services-text,
section.services .services-text-1,
section.services .services-text-2,
section.services .services-text-3,
section.services .services-text-4 {
  flex: 1;
  padding-top: 0 !important;
}

section.services .services-text p,
section.services .services-text-1 p,
section.services .services-text-2 p,
section.services .services-text-3 p,
section.services .services-text-4 p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
  max-width: 100% !important;
  text-align: left !important;
}

section.services .services-text span,
section.services .services-text-1 span,
section.services .services-text-2 span,
section.services .services-text-3 span,
section.services .services-text-4 span {
  color: var(--primary);
  font-weight: 700;
}

section.services .services-info-title {
  text-align: center;
  margin-top: 70px;
  margin-bottom: 20px;
}

section.services .services-info-title h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
}

section.services .services-info-title span {
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--primary));
  border-radius: 3px;
  margin: 10px auto 0;
}

@media (max-width: 992px) {
  section.services .services-info {
    flex-direction: column;
    gap: 30px;
    margin: 50px 24px 0;
    padding: 36px 24px;
  }

  section.services .services-text p,
  section.services .services-text-1 p,
  section.services .services-text-2 p,
  section.services .services-text-3 p,
  section.services .services-text-4 p {
    text-align: center !important;
  }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--navy);
  margin-top: 0;
}

footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 70px 40px 50px;
  background: transparent;
}

footer .container .footer-item img {
  max-width: 180px;
  opacity: 0.9;
  filter: brightness(1.1);
}

footer .container .footer-contact h3,
footer .container .footer-studio-location h3 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

footer .container .footer-contact p,
footer .container .footer-studio-location p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

footer .container .footer-contact a,
footer .container .footer-studio-location a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

footer .container .footer-contact a:hover,
footer .container .footer-studio-location a:hover {
  color: var(--accent);
}

footer .container .footer-contact i,
footer .container .footer-studio-location i {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 13px;
}

footer .container .footer-contact .fa-phone,
footer .container .footer-contact .fa-envelope,
footer .container .footer-studio-location .fa-home {
  color: var(--accent);
}

@media (max-width: 768px) {
  footer .container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 50px 24px 40px;
    gap: 36px;
  }

  footer .container .footer-item img {
    margin: 0 auto;
  }

  footer .container .footer-contact p,
  footer .container .footer-studio-location p {
    justify-content: center;
  }
}

footer .footer-menu {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 40px;
}

footer .footer-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

footer .footer-menu ul li a {
  display: block;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  border-radius: 7px;
  transition: background var(--transition), color var(--transition);
}

footer .footer-menu ul li a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--accent);
}

footer .footer-allrightreserved {
  background: var(--navy-light);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

footer .footer-allrightreserved p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
}

footer .footer-allrightreserved a {
  color: var(--accent);
  font-weight: 600;
  transition: opacity var(--transition);
}

footer .footer-allrightreserved a:hover {
  opacity: 0.8;
}

/* ============================================
   INDIVIDUAL SERVICE PAGES (general layout)
   ============================================ */
.services-info-title {
  text-align: center;
  margin-top: 70px;
}