body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f7fafd;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  position: relative;
  color: #1c2534;
}
.background-decor {
  position: fixed;
  top: -120px;
  left: -80px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at 30% 30%, #e2ecff 60%, transparent 100%);
  z-index: -1;
  pointer-events: none;
  animation: float 8s ease-in-out infinite alternate;
}
@keyframes float {
  0% { transform: translateY(0) scale(1);}
  100% { transform: translateY(40px) scale(1.05);}
}
/* POBOLJŠANA REZERVACIJSKA SEKCIJA */
.reservation-section {
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.reservation-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* HEADER */
.reservation-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  animation: fadeInUp 1.2s cubic-bezier(.32,1.25,.42,1.14);
}

/* LANGUAGE SELECTOR */
.language-selector {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #e0e8f3;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.9em;
  font-weight: 600;
}

.lang-option:hover {
  background: #fff;
  border-color: #228be6;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34, 139, 230, 0.15);
}

.lang-option.active {
  background: linear-gradient(135deg, #e7f3fe 0%, #cce2ff 100%);
  border-color: #228be6;
  box-shadow: 0 4px 12px rgba(34, 139, 230, 0.2);
}

/* Flag circles instead of emoji */
.flag-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.hr-flag {
  background: linear-gradient(to bottom, #ff0000 33%, #ffffff 33%, #ffffff 66%, #0066cc 66%);
  position: relative;
}

.hr-flag::after {
  content: "🛡️";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8px;
  line-height: 1;
}

.gb-flag {
  background: linear-gradient(135deg, #012169 25%, transparent 25%), 
              linear-gradient(45deg, #012169 25%, transparent 25%),
              linear-gradient(-135deg, #012169 25%, transparent 25%),
              linear-gradient(-45deg, #012169 25%, transparent 25%),
              #ffffff;
  background-size: 10px 10px;
  position: relative;
}

.gb-flag::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 40%, #ce1126 40%, #ce1126 60%, transparent 60%),
              linear-gradient(to right, transparent 40%, #ce1126 40%, #ce1126 60%, transparent 60%);
  border-radius: 50%;
}

.si-flag {
  background: linear-gradient(to bottom, #ffffff 33%, #0000ff 33%, #0000ff 66%, #ff0000 66%);
}

.lang-option .lang-text {
  color: #1c2534;
  font-size: 0.85em;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(60px);}
  to   { opacity: 1; transform: translateY(0);}
}

.logo-wrapper {
  margin-bottom: 24px;
}

.main-logo {
  max-width: 100%;
  height: auto;
}

.header-content {
  max-width: 800px;
  margin: 0 auto;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1c2534;
  margin: 0 0 12px 0;
  letter-spacing: -1px;
}

.header-subtitle {
  font-size: 1.2em;
  color: #5a6d92;
  margin: 0;
  font-weight: 500;
  line-height: 1.6;
}

/* GLAVNI SADRŽAJ */
.reservation-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

/* FORMA KARTICA */
.reservation-form-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(34, 139, 230, 0.12);
  border: 1px solid #e9f1fb;
  overflow: hidden;
  animation: fadeInUp 1.4s cubic-bezier(.32,1.25,.42,1.14);
}

.form-card-header {
  background: linear-gradient(135deg, #f7fafd 0%, #e7f3fe 100%);
  padding: 32px 40px 28px 40px;
  border-bottom: 1px solid #e9f1fb;
}

.form-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1c2534;
  margin: 0 0 8px 0;
  letter-spacing: -0.5px;
}

.form-subtitle {
  font-size: 1.05em;
  color: #5a6d92;
  margin: 0;
  font-weight: 500;
}

.enhanced-booking-form {
  padding: 40px;
}

/* FORM SEKCIJE */
.form-section {
  margin-bottom: 40px;
}

.form-section:last-child {
  margin-bottom: 0;
}

.section-title {
  font-size: 1.3em;
  font-weight: 700;
  color: #1c2534;
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #e7f3fe;
  letter-spacing: -0.3px;
}

/* FORM GRID */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-grid .form-group:last-child {
  grid-column: 1 / -1;
}

.form-grid-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.form-grid-compact input[type="number"] {
  text-align: center;
  font-weight: 600;
  font-size: 1.1em;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1c2534;
  font-size: 1.05em;
  letter-spacing: 0.1px;
}

.field-icon {
  font-size: 1.1em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid #e0e8f3;
  font-size: 16px;
  font-family: inherit;
  background: #f8fbff;
  box-shadow: 0 2px 8px rgba(34, 139, 230, 0.04);
  transition: all 0.3s ease;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: #228be6;
  background: #fff;
  box-shadow: 0 4px 16px rgba(34, 139, 230, 0.15);
  transform: translateY(-1px);
}

input.invalid {
  border-color: #e64b25;
  background: #fef8f6;
  box-shadow: 0 4px 16px rgba(230, 75, 37, 0.15);
}

.error-message {
  color: #e64b25;
  font-size: 0.9em;
  margin-top: 4px;
  font-weight: 500;
}

textarea {
  resize: vertical;
  min-height: 80px;
  max-height: 140px;
}

/* DATUM SEKCIJA */
.date-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.date-group {
  background: #f7fafd;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e6eefb;
}

.date-group-title {
  font-size: 1.1em;
  font-weight: 700;
  color: #1da1f2;
  margin: 0 0 16px 0;
  letter-spacing: 0.2px;
}

.date-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* CIJENA PRIKAZ */
.price-display-section {
  margin: 32px 0;
}

.price-card {
  background: linear-gradient(135deg, #228be6 0%, #5fd5fa 100%);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(34, 139, 230, 0.2);
}

.live-price-display {
  font-size: 1.4em;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* USLUGE SEKCIJA */
.service-group-title {
  font-size: 1.1em;
  font-weight: 600;
  color: #5a6d92;
  margin: 0 0 16px 0;
  letter-spacing: 0.2px;
}

.radio-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.radio-card {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-card-content {
  background: #f8fbff;
  border: 2px solid #e0e8f3;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.25s ease;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.radio-card:hover .radio-card-content {
  border-color: #228be6;
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(34, 139, 230, 0.15);
}

.radio-card input[type="radio"]:checked + .radio-card-content {
  border-color: #228be6;
  background: linear-gradient(135deg, #e7f3fe 0%, #cce2ff 100%);
  box-shadow: 0 6px 24px rgba(34, 139, 230, 0.2);
}

.radio-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.service-icon {
  font-size: 2em;
}

.service-name {
  font-weight: 700;
  color: #1c2534;
  font-size: 1.05em;
  letter-spacing: 0.1px;
}

.service-description {
  font-size: 0.9em;
  color: #5a6d92;
  margin-bottom: 8px;
  line-height: 1.4;
}

.service-price {
  font-size: 1.2em;
  font-weight: 700;
  color: #228be6;
  letter-spacing: 0.2px;
}

/* SUBMIT GUMB */
.form-submit-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e9f1fb;
}

/* REZULTAT PORUKE - POBOLJŠAN STIL */
.rezultat {
  margin: 20px 0;
  padding: 0;
  transition: all 0.3s ease;
  min-height: 24px;
  display: block;
}

.rezultat.success-message,
.rezultat.error {
  margin: 24px 0;
}

.enhanced-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  background: linear-gradient(135deg, #228be6 0%, #5fd5fa 100%);
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 1.2em;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 24px rgba(34, 139, 230, 0.15);
  transition: all 0.3s ease;
}

.enhanced-submit-btn:hover {
  background: linear-gradient(135deg, #1765b1 0%, #4bc8f0 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(34, 139, 230, 0.25);
}

.btn-icon {
  font-size: 1.1em;
  transform: translateY(-5px);
}

.btn-price {
  font-size: 1.1em;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-arrow {
  font-size: 1.1em;
}

/* FORM PORUKE */
.form-messages {
  padding: 24px 40px;
  border-top: 1px solid #e9f1fb;
  background: #f7fafd;
}

.form-result {
  font-weight: 600;
  font-size: 1.1em;
  margin: 0 0 8px 0;
}

.form-result:not(.error) {
  color: #35b06b;
}

.form-result.error {
  color: #e64b25;
}

.form-price {
  font-size: 1.05em;
  color: #2e3a4a;
  font-weight: 500;
  margin: 0;
}

/* INFO PANEL */
.info-panel {
  animation: fadeInUp 1.6s cubic-bezier(.32,1.25,.42,1.14);
}

.info-panel-header {
  margin-bottom: 24px;
}

.info-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1c2534;
  margin: 0;
  letter-spacing: -0.3px;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e9f1fb;
  box-shadow: 0 4px 16px rgba(34, 139, 230, 0.06);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(34, 139, 230, 0.12);
}

.info-card.highlight-card {
  background: linear-gradient(135deg, #f7fafd 0%, #e7f3fe 100%);
  border-color: #228be6;
}

.info-card.warning-card {
  background: linear-gradient(135deg, #fff8f2 0%, #ffefdf 100%);
  border-color: #ff8c42;
}

.info-card-icon {
  font-size: 2.5em;
  margin-bottom: 16px;
  display: block;
}

.info-card-content h3 {
  font-size: 1.2em;
  font-weight: 700;
  color: #1c2534;
  margin: 0 0 16px 0;
  letter-spacing: -0.2px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.6);
  border-radius: 8px;
  border: 1px solid rgba(34, 139, 230, 0.1);
}

.price-duration {
  font-weight: 600;
  color: #1c2534;
  font-size: 1.05em;
}

.price-amount {
  font-weight: 700;
  color: #228be6;
  font-size: 1.1em;
  letter-spacing: 0.2px;
}

.benefit-list,
.warning-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-list li,
.warning-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(34, 139, 230, 0.1);
  color: #5a6d92;
  font-weight: 500;
}

.benefit-list li:last-child,
.warning-list li:last-child {
  border-bottom: none;
}

.benefit-list li:before {
  content: "✓ ";
  color: #35b06b;
  font-weight: 700;
  margin-right: 8px;
}

.warning-list li:before {
  content: "⚠ ";
  color: #ff8c42;
  font-weight: 700;
  margin-right: 8px;
}

/* LOKACIJA KARTA - NOVO UREĐENA */
.location-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.location-title {
  text-align: center;
  font-size: 1.4em;
  font-weight: 700;
  color: #1c2534;
  margin: 0;
  letter-spacing: 0.5px;
}

.maps-embed-sidebar {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(34, 139, 230, 0.1);
  margin-bottom: 0;
}

.location-contact-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.location-address-info {
  text-align: left;
  color: #334155;
  font-size: 1.05em;
  line-height: 1.5;
}

.location-address-info strong {
  color: #0f172a;
  font-weight: 700;
}

.location-phone-info {
  text-align: right;
  color: #228be6;
  font-size: 1.1em;
  font-weight: 700;
}

/* GOOGLE MAPS GUMB U SIDEBAR-U */
.maps-button-sidebar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #228be6 0%, #5fd5fa 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: 0.1px;
  box-shadow: 0 3px 12px rgba(34, 139, 230, 0.15);
  transition: all 0.3s ease;
  align-self: center;
}

.maps-button-sidebar:hover {
  background: linear-gradient(135deg, #1765b1 0%, #4bc8f0 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 139, 230, 0.25);
  text-decoration: none;
  color: #fff;
}

.maps-button-sidebar .maps-icon,
.maps-button-sidebar .maps-arrow {
  font-size: 1em;
  flex-shrink: 0;
}

.maps-button-sidebar .maps-text {
  flex: 1;
  text-align: center;
}

/* KOMPAKTNA INFO SEKCIJA */
.drom-info-compact {
  background: linear-gradient(135deg, #f8fafe 0%, #e7f3fe 100%);
  padding: 60px 20px;
}

.info-compact-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.info-compact-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #16305d;
  margin-bottom: 50px;
}

.info-compact-title span {
  color: #228be6;
}

.info-compact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.info-compact-item {
  background: white;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(34, 139, 230, 0.08);
  border: 1px solid #e9f1fb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.info-compact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(34, 139, 230, 0.15);
}

.info-compact-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.info-compact-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #16305d;
  margin: 0 0 8px 0;
}

.info-compact-item p {
  font-size: 0.95rem;
  color: #5a6d92;
  margin: 0;
  line-height: 1.5;
}

/* RESPONSIVE COMPACT INFO */
@media screen and (max-width: 768px) {
  .info-compact-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .info-compact-item {
    padding: 25px 15px;
  }
  
  .info-compact-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}

/* UKLONI DUPLI NASLOV ZA KOMENTAR */
.section-title:contains("💬 Dodatne napomene"),
h3:contains("💬 Dodatne napomene") {
  display: none !important;
}

/* KONTAKT SEKCIJA */
.contact-section {
  background: #fff;
  padding: 60px 20px;
  border-top: 1px solid #e9f1fb;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-header {
  margin-bottom: 40px;
}

.contact-icon {
  font-size: 3em;
  display: block;
  margin-bottom: 16px;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1c2534;
  margin: 0;
  letter-spacing: -0.5px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.contact-item {
  background: #f7fafd;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e9f1fb;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-label {
  font-weight: 600;
  color: #5a6d92;
  flex-shrink: 0;
}

.contact-value {
  font-weight: 700;
  color: #1c2534;
  font-size: 1.1em;
}

/* FOOTER */
.main-footer {
  background: #1c2534;
  padding: 40px 20px;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-text {
  color: #8fa4c4;
}

.footer-text p {
  margin: 8px 0;
  font-size: 1.05em;
}

/* KONTAKT GUMB - uklonjeno zbog floating contacts */

/* RESPONZIVNI DIZAJN */
@media screen and (max-width: 1200px) {
  .reservation-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .drom-info-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .maps-button-sidebar {
    font-size: 0.85em;
    padding: 9px 14px;
    gap: 5px;
    margin: 0 14px;
  }
}

@media screen and (max-width: 968px) {
  .main-title {
    font-size: 2rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .form-grid-compact {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .language-selector {
    position: static;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .date-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .radio-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .location-contact-info {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
  
  .location-address-info,
  .location-phone-info {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .reservation-section {
    padding: 20px 16px;
  }
  
  .enhanced-booking-form {
    padding: 24px;
  }
  
  .form-card-header {
    padding: 24px;
  }
  
  .main-title {
    font-size: 1.8rem;
  }
  
  .header-subtitle {
    font-size: 1.1em;
  }
  
  .date-inputs {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-button {
    bottom: 20px;
    right: 20px;
    padding: 10px 16px;
    font-size: 0.9em;
    gap: 6px;
  }
  
  .contact-text {
    font-size: 0.85em;
  }

  .maps-embed-sidebar iframe {
    height: 180px;
  }
  
  .maps-button-sidebar {
    font-size: 0.8em;
    padding: 8px 12px;
    gap: 4px;
    margin: 0 12px;
  }
  
  .location-address {
    font-size: 1em;
    text-align: center;
  }
}

@media screen and (max-width: 640px) {
  .main-title {
    font-size: 1.7rem;
  }

  .drom-info {
    padding: 40px 20px;
  }
  
  .drom-info-title {
    font-size: 1.6rem;
  }
  
  .drom-info-box {
    padding: 24px;
  }
  
  .pricing-special {
    padding: 12px;
  }
  
  .pricing-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 6px 0;
  }
  
  .pricing-price {
    font-size: 1.1em;
  }
  
  .contact-section {
    padding: 40px 20px;
  }
  
  .contact-title {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .reservation-section {
    padding: 20px 10px;
  }
  
  .main-title {
    font-size: 1.5rem;
  }
  
  .form-title {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 1.1em;
  }
  
  .enhanced-submit-btn {
    font-size: 1.1em;
    padding: 16px 24px;
  }

  .floating-contacts {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }

  .contact-button, .whatsapp-button {
    padding: 10px 16px;
    font-size: 0.85em;
    gap: 6px;
  }
  
  .contact-text, .whatsapp-text {
    font-size: 0.8em;
  }
  
  .contact-icon, .whatsapp-icon {
    font-size: 1em;
  }

  .faq-section {
    padding: 40px 15px;
  }

  .faq-title {
    font-size: 1.6rem;
  }

  .faq-question {
    padding: 18px;
    font-size: 1rem;
  }

  .scroll-top-btn {
    bottom: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .maps-embed-sidebar iframe {
    height: 150px;
  }
  
  .maps-button-sidebar {
    font-size: 0.75em;
    padding: 7px 10px;
    gap: 3px;
    margin: 0 10px;
  }
  
  .location-address {
    font-size: 0.95em;
  }
}

/* iOS Date Input Fix - Prevent Native Date Picker */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  display: none !important;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-inner-spin-button {
  display: none !important;
}

input[type="date"]::-webkit-clear-button,
input[type="time"]::-webkit-clear-button {
  display: none !important;
}

/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
  input[type="date"],
  input[type="time"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    background: white !important;
    pointer-events: auto !important;
  }
}

/* DODATNI STILOVI ZA ANIMACIJE */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-section {
  animation: slideIn 0.6s ease-out forwards;
}

.form-section:nth-child(1) { animation-delay: 0.1s; }
.form-section:nth-child(2) { animation-delay: 0.2s; }
.form-section:nth-child(3) { animation-delay: 0.3s; }
.form-section:nth-child(4) { animation-delay: 0.4s; }
.form-section:nth-child(5) { animation-delay: 0.5s; }

/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

/* SUCCESS AND ERROR MESSAGE STYLING */
.success-message {
  color: #28a745 !important;
  font-weight: bold !important;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
  padding: 16px 20px;
  border-radius: 12px;
  border: 2px solid rgba(40, 167, 69, 0.3);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.15);
  text-align: center;
  font-size: 1.1em;
  margin: 16px 0;
  position: relative;
  overflow: hidden;
  animation: successPulse 0.6s ease-out;
}

.success-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 1.5s ease-out;
}

.error-message {
  color: #dc3545 !important;
  font-weight: normal !important;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
  padding: 16px 20px;
  border-radius: 12px;
  border: 2px solid rgba(220, 53, 69, 0.3);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.15);
  text-align: center;
  font-size: 1.1em;
  margin: 16px 0;
}

@keyframes successPulse {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* ACCESSIBILITY IMPROVEMENTS */
.enhanced-submit-btn:focus,
input:focus,
textarea:focus {
  outline: 2px solid #228be6;
  outline-offset: 2px;
}

.radio-card:focus-within .radio-card-content {
  border-color: #1971c2;
  box-shadow: 0 0 0 2px rgba(25, 113, 194, 0.2);
}

/* FAQ SEKCIJA */
.faq-section {
  background: #f8fafe;
  padding: 80px 20px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 20px;
}

.faq-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #16305d;
  margin: 0;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(34, 139, 230, 0.08);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(34, 139, 230, 0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #16305d;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #228be6;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: #228be6;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 24px;
  margin: 0;
  color: #5a6d92;
  line-height: 1.6;
}

/* FLOATING KONTAKT GUMBOVI */
.floating-contacts {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.contact-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #228be6;
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9em;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(34, 139, 230, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-button:hover {
  background: #1971c2;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 139, 230, 0.4);
  color: white;
}

.contact-icon {
  font-size: 1.2em;
  transform: translateY(7px);
}

.whatsapp-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9em;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
  font-size: 1.2em;
}

/* SCROLL TO TOP GUMB */
.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: #228be6;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(34, 139, 230, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  z-index: 1000;
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: #1971c2;
  transform: translateY(-2px);
}

/* LOADING SPINNER */
.loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-spinner.show {
  display: flex;
}

.spinner-circle {
  width: 60px;
  height: 60px;
  border: 4px solid #e9f1fb;
  border-top: 4px solid #228be6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-spinner p {
  color: #16305d;
  font-weight: 600;
  font-size: 1.1rem;
}

/* FORM RESET BUTTON */
.form-reset-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: #ff6b6b;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
  z-index: 10;
}

.form-reset-btn:hover {
  background: #ff5252;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.reservation-form-card {
  position: relative;
}

/* PRINT STILOVI */
@media print {
  .background-decor,
  .enhanced-submit-btn,
  .form-messages,
  .floating-contacts,
  .scroll-top-btn,
  .loading-spinner {
    display: none;
  }
  
  .reservation-content {
    grid-template-columns: 1fr;
  }
  
  .reservation-form-card,
  .info-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
  
  .faq-answer {
    max-height: none !important;
  }
  
  .faq-item.active .faq-answer {
    max-height: none !important;
  }
}

/* Mobile Calendar Styles */
.mobile-calendar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.mobile-calendar {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 380px;
  overflow: hidden;
}

.mobile-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 15px;
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.calendar-month-year-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 180px;
}

.calendar-month-year {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 4px 0;
  text-align: center;
}

.calendar-year-selector {
  margin-top: 2px;
}

.year-select {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  outline: none;
  transition: all 0.2s;
}

.year-select:hover {
  background: rgba(255, 255, 255, 0.25);
}

.year-select option {
  background: #1976d2;
  color: white;
}

.calendar-nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.2rem;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 36px;
  font-weight: bold;
  flex-shrink: 0;
}

.calendar-nav-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid #dee2e6;
}

.calendar-weekday {
  padding: 14px 8px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #495057;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  background: #f1f3f4;
  padding: 8px;
}

.calendar-day {
  background: white;
  border: 1px solid #e1e5e9;
  padding: 16px 8px;
  text-align: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  color: #333;
  border-radius: 8px;
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-day:hover:not(.disabled) {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-color: #2196f3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
}

.calendar-day.selected {
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: white;
  font-weight: 700;
  border-color: #1565c0;
  box-shadow: 0 4px 16px rgba(33, 150, 243, 0.4);
  transform: scale(1.05);
}

.calendar-day.today {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  color: #ef6c00;
  font-weight: 700;
  border-color: #ff9800;
  box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

.calendar-day.today.selected {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  color: white;
}

.calendar-day.disabled {
  color: #bbb;
  cursor: not-allowed;
  background: #f8f9fa;
  border-color: #e9ecef;
}

.calendar-day.other-month {
  color: #ccc;
  background: #fafafa;
}

.calendar-actions {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-top: 1px solid #dee2e6;
}

.calendar-btn {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calendar-cancel {
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  color: white;
  border: 2px solid transparent;
}

.calendar-cancel:hover {
  background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(108, 117, 125, 0.3);
}

.calendar-confirm {
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: white;
  border: 2px solid transparent;
}

.calendar-confirm:hover {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(33, 150, 243, 0.4);
}

/* Desktop calendar improvements */
@media (min-width: 769px) {
  .mobile-calendar {
    max-width: 420px;
  }
  
  .calendar-day {
    padding: 14px 8px;
  }
  
  .calendar-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
  .mobile-calendar-overlay {
    padding: 0;
  }
  
  .mobile-calendar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    max-width: calc(100vw - 30px);
    width: 95%;
    min-width: 320px;
  }
  
  .calendar-day {
    padding: 16px 4px;
    font-size: 1rem;
    min-height: 48px;
  }
  
  .calendar-weekday {
    padding: 12px 4px;
    font-size: 0.8rem;
  }
  
  .mobile-calendar-header {
    padding: 14px 10px;
  }
  
  .calendar-nav-btn {
    font-size: 1.1rem;
    padding: 6px 8px;
    min-width: 32px;
  }
  
  .calendar-month-year-container {
    max-width: 140px;
  }
}

/* Hide native calendar and time picker indicators */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button,
input[type="time"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-clear-button {
  opacity: 0;
  cursor: pointer;
}

/* Custom Time Picker Styles */
.custom-time-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.custom-time-picker {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.time-picker-header {
  padding: 20px;
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: white;
  text-align: center;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.time-picker-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.time-picker-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background: #f8f9fa;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-height: 300px;
  overflow-y: auto;
  padding: 8px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e1e5e9;
}

.time-slot {
  background: white;
  border: 2px solid #e1e5e9;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  color: #333;
  border-radius: 8px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.time-slot:hover {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-color: #2196f3;
  transform: scale(1.02);
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.2);
}

.time-slot.selected {
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: white;
  font-weight: 700;
  border-color: #1565c0;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
  transform: scale(1.05);
}

.time-slot.disabled {
  background: #f5f5f5;
  color: #9e9e9e;
  border-color: #e0e0e0;
  cursor: not-allowed;
  opacity: 0.5;
}

.time-slot.disabled:hover {
  background: #f5f5f5;
  border-color: #e0e0e0;
  transform: none;
  box-shadow: none;
}

.time-picker-actions {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-top: 1px solid #dee2e6;
}

.time-btn {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.time-cancel {
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  color: white;
  border: 2px solid transparent;
}

.time-cancel:hover {
  background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(108, 117, 125, 0.3);
}

.time-confirm {
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: white;
  border: 2px solid transparent;
}

.time-confirm:hover {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(33, 150, 243, 0.4);
}

/* Mobile adjustments for time picker */
@media (max-width: 768px) {
  .custom-time-overlay {
    padding: 0;
  }
  
  .custom-time-picker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    max-width: calc(100vw - 40px);
    width: 85%;
  }
  
  .time-grid {
    grid-template-columns: repeat(3, 1fr);
    max-height: 250px;
  }
  
  .time-slot {
    padding: 16px 8px;
    font-size: 1.1rem;
    min-height: 52px;
  }
}

/* SEO SEKCIJA */
.seo-section {
  background: linear-gradient(135deg, #f8fbff 0%, #e7f3ff 100%);
  padding: 60px 20px;
  margin: 40px 0;
  border-top: 1px solid #e0e8f3;
  border-bottom: 1px solid #e0e8f3;
}

.seo-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.seo-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #16305d;
  margin-bottom: 30px;
  text-align: center;
}

.seo-content {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(34, 139, 230, 0.1);
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.seo-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2c3e50;
  margin-bottom: 20px;
}

.seo-content h3 {
  color: #16305d;
  font-size: 1.4rem;
  margin: 30px 0 20px 0;
  font-weight: 600;
}

.seo-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.seo-benefits li {
  padding: 12px 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #2c3e50;
  border-bottom: 1px solid #f0f5fa;
}

.seo-benefits li:last-child {
  border-bottom: none;
}

.seo-cta {
  background: linear-gradient(135deg, #228be6, #1976d2);
  color: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  margin-top: 30px;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .seo-title {
    font-size: 1.8rem;
  }
  
  .seo-content {
    padding: 25px;
    margin: 0 10px;
  }
}
