:root {
  --navy: #0e2a47;
  --navy-dark: #071b31;
  --orange: #ff7a00;
  --bg: #f7efe8;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e5e7eb;
  --shadow: 0 18px 45px rgba(14, 42, 71, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

.site-wrap {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
}

/* HEADER */

.top-strip {
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  padding: 8px 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff4ec;
  border-bottom: 1px solid rgba(14, 42, 71, 0.16);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  width: 116px;
  max-height: 54px;
  object-fit: contain;
}

.logo-fallback {
  font-size: 26px;
  font-weight: 950;
  color: var(--navy);
  line-height: 1;
}

.logo-fallback span {
  display: block;
  color: #d91414;
  font-size: 13px;
  font-weight: 800;
  margin-top: 3px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  font-size: 15px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-btn,
.menu-btn,
.primary-btn,
.secondary-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 14px;
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.1;
}

.call-btn {
  background: var(--navy);
  color: #fff;
}

.menu-btn {
  background: var(--orange);
  color: #fff;
  gap: 8px;
}

.menu-icon {
  width: 24px;
  height: 18px;
  position: relative;
  display: inline-block;
}

.menu-icon::before,
.menu-icon::after,
.menu-icon span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
}

.menu-icon::before {
  top: 0;
}

.menu-icon span {
  top: 7.5px;
}

.menu-icon::after {
  bottom: 0;
}

/* MOBILE MENU */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--navy-dark);
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.22s ease;
  padding: 22px;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.close-menu {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

.mobile-menu nav {
  display: grid;
  gap: 16px;
  text-align: right;
}

.mobile-menu nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.82);
  font-size: 30px;
  font-weight: 700;
}

.mobile-menu nav a.highlight {
  color: var(--orange);
}

.mobile-menu-contact {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: grid;
  gap: 10px;
  text-align: right;
  color: rgba(255,255,255,0.75);
}

.mobile-menu-contact a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  font-size: 22px;
}

/* HERO */

.hero {
  padding: 34px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(14,42,71,0.12);
  box-shadow: 0 8px 24px rgba(14,42,71,0.08);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  margin-bottom: 16px;
}

.hero h1 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -1.6px;
  font-weight: 950;
}

.hero h1 span {
  color: var(--orange);
}

.hero-subtitle {
  margin: 18px 0 0;
  color: #26384d;
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.45;
  font-weight: 650;
  max-width: 680px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.primary-btn {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 32px rgba(255,122,0,0.25);
}

.secondary-btn {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 32px rgba(14,42,71,0.18);
}

.outline-btn {
  background: #fff;
  color: var(--navy);
  border: 2px solid rgba(14,42,71,0.15);
}

.micro-copy {
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.45;
  font-size: 14px;
}

.offer-card {
  background: linear-gradient(180deg, var(--navy), #071a2f);
  color: #fff;
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.offer-card small {
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 900;
}

.offer-card h2 {
  color: #fff;
  margin: 12px 0 8px;
  font-size: 34px;
  line-height: 1.05;
}

.discount {
  font-size: 52px;
  line-height: 1;
  color: var(--orange);
  font-weight: 950;
  margin: 16px 0 10px;
}

.offer-card p {
  color: rgba(255,255,255,0.84);
  line-height: 1.5;
  margin: 0 0 20px;
}

/* SECTIONS */

.section {
  padding: 36px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 22px;
}

.section-title h2 {
  margin: 0 0 8px;
  color: var(--navy-dark);
  font-size: clamp(24px, 3.5vw,342px);
  line-height: 1.12;
}

.section-title p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.quick-card {
  background: var(--card);
  border: 1px solid rgba(14,42,71,0.1);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 10px 28px rgba(14,42,71,0.08);
}

.quick-card b {
  display: block;
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 7px;
}

.quick-card span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.step-card {
  background: #fff;
  border: 1px solid rgba(14,42,71,0.1);
  border-radius: 24px;
  padding: 22px;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 950;
  margin-bottom: 14px;
}

.step-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 21px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.blue-box {
  background: var(--navy);
  color: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.blue-box h2 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.1;
}

.blue-box p {
  color: rgba(255,255,255,0.84);
  line-height: 1.55;
  margin: 0 0 16px;
}

.white-box {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(14,42,71,0.1);
  box-shadow: 0 16px 40px rgba(14,42,71,0.1);
}

.white-box h2 {
  color: var(--navy-dark);
  margin: 0 0 10px;
  font-size: 32px;
}

.white-box p {
  color: var(--muted);
  line-height: 1.55;
}

.list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.list-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #26384d;
  line-height: 1.4;
}

.list-item::before {
  content: "✓";
  color: var(--orange);
  font-weight: 950;
}

.faq {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq details {
  background: #fff;
  border: 1px solid rgba(14,42,71,0.1);
  border-radius: 16px;
  padding: 16px 18px;
}

.faq summary {
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
  font-size: 17px;
}

.faq p {
  color: var(--muted);
  line-height: 1.5;
  margin: 10px 0 0;
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.contact-card {
  background: #fff;
  border-radius: 26px;
  padding: 24px;
  border: 1px solid rgba(14,42,71,0.1);
  box-shadow: 0 16px 40px rgba(14,42,71,0.1);
}

.contact-card h2 {
  margin: 0 0 12px;
  color: var(--navy-dark);
  font-size: 31px;
}

.contact-line {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line:last-child {
  border-bottom: 0;
}

.contact-line b {
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}

.contact-line span,
.contact-line a {
  color: var(--muted);
  text-decoration: none;
  line-height: 1.4;
}

.map-placeholder {
  min-height: 330px;
  border-radius: 26px;
  background: linear-gradient(135deg, #fff, #e8eef5);
  border: 1px solid rgba(14,42,71,0.1);
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
  padding: 24px;
}

/* FOOTER */

.site-footer {
  background: var(--navy-dark);
  color: #fff;
  padding: 34px 0 88px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
}

.site-footer h3 {
  margin: 0 0 10px;
}

.site-footer p,
.site-footer a {
  color: rgba(255,255,255,0.74);
  line-height: 1.5;
  text-decoration: none;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.sticky-mobile {
  display: none;
}

/* RESPONSIVE */

@media (max-width: 920px) {
  .desktop-nav,
  .header-actions .call-btn {
    display: none;
  }

  .header-inner {
    min-height: 72px;
  }

  .hero {
    padding: 24px 0 18px;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.06;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quick-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sticky-mobile {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border-top: 1px solid rgba(14,42,71,0.16);
    box-shadow: 0 -12px 28px rgba(14,42,71,0.14);
  }

  .sticky-mobile a {
    text-align: center;
    text-decoration: none;
    color: var(--navy);
    font-weight: 950;
    font-size: 14px;
    padding: 13px 6px;
    border-right: 1px solid #edf0f4;
  }

  .sticky-mobile a:last-child {
    background: var(--orange);
    color: #fff;
    border-right: 0;
  }
}

@media (max-width: 480px) {
  .site-wrap {
    width: min(100% - 24px, 460px);
  }

  .top-strip {
    font-size: 13px;
  }

  .logo-img {
    width: 105px;
  }

  .menu-btn {
    padding: 11px 13px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .offer-card h2 {
    font-size: 28px;
  }

  .discount {
    font-size: 42px;
  }

  .quick-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 30px 0;
  }

  .blue-box,
  .white-box {
    padding: 22px;
  }
}
@media (max-width: 480px) {
  .top-strip {
    font-size: 12px;
    padding: 6px 10px;
  }

  .header-inner {
    min-height: 62px;
  }

  .logo-img {
    width: 96px;
    max-height: 46px;
  }

  .menu-btn {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 12px;
  }

  .hero {
    padding: 18px 0 14px;
  }

  .badge {
    padding: 8px 12px;
    font-size: 13px;
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: 31px;
    line-height: 1.08;
    letter-spacing: -0.7px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.42;
    margin-top: 12px;
  }

  .cta-row {
    gap: 9px;
    margin-top: 18px;
  }

  .primary-btn,
  .secondary-btn,
  .outline-btn {
    min-height: 45px;
    padding: 11px 14px;
    font-size: 14px;
    border-radius: 12px;
  }

  .micro-copy {
    font-size: 13px;
    margin-top: 10px;
  }

  .offer-card {
    padding: 21px;
    border-radius: 22px;
  }

  .offer-card h2 {
    font-size: 25px;
  }

  .discount {
    font-size: 38px;
    margin: 12px 0 8px;
  }

  .offer-card p {
    font-size: 14px;
    line-height: 1.45;
  }

  .quick-card {
    padding: 15px;
    border-radius: 18px;
  }

  .quick-card b {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .quick-card span {
    font-size: 13px;
  }

  .section-title h2 {
    font-size: 25px;
  }

  .section-title p {
    font-size: 15px;
  }

  .step-card {
    padding: 18px;
    border-radius: 20px;
  }

  .step-card h3 {
    font-size: 18px;
  }

  .step-card p {
    font-size: 14px;
  }
}
.booking-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.form-row {
  display: grid;
  gap: 6px;
}

.form-row label {
  font-weight: 900;
  color: var(--navy);
  font-size: 14px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid #d7dde7;
  border-radius: 13px;
  padding: 13px 14px;
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
}

.form-row textarea {
  min-height: 94px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,122,0,0.13);
}

.form-submit {
  width: 100%;
  border: 0;
}
.blue-box .list-item {
  color: rgba(255, 255, 255, 0.88);
}

.blue-box .list-item::before {
  color: var(--orange);
}

.blue-box .primary-btn {
  margin-top: 8px;
}
.blue-box .list {
  gap: 14px;
}

.blue-box .list-item {
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .blue-box .list-item {
    font-size: 15px;
  }
}
/* FIX: čitljivost liste u tamnoplavim blokovima */
.blue-box .list-item {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.5;
}

.blue-box .list-item::before {
  color: var(--orange);
  font-weight: 950;
  flex: 0 0 auto;
}

.blue-box .list {
  gap: 14px;
}

.blue-box .primary-btn {
  margin-top: 10px;
}

/* Malo bolji kontrast pasusa u plavom bloku */
.blue-box p {
  color: rgba(255, 255, 255, 0.88);
}

/* Mobilna korekcija za plave blokove */
@media (max-width: 480px) {
  .blue-box {
    padding: 24px;
  }

  .blue-box h2 {
    font-size: 31px;
    line-height: 1.15;
  }

  .blue-box .list-item {
    font-size: 15px;
    line-height: 1.48;
  }

  .blue-box .primary-btn {
    width: 100%;
  }
}
.contact-mini {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-mini a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 12px 14px;
}

.map-card {
  background:
    radial-gradient(circle at top left, rgba(255,122,0,0.12), transparent 36%),
    linear-gradient(135deg, #ffffff, #eef3f8);
}

.map-card b {
  display: block;
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 8px;
}

.map-card p {
  color: var(--muted);
  line-height: 1.5;
  margin: 8px 0;
}

.map-actions {
  margin-top: 20px;
  justify-content: center;
}

@media (max-width: 480px) {
  .contact-mini a {
    font-size: 14px;
  }

  .map-card b {
    font-size: 21px;
  }
}
.primary-btn,
.secondary-btn,
.outline-btn,
.call-btn,
.menu-btn {
  min-height: 44px;
  padding: 11px 14px;
  border-radius: 12px;
}
.offer-card,
.blue-box,
.white-box,
.contact-card,
.map-embed-card {
  border-radius: 22px;
}

.quick-card,
.step-card {
  border-radius: 18px;
}
.offer-card,
.blue-box,
.white-box,
.contact-card,
.map-embed-card {
  box-shadow: 0 10px 28px rgba(14, 42, 71, 0.10);
}

.quick-card {
  box-shadow: 0 6px 18px rgba(14, 42, 71, 0.07);
}
/* Vizuelno smirivanje sajta */
.section-title h2 {
  font-size: clamp(24px, 3.5vw, 34px);
}

.primary-btn,
.secondary-btn,
.outline-btn,
.call-btn,
.menu-btn {
  min-height: 44px;
  padding: 11px 14px;
  border-radius: 12px;
}

.offer-card,
.blue-box,
.white-box,
.contact-card,
.map-embed-card {
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(14, 42, 71, 0.10);
}

.quick-card,
.step-card {
  border-radius: 18px;
}

.quick-card {
  box-shadow: 0 6px 18px rgba(14, 42, 71, 0.07);
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

  .section {
    padding: 26px 0;
  }

  .blue-box h2,
  .white-box h2,
  .contact-card h2 {
    font-size: 27px;
  }
}
/* Landing stranice sa formom u hero delu */
.landing-form-box {
  align-self: start;
}

.landing-form-box h2 {
  margin-top: 0;
  font-size: 28px;
  line-height: 1.12;
}

.landing-form-box .badge {
  margin-bottom: 12px;
}

.compact-section {
  padding-top: 18px;
}

.center-copy {
  text-align: center;
  max-width: 760px;
  margin: 18px auto 0;
}

@media (max-width: 920px) {
  .landing-form-box {
    order: 2;
  }
}

@media (max-width: 480px) {
  .landing-form-box h2 {
    font-size: 24px;
  }

  .landing-form-box {
    padding: 20px;
  }

  .compact-section {
    padding-top: 12px;
  }
}