/* ═══════════════════════════════════════════════
   USLUGE.CSS  –  White Edition
   ═══════════════════════════════════════════════ */

/* ── Design tokens ── */
:root {
  color-scheme: light;
  --accent:      #0ea5e9;
  --accent-dark: #0284c7;
  --dark:        #000000;
  --dark-2:      #0a0a0a;
  --light:       #f5f5f5;
  --white:       #ffffff;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section label ── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(14, 165, 233, 0.1);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
  font-family: 'Outfit', sans-serif;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: var(--white);
  padding: 17px 42px;
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover {
  background-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #111111;
  padding: 17px 42px;
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  border: 2px solid #dddddd;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(14,165,233,0.04);
}


/* ══════════════════════════════════════
   HERO / WELCOME (NextTransport style)
══════════════════════════════════════ */
#welcome {
  position: relative;
  background-color: var(--light);
  padding: 180px 24px 120px;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#welcome::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(14, 165, 233, 0.08) 0%, transparent 50%);
  z-index: 1;
}

#welcome .welcome-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  gap: 68px;
}

#welcome .left-col {
  flex: 1;
  max-width: 650px;
}

#welcome .left-col .section-label {
  margin-bottom: 24px;
}

#welcome .left-col h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  font-weight: 800;
  color: var(--dark-2);
  font-family: 'Sora', sans-serif;
  line-height: 1.15;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

#welcome .left-col h2 span {
  color: var(--accent);
}

#welcome .left-col p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #555;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 40px;
}

#welcome .welcome-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

#welcome .trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #444;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}
#welcome .trust-badge .material-symbols-outlined {
  color: var(--accent);
  font-size: 1.8rem;
}

#welcome .right-col {
  flex: 1;
  position: relative;
}

#welcome .hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

#welcome .hero-image-wrapper img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

#welcome .floating-card {
  position: absolute;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
}

#welcome .floating-card i {
  font-size: 1.5rem;
  color: var(--accent);
  background: rgba(14, 165, 233, 0.1);
  padding: 14px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#welcome .floating-card strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 2px;
}

#welcome .floating-card span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: #666;
}

#welcome .floating-card.top-right {
  top: 40px;
  right: -30px;
}

#welcome .floating-card.bottom-left {
  bottom: 40px;
  left: -30px;
}


/* ══════════════════════════════════════
   ŠTA GARANTUJEMO
══════════════════════════════════════ */
#offer {
  background-color: var(--white);
  padding: 116px 24px;
}

#offer .container {
  max-width: 1240px;
  margin: 0 auto;
}

#offer .title {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-inline: auto;
}
#offer .title h3 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  color: #111111;
  font-family: 'Sora', sans-serif;
  margin-bottom: 20px;
}
#offer .title p {
  color: #555555;
  font-size: 1.05rem;
  line-height: 1.8;
  font-family: 'Outfit', sans-serif;
}

#offer .flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

#offer .custom-card {
  border-radius: var(--radius-md);
  padding: 30px 30px;
  transition: transform 0.35s ease;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
#offer .custom-card:hover {
  transform: translateY(-8px);
}

#offer .card-white {
  background: var(--white);
  border: 1px solid #e5e5e5;
}
#offer .card-blue {
  background: var(--accent);
  border: 1px solid var(--accent);
}

#offer .custom-card .icon span {
  font-size: 2.5rem;
}
#offer .card-white .icon span {
  color: var(--accent);
}
#offer .card-blue .icon span {
  color: var(--white);
}

#offer .custom-card .text {
  flex: 1;
}
#offer .custom-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  margin-bottom: 12px;
  margin-top: 5px;
}
#offer .card-white h3 {
  color: #111111;
}
#offer .card-blue h3 {
  color: var(--white);
}

#offer .custom-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  font-family: 'Outfit', sans-serif;
}
#offer .card-white p {
  color: #555555;
}
#offer .card-blue p {
  color: rgba(255, 255, 255, 0.9);
}


/* ══════════════════════════════════════
   MONTAŽA
══════════════════════════════════════ */
#services {
  padding: 116px 24px;
  background-color: var(--white);
}

#services .flex {
  display: flex;
  align-items: center;
  gap: 68px;
  max-width: 1240px;
  margin: 0 auto;
}

#services .content {
  flex: 1;
}

#services .content h3 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  color: #111111;
  font-family: 'Sora', sans-serif;
  margin-bottom: 10px;
}

#services .content h6 {
  font-size: 1.3rem;
  font-family: 'Outfit', sans-serif;
  color: var(--accent);
  margin-bottom: 30px;
  font-weight: 600;
}

#services .content p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #444444;
  margin-bottom: 20px;
}

#services .image {
  flex: 1;
}
#services .image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-md);
}


/* ══════════════════════════════════════
   ŠIRA PONUDA & GALERIJA
══════════════════════════════════════ */
#discusion {
  padding: 116px 24px;
  background-color: var(--light);
}

#discusion .flex {
  display: flex;
  align-items: center;
  gap: 68px;
  max-width: 1240px;
  margin: 0 auto;
}

#discusion .content {
  flex: 1;
}

#discusion .content h3 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  color: #111111;
  font-family: 'Sora', sans-serif;
  margin-bottom: 30px;
}

#discusion .content p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #444444;
  margin-bottom: 20px;
}

#discusion .image {
  flex: 1;
}

#discusion .image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-md);
}


/* ══════════════════════════════════════
   DODATNE SEKCIJE
══════════════════════════════════════ */
#extra-service-1 { padding: 116px 24px; background-color: var(--light); }
#extra-service-1 .flex { display: flex; align-items: center; gap: 68px; max-width: 1240px; margin: 0 auto; }
#extra-service-1 .content { flex: 1; }
#extra-service-1 .content h3 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800; color: #111111; font-family: 'Sora', sans-serif; margin-bottom: 10px; }
#extra-service-1 .content h6 { font-size: 1.3rem; font-family: 'Outfit', sans-serif; color: var(--accent); margin-bottom: 30px; font-weight: 600; }
#extra-service-1 .content p { font-size: 1.1rem; line-height: 1.85; color: #444444; margin-bottom: 20px; }
#extra-service-1 .image { flex: 1; }
#extra-service-1 .image img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius-md); }

#extra-service-2 { padding: 116px 24px; background-color: var(--white); }
#extra-service-2 .flex { display: flex; align-items: center; gap: 68px; max-width: 1240px; margin: 0 auto; }
#extra-service-2 .content { flex: 1; }
#extra-service-2 .content h3 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800; color: #111111; font-family: 'Sora', sans-serif; margin-bottom: 30px; }
#extra-service-2 .content p { font-size: 1.1rem; line-height: 1.85; color: #444444; margin-bottom: 20px; }
#extra-service-2 .image { flex: 1; }
#extra-service-2 .image img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius-md); }


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

/* --- 1499px Breakpoint --- */
@media (max-width: 1499px) {
  html { font-size: 17px; }
  
  #welcome .welcome-container,
  #offer .container,
  #services .flex,
  #discusion .flex,
  #extra-service-1 .flex,
  #extra-service-2 .flex { max-width: 1140px; }
  
  #services, #discusion, #extra-service-1, #extra-service-2, #offer { padding: 100px 24px; }
  
  #services .image img,
  #discusion .image img,
  #extra-service-1 .image img,
  #extra-service-2 .image img { height: 480px; }
  
  #welcome .hero-image-wrapper img { height: 500px; }
  
  .btn-primary, .btn-outline { padding: 16px 38px; }
}

/* --- 1279px Breakpoint --- */
@media (max-width: 1279px) {
  html { font-size: 16px; }
  
  #welcome .welcome-container,
  #offer .container,
  #services .flex,
  #discusion .flex,
  #extra-service-1 .flex,
  #extra-service-2 .flex { max-width: 960px; }
  
  #services, #discusion, #extra-service-1, #extra-service-2, #offer { padding: 80px 24px; }
  
  #services .flex, #discusion .flex, #extra-service-1 .flex, #extra-service-2 .flex { gap: 40px; }
  
  p { line-height: 1.75; margin-bottom: 24px; }
  
  #services .image img,
  #discusion .image img,
  #extra-service-1 .image img,
  #extra-service-2 .image img { height: 400px; }
  
  #welcome .hero-image-wrapper img { height: 450px; }
  
  .btn-primary, .btn-outline { padding: 15px 34px; font-size: 1rem; }
  
  #welcome .left-col h2 { font-size: 3.0rem; }
  #services .content h3, #discusion .content h3, #extra-service-1 .content h3, #extra-service-2 .content h3, #offer .title h3 { font-size: 2.2rem; }
}

/* --- 1023px Breakpoint --- */
@media (max-width: 1023px) {
  html { font-size: 15px; }
  
  #services, #discusion, #extra-service-1, #extra-service-2, #offer { padding: 70px 20px; }
  
  #services .flex, #discusion .flex, #extra-service-1 .flex, #extra-service-2 .flex { flex-direction: column; gap: 40px; }
  #services .flex { flex-direction: column-reverse; }
  #extra-service-1 .flex { flex-direction: column-reverse; }
  
  #services .image, #discusion .image, #extra-service-1 .image, #extra-service-2 .image,
  #services .content, #discusion .content, #extra-service-1 .content, #extra-service-2 .content { width: 100%; }
  
  #services .image img,
  #discusion .image img,
  #extra-service-1 .image img,
  #extra-service-2 .image img { height: 360px; }
  
  #welcome .hero-image-wrapper img { height: 400px; }
  
  #welcome .welcome-container { flex-direction: column; text-align: center; gap: 50px; }
  #welcome .left-col { max-width: 100%; }
  #welcome .welcome-actions { justify-content: center; }
  
  #welcome .left-col h2 { font-size: 2.6rem; }
  #services .content h3, #discusion .content h3, #extra-service-1 .content h3, #extra-service-2 .content h3, #offer .title h3 { font-size: 1.9rem; }
  
  .btn-primary, .btn-outline { padding: 14px 30px; font-size: 0.95rem; }
}

/* --- 767px Breakpoint --- */
@media (max-width: 767px) {
  html { font-size: 14px; }
  
  #offer { display: none; }
  
  #welcome { padding-top: 150px; }
  #services, #discusion, #extra-service-1, #extra-service-2, #offer { padding: 60px 16px; }
  
  /* #offer .flex grid-template-columns removed so it stays 2 cols */
  
  #services .image img,
  #discusion .image img,
  #extra-service-1 .image img,
  #extra-service-2 .image img,
  #welcome .hero-image-wrapper img { height: 300px; }
  
  #welcome .floating-card { display: none; }
  
  #welcome .left-col h2 { font-size: 2.2rem; letter-spacing: 2px; }
  #services .content h3, #discusion .content h3, #extra-service-1 .content h3, #extra-service-2 .content h3, #offer .title h3 { font-size: 1.6rem; margin-bottom: 16px; }
  
  p { line-height: 1.6; margin-bottom: 20px; font-size: 1.05rem; }
  
  .welcome-actions { margin-bottom: 40px; flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 14px 20px; box-sizing: border-box; }
}

/* --- 499px Breakpoint --- */
@media (max-width: 499px) {
  html { font-size: 13px; }
  
  #welcome { padding-top: 130px; }
  #services, #discusion, #extra-service-1, #extra-service-2, #offer { padding: 50px 16px; }
  
  #services .image img,
  #discusion .image img,
  #extra-service-1 .image img,
  #extra-service-2 .image img,
  #welcome .hero-image-wrapper img { height: 240px; }
  
  #welcome .left-col h2 { font-size: 1.6rem; letter-spacing: 1px; }
  #services .content h3, #discusion .content h3, #extra-service-1 .content h3, #extra-service-2 .content h3, #offer .title h3 { font-size: 1.2rem; }
}
