@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");
:root {
  --bg-color: #ffffff;
  --surface-color: #e7edf2;
  --surface-card: #ffffff;
  --border-color: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(37, 99, 235, 0.35);
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-glow: rgba(37, 99, 235, 0.2);
  --text-main: #0f172a;
  --text-muted: #64748b;
  --dark-bg: #0b0f19;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Intro Sekcija */
.intro {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
}

.intro .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.85) 0%,
      rgba(15, 23, 42, 0.65) 100%
    ),
    url("../img/background.jpeg") center/cover no-repeat;
  filter: brightness(0.9) contrast(1.05) blur(2px);
  animation: zoomBg 25s infinite alternate;
  z-index: -1;
}

@keyframes zoomBg {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.text-overlay {
  max-width: 900px;
  z-index: 2;
  animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 8px 18px;
  border-radius: 50px;
  color: #93c5fd;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  backdrop-filter: blur(5px);
}

.hero-logo {
  width: 320px;
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto 25px auto;
  border-radius: 10px;
  /* blaga senka da se bolje vidi preko backgrounda */
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.323));

  /* malo elegantniji efekat */
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 7px 15px rgba(255, 255, 255, 0.323));
}

.text-overlay .logo {
  display: none;
}

.text-overlay h1 {
  font-size: 3.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  line-height: 1.15;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.text-overlay h1 span {
  background: linear-gradient(135deg, #60a5fa, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-overlay p {
  font-size: 1.3rem;
  color: #e2e8f0;
  margin-bottom: 35px;
  line-height: 1.8;
  font-weight: 300;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.social-icons a {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 1.15rem;
  transition: var(--transition);
  text-decoration: none;
  backdrop-filter: blur(5px);
}

.social-icons a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px var(--primary-glow);
}

.learn-more {
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  color: white;
  border: none;
  padding: 16px 42px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 25px var(--primary-glow);
  letter-spacing: 0.5px;
}

.learn-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

/* Usluge / Highlights - Poboljšana dubina i vizuelna hijerarhija */
/* ================================
   SERVICES — MODERN AUTOMOTIVE
================================ */

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;

  max-width: 1250px;
  margin: 0 auto;
  padding: 30px 5%;

  position: relative;
}

/* ================================
   SERVICE CARD
================================ */

.service {
  position: relative;
  overflow: hidden;

  padding: 42px 32px 38px;

  min-height: 290px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.015)
  );

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;

  text-align: center;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

/* Suptilni gradient koji prati karticu */

.service::after {
  content: "";

  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at 90% 10%,
    rgba(37, 99, 235, 0.12),
    transparent 35%
  );

  opacity: 0;
  transition: opacity 0.5s ease;

  pointer-events: none;
}

/* ================================
   TOP ACCENT LINE
================================ */

.service::before {
  content: "";

  position: absolute;

  top: 0;
  left: 15%;
  right: 15%;

  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--primary),
    #60a5fa,
    var(--primary),
    transparent
  );

  opacity: 0;

  transform: scaleX(0.4);

  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ================================
   HOVER
================================ */

.service:hover {
  transform: translateY(-10px);

  border-color: rgba(37, 99, 235, 0.45);

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.065),
    rgba(37, 99, 235, 0.035)
  );

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.28), 0 0 35px rgba(37, 99, 235, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.service:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.service:hover::after {
  opacity: 1;
}

/* ================================
   CARD GLOW
================================ */

.service span.card-glow {
  position: absolute;

  width: 130px;
  height: 130px;

  top: -60px;
  right: -60px;

  background: var(--primary);

  opacity: 0.08;

  filter: blur(35px);
  border-radius: 50%;

  pointer-events: none;

  transition: transform 0.6s ease, opacity 0.5s ease;
}

.service:hover span.card-glow {
  transform: scale(1.5);
  opacity: 0.15;
}

/* ================================
   ICON CONTAINER
================================ */

.service-icon-box {
  position: relative;

  width: 72px;
  height: 72px;

  margin: 0 auto 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    145deg,
    rgba(37, 99, 235, 0.13),
    rgba(37, 99, 235, 0.035)
  );

  border: 1px solid rgba(37, 99, 235, 0.18);

  border-radius: 18px;

  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Mali ugao na ikonici */

.service-icon-box::before {
  content: "";

  position: absolute;

  top: 0;
  right: 0;

  width: 18px;
  height: 18px;

  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);

  border-radius: 0 8px 0 0;

  opacity: 0.7;
}

/* Ikonica */

.service i {
  position: relative;
  z-index: 2;

  color: var(--primary);

  font-size: 1.75rem;

  transition: transform 0.45s ease, color 0.35s ease, filter 0.35s ease;
}

/* Hover ikonice */

.service:hover .service-icon-box {
  transform: translateY(-4px) scale(1.06);

  background: linear-gradient(145deg, var(--primary), rgba(37, 99, 235, 0.7));

  border-color: rgba(96, 165, 250, 0.7);

  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25),
    0 0 25px rgba(37, 99, 250, 0.12);
}

.service:hover i {
  transform: scale(1.08);

  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

/* ================================
   TITLE
================================ */

.service h3 {
  position: relative;
  z-index: 2;

  margin: 0 0 12px;

  color: var(--text-main);

  font-size: 1.22rem;
  font-weight: 700;

  letter-spacing: -0.02em;

  transition: color 0.3s ease, transform 0.3s ease;
}

.service:hover h3 {
  transform: translateY(-2px);
}

/* ================================
   DESCRIPTION
================================ */

.service p {
  position: relative;
  z-index: 2;

  margin: 0;

  color: var(--text-muted);

  font-size: 0.94rem;

  line-height: 1.7;

  transition: color 0.3s ease;
}

/* ================================
   SMALL TECH CORNERS
================================ */

.service {
  --corner-size: 18px;
}

.service {
  background-image: linear-gradient(
    135deg,
    transparent 0,
    transparent calc(100% - var(--corner-size)),
    rgba(37, 99, 235, 0.15) calc(100% - var(--corner-size)),
    rgba(37, 99, 235, 0.15) calc(100% - var(--corner-size) + 1px),
    transparent calc(100% - var(--corner-size) + 1px)
  );
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 950px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 5%;
  }

  .service {
    min-height: auto;
    padding: 35px 25px;
  }

  .service-icon-box {
    width: 66px;
    height: 66px;
  }
}

/* Customer Card */
.customer-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  min-height: 420px;
  padding: 120px 30px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: radial-gradient(
      circle at 50% 45%,
      rgba(22, 119, 255, 0.12) 0%,
      rgba(22, 119, 255, 0.04) 25%,
      transparent 65%
    ),
    linear-gradient(180deg, #05070a 0%, #080c11 50%, #05070a 100%);

  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Large atmospheric blue glow */
.customer-card::before {
  content: "";
  position: absolute;

  width: 500px;
  height: 500px;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  background: rgba(22, 119, 255, 0.1);

  filter: blur(120px);

  border-radius: 50%;

  z-index: -2;

  pointer-events: none;
}

/* Technical horizontal lines */
.customer-card::after {
  content: "";

  position: absolute;

  left: 8%;
  right: 8%;
  top: 50%;

  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    rgba(22, 119, 255, 0.35),
    rgba(255, 255, 255, 0.12),
    transparent
  );

  opacity: 0.7;

  z-index: -1;
}

/* Content */
.customer-card h2 {
  position: relative;

  max-width: 1100px;

  margin: 0 auto;

  font-size: clamp(2.5rem, 5vw, 5.5rem);

  font-weight: 800;

  line-height: 0.95;

  letter-spacing: -3px;

  color: #ffffff;

  text-transform: uppercase;

  text-wrap: balance;

  z-index: 2;
}

/* Small label above the main text */
.customer-card h2::before {
  content: "PERFORMANSE • POVERENJE • PRECIZNOST";

  display: block;

  margin-bottom: 28px;

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 5px;

  color: #8b96a3;

  opacity: 0.9;
}

/* Highlighted text */
.customer-card h2 b {
  position: relative;

  display: inline-block;

  margin-top: 18px;

  color: #1677ff;

  background: linear-gradient(135deg, #ffffff 0%, #2f8cff 45%, #1677ff 100%);

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 40px rgba(22, 119, 255, 0.15);
}

/* Blue underline underneath highlighted text */
.customer-card h2 b::after {
  content: "";

  position: absolute;

  left: 5%;
  right: 5%;
  bottom: -15px;

  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    #1677ff,
    #2f8cff,
    transparent
  );

  box-shadow: 0 0 15px rgba(22, 119, 255, 0.45);

  transform: scaleX(0.7);

  opacity: 0.8;
}

/* ================================
   DECORATIVE CORNERS
================================ */

.customer-card .corner {
  position: absolute;

  width: 60px;
  height: 60px;

  border-color: rgba(22, 119, 255, 0.5);
  border-style: solid;

  pointer-events: none;
}

.customer-card .corner.top-left {
  top: 35px;
  left: 6%;

  border-width: 1px 0 0 1px;
}

.customer-card .corner.top-right {
  top: 35px;
  right: 6%;

  border-width: 1px 1px 0 0;
}

.customer-card .corner.bottom-left {
  bottom: 35px;
  left: 6%;

  border-width: 0 0 1px 1px;
}

.customer-card .corner.bottom-right {
  bottom: 35px;
  right: 6%;

  border-width: 0 1px 1px 0;
}

/* ================================
   HOVER / INTERACTION
================================ */

.customer-card:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.15);
  transition: transform 0.8s ease;
}

.customer-card h2 b {
  transition: filter 0.4s ease, transform 0.4s ease;
}

.customer-card:hover h2 b {
  filter: brightness(1.15);
  transform: translateY(-3px);
}

/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {
  .customer-card {
    min-height: 340px;
    padding: 90px 20px;
  }

  .customer-card h2 {
    font-size: clamp(2.2rem, 10vw, 4rem);
    letter-spacing: -1.8px;
    line-height: 1;
  }

  .customer-card h2::before {
    margin-bottom: 22px;

    font-size: 9px;
    letter-spacing: 3px;
  }

  .customer-card h2 b {
    margin-top: 12px;
  }

  .customer-card h2 b::after {
    bottom: -10px;
  }

  .customer-card::after {
    left: 4%;
    right: 4%;
  }

  .customer-card .corner {
    width: 35px;
    height: 35px;
  }

  .customer-card .corner.top-left,
  .customer-card .corner.top-right {
    top: 20px;
  }

  .customer-card .corner.bottom-left,
  .customer-card .corner.bottom-right {
    bottom: 20px;
  }
}

/* Cards Section */
.cards {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 5% 120px 5%;
}

.cards > h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 60px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-main);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 35px;
}

.card {
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.03);
  position: relative;
  height: auto;
}

/* RANDOM SPANS: Elegantna oznaka na karticama */
.card span.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  color: var(--primary);
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 20px;
  z-index: 10;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--border-hover);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.1);
}

.card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 230px;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.card:hover img {
  transform: scale(1.06);
}

.card h3 {
  font-size: 1.25rem;
  padding: 28px 28px 12px 28px;
  color: var(--text-main);
  font-weight: 700;
}

.card p {
  padding: 0 28px 28px 28px;
  color: var(--text-muted);
  font-size: 0.96rem;
  flex-grow: 1;
  line-height: 1.7;
}

.card a {
  padding: 0 28px 32px 28px;
  display: block;
}

.card button {
  width: 100%;
  background: rgba(37, 99, 235, 0.05);
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, 0.15);
  padding: 14px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.card button:hover {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 20px var(--primary-glow);
}

/* About Section */
.about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 6%;
  background: var(--surface-color);
  border-radius: 35px;
  border: 1px solid var(--border-color);
  margin-bottom: 120px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.02);
  position: relative;
}

/* RANDOM SPANS: Pozadinski mekši element za unikatnost */
.about span.bg-accent-circle {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: rgba(37, 99, 235, 0.04);
  filter: blur(50px);
  border-radius: 50%;
  pointer-events: none;
}

.about > h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-main);
}

.abt {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.abt p {
  font-size: 1.18rem;
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.85;
  font-weight: 300;
}

.abt p b {
  color: var(--text-main);
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-top: 60px;
  text-align: left;
  position: relative;
  z-index: 2;
}

.about-item {
  background: var(--surface-card);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}

.about-item:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.07);
}

.about-item h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--text-main);
  font-weight: 700;
}

.about-item p {
  font-size: 0.96rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* Partners Section */
.partners {
  margin-top: 90px;
  text-align: center;
}

.partners h2 {
  font-size: 2.2rem;
  margin-bottom: 35px;
  font-weight: 700;
  color: var(--text-main);
}

.partner-box {
  display: inline-block;
  background: var(--surface-card);
  border: 1px solid var(--border-color);
  padding: 35px 60px;
  border-radius: 24px;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}

.partner-box:hover {
  border-color: var(--primary);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.08);
  transform: translateY(-4px);
}

.partner-logo {
  height: 55px;
  object-fit: contain;
  margin-bottom: 15px;
}

.partner-name {
  display: inline-block;
  color: var(--text-main);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.2rem;
  transition: var(--transition);
}

.partner-name:hover {
  color: var(--primary);
}

/* =================================================================
   HERO / INTRO SECTION ($100,000 ULTRA MODERN THEME)
   ================================================================= */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px 20px;
  background: linear-gradient(
      180deg,
      rgba(3, 7, 18, 0.75),
      rgba(3, 7, 18, 0.92)
    ),
    url("../img/background.jpeg") center/cover no-repeat; /* Update image path if needed */
  text-align: center;
  overflow: hidden;
}

/* Ambient blue background glow matching your luxury automotive aesthetic */
.hero-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(59, 130, 246, 0.2);
  filter: blur(120px);
  border-radius: 50%;
  z-index: 0;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

/* Seamless, premium logo integration (removed the box) */
.hero-logo {
  width: 280px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
  margin-bottom: 5px;
  animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Sleek uppercase sub-headline tag */
.hero-title-tag {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: -5px;
}

/* Refined typography for the description */
.hero-description {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: #cbd5e1;
  line-height: 1.8;
  max-width: 620px;
  font-weight: 400;
}

/* Glassmorphic Social Icons Row */
.hero-socials {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.hero-social-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.hero-social-icon:hover {
  background: var(--primary, #3b82f6);
  border-color: var(--primary, #3b82f6);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.45);
}

/* High-end Modern CTA Button */
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  padding: 18px 42px;
  font-family: var(--font-main, sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  margin-top: 12px;
}

/* Light beam sweep hover effect */
.hero-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: 0.5s;
}

.hero-cta:hover::before {
  left: 100%;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.6);
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.hero-cta:active {
  transform: translateY(-1px);
}

@media screen and (max-width: 768px) {
  .hero-section {
    padding: 100px 16px 60px 16px;
  }
}

.volvo-highlight {
  background-color: #f4f6f9; /* Blaga pozadina da se odvoji */
  border-left: 4px solid #1b365d; /* Volvo plava ili neka tvoja boja akcenta */
  padding: 12px;
  margin: 15px 0;
  border-radius: 4px;
  text-align: left;
}

.volvo-highlight p {
  font-size: 14px;
  color: #333;
  margin-bottom: 0px;
  padding-bottom: 0;
}

.volvo-link {
  font-size: 13px;
  font-weight: 600;
  color: #0066cc;
  text-decoration: none;
  margin-top: 5px;
}

.volvo-link:hover {
  text-decoration: underline;
}
