/* =============================================================
   Villa AdriaStar – Glavni CSS
   ============================================================= */
:root {
  --navy: #1a3a5c;
  --navy-deep: #0d2038;
  --gold: #c9a84c;
  --gold-light: #e8d5a0;
  --sand: #f5f0e8;
  --sand-dark: #e8e0d0;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #4a5568;
  --text-light: #718096;
  --sea: #2980b9;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; transition: all .4s; background: rgba(13,32,56,.75); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
nav.scrolled { background: rgba(13,32,56,.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: .7rem 2rem; box-shadow: 0 2px 20px rgba(0,0,0,.3); }
.logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); letter-spacing: 2px; text-decoration: none; }
.logo span { color: var(--gold); font-style: italic; }
.nav-links { display: flex; gap: 1.8rem; align-items: center; list-style: none; }
.nav-links a { color: rgba(255,255,255,.9); text-decoration: none; font-size: .85rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; transition: color .3s; }
.nav-links a:hover { color: var(--gold); }
.lang-select { background: transparent; border: 1px solid rgba(255,255,255,.4); color: var(--white); padding: .3rem .7rem; border-radius: 4px; font-size: .8rem; cursor: pointer; font-family: inherit; }
.lang-select option { background: var(--navy); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; z-index: 1001; position: relative; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

/* HERO */
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0d2038 0%, #1a3a5c 40%, #2980b9 100%); background-size: cover; background-position: center; }
.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }

.hero-overlay { position: absolute; inset: 0; background: rgba(10,25,47,.45); }
.wave-container { position: absolute; bottom: 0; left: 0; right: 0; height: 120px; overflow: hidden; }
.wave-container svg { width: 100%; height: 100%; }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 2rem; }
.hero-eyebrow { font-size: .8rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 6vw, 5rem); color: var(--white); line-height: 1.1; margin-bottom: 1rem; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 2.5rem; font-weight: 300; line-height: 1.7; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-bottom: 2.5rem; }
.badge { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: var(--white); padding: .4rem 1rem; border-radius: 20px; font-size: .8rem; letter-spacing: .5px; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn-primary { background: var(--gold); color: var(--navy-deep); padding: .9rem 2.2rem; border-radius: 4px; font-weight: 600; text-decoration: none; font-size: .9rem; letter-spacing: .5px; transition: all .3s; border: none; cursor: pointer; font-family: inherit; display: inline-block; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,.4); }
.btn-outline { background: transparent; color: var(--white); padding: .9rem 2.2rem; border-radius: 4px; font-weight: 500; text-decoration: none; font-size: .9rem; letter-spacing: .5px; transition: all .3s; border: 2px solid rgba(255,255,255,.5); cursor: pointer; font-family: inherit; display: inline-block; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* STATS */
.stats-bar { background: var(--navy); padding: 2rem; display: flex; justify-content: center; flex-wrap: wrap; }
.stat-item { text-align: center; padding: 1rem 3rem; border-right: 1px solid rgba(255,255,255,.15); color: var(--white); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); display: block; }
.stat-label { font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: .3rem; }

/* SECTIONS */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: .75rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); line-height: 1.15; margin-bottom: 1.5rem; }
.section-title em { font-style: italic; color: var(--sea); }
.section-desc { font-size: 1rem; color: var(--text-mid); line-height: 1.8; max-width: 600px; }

/* VILLA */
.villa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 4rem; }
.villa-img-block { position: relative; }
.villa-main-img { width: 100%; height: 500px; object-fit: cover; border-radius: 4px; display: block; }
.img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #1a3a5c, #2980b9); color: rgba(255,255,255,.5); font-size: 1rem; border-radius: 4px; flex-direction: column; gap: .5rem; }
.villa-img-accent { position: absolute; bottom: -2rem; right: -2rem; width: 200px; height: 140px; background: linear-gradient(135deg, #c9a84c, #e8d5a0); border-radius: 4px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 1rem; }
.accent-text { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy-deep); line-height: 1.4; }
.features-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.feature-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; background: var(--sand); border-radius: 4px; border-left: 3px solid var(--gold); }
.feature-icon { font-size: 1.4rem; min-width: 2rem; text-align: center; }
.feature-text strong { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: .2rem; }
.feature-text span { font-size: .8rem; color: var(--text-light); }

/* ROOMS */
.rooms-section { background: var(--sand); }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.room-card { background: var(--white); border-radius: 4px; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.room-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,58,92,.15); }
.room-img { height: 200px; background: linear-gradient(135deg, #1a3a5c 0%, #2980b9 100%); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.room-img img { width: 100%; height: 100%; object-fit: cover; }
.room-num { position: absolute; top: 1rem; left: 1rem; background: var(--gold); color: var(--navy-deep); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; z-index: 1; }
.room-body { padding: 1.4rem; }
.room-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: .5rem; }
.room-desc { font-size: .82rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; }
.room-amenities { display: flex; flex-wrap: wrap; gap: .4rem; }
.amenity-tag { background: var(--sand); color: var(--text-mid); padding: .2rem .6rem; border-radius: 12px; font-size: .72rem; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 250px 250px; gap: .8rem; margin-top: 3rem; }
.gallery-item:first-child { grid-column: 1 / 3; }
.gallery-item:nth-child(4) { grid-row: 1 / 3; }
.gallery-item { overflow: hidden; border-radius: 4px; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #1a3a5c, #2980b9); color: rgba(255,255,255,.4); font-size: 2rem; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(26,58,92,0); transition: background .3s; display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-overlay { background: rgba(26,58,92,.3); }
.gallery-icon { color: var(--white); font-size: 2rem; opacity: 0; transition: opacity .3s; }
.gallery-item:hover .gallery-icon { opacity: 1; }

/* CALENDAR */
.calendar-section { background: var(--navy-deep); }
.calendar-section .section-title { color: var(--white); }
.cal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
.cal-box { background: rgba(255,255,255,.06); border-radius: 4px; padding: 2rem; border: 1px solid rgba(255,255,255,.1); }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.cal-title { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.2rem; }
.cal-nav { display: flex; gap: .5rem; }
.cal-nav button { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); color: var(--white); width: 30px; height: 30px; border-radius: 4px; cursor: pointer; font-size: 1rem; transition: background .2s; }
.cal-nav button:hover { background: rgba(255,255,255,.2); }
.cal-days-header { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: .5rem; }
.cal-day-name { text-align: center; font-size: .7rem; color: rgba(255,255,255,.4); letter-spacing: 1px; text-transform: uppercase; padding: .4rem 0; }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-day { text-align: center; padding: .5rem .2rem; font-size: .82rem; border-radius: 3px; cursor: pointer; transition: opacity .15s; color: rgba(255,255,255,.8); position: relative; min-height: 2rem; line-height: 2rem; }
.cal-day.empty { pointer-events: none; opacity: 0; }
.cal-day.past { opacity: .35; cursor: default; }
.cal-day.available:hover { background: rgba(201,168,76,.25) !important; color: var(--gold); }
.cal-day.today { outline: 2px solid var(--gold); outline-offset: -1px; color: var(--gold); font-weight: 700; }
.cal-day[title="Zauzeto"], .cal-day[title="Booked"], .cal-day[title="Belegt"] { cursor: not-allowed; color: rgba(255,255,255,.5); }
.cal-day[title="Odlazak"], .cal-day[title="Check-out"], .cal-day[title="Abreise"],
.cal-day[title="Dolazak"], .cal-day[title="Check-in"], .cal-day[title="Anreise"] { cursor: default; }
.cal-legend { display: flex; gap: 1.5rem; margin-top: 1rem; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: .4rem; font-size: .75rem; color: rgba(255,255,255,.6); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.prices-box { padding: 2rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 4px; }
.price-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.price-table th { text-align: left; color: var(--gold); font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.price-table td { padding: .7rem 0; font-size: .9rem; color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.06); }
.price-table td:last-child { text-align: right; font-weight: 600; color: var(--gold); }
.price-ical { display: inline-flex; align-items: center; gap: .5rem; background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.4); color: var(--gold); padding: .5rem 1rem; border-radius: 4px; text-decoration: none; font-size: .82rem; margin-top: .5rem; transition: background .3s; }
.price-ical:hover { background: rgba(201,168,76,.25); }

/* AMENITIES */
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.amenity-card { text-align: center; padding: 2rem 1rem; border: 1px solid var(--sand-dark); border-radius: 4px; transition: border-color .3s, box-shadow .3s; }
.amenity-card:hover { border-color: var(--gold); box-shadow: 0 8px 30px rgba(201,168,76,.1); }
.amenity-emoji { font-size: 2.2rem; margin-bottom: 1rem; }
.amenity-name { font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: .3rem; }
.amenity-detail { font-size: .78rem; color: var(--text-light); }

/* LOCATION */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.location-map { border-radius: 4px; height: 400px; overflow: hidden; }
.distances { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.distance-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: var(--sand); border-radius: 4px; }
.distance-icon { font-size: 1.5rem; }
.distance-info strong { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); }
.distance-info span { font-size: .8rem; color: var(--text-light); }

/* FAQ */
.faq-section { background: var(--sand); }
.faq-list { margin-top: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item { border-bottom: 1px solid var(--sand-dark); overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; padding: 1.4rem 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: inherit; font-size: .95rem; font-weight: 600; color: var(--navy); text-align: left; }
.faq-arrow { font-size: 1.2rem; transition: transform .3s; color: var(--gold); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer p { padding: 0 0 1.4rem; font-size: .88rem; color: var(--text-mid); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 300px; }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.review-card { background: var(--white); border: 1px solid var(--sand-dark); border-radius: 4px; padding: 1.8rem; }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: .8rem; }
.review-text { font-size: .88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.reviewer { font-size: .8rem; font-weight: 600; color: var(--navy); }
.reviewer span { color: var(--text-light); font-weight: 400; }

/* BOOKING */
.booking-section { background: var(--navy); position: relative; overflow: hidden; }
.booking-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(41,128,185,.3), transparent 70%); pointer-events: none; }
.booking-section .section-title { color: var(--white); }
.booking-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; margin-top: 3rem; align-items: start; }
.booking-form { background: var(--white); border-radius: 4px; padding: 2.5rem; }
.form-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: .5rem; }
.form-sub { font-size: .82rem; color: var(--text-light); margin-bottom: 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .78rem; font-weight: 600; color: var(--navy); letter-spacing: .5px; margin-bottom: .4rem; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--sand-dark); border-radius: 4px; font-family: inherit; font-size: .88rem; color: var(--text-dark); background: var(--white); transition: border-color .3s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 1rem; background: var(--gold); color: var(--navy-deep); border: none; border-radius: 4px; font-family: inherit; font-weight: 600; font-size: .9rem; cursor: pointer; transition: background .3s; letter-spacing: .5px; }
.form-submit:hover { background: var(--gold-light); }
.contact-info { color: var(--white); }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-icon { font-size: 1.3rem; min-width: 2rem; }
.contact-detail strong { display: block; font-size: .82rem; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: .2rem; }
.contact-detail a, .contact-detail span { color: rgba(255,255,255,.85); text-decoration: none; font-size: .9rem; }
.contact-detail a:hover { color: var(--gold); }

/* NEWSLETTER */
.newsletter { background: var(--gold); padding: 4rem 2rem; text-align: center; }
.newsletter h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--navy-deep); margin-bottom: .5rem; }
.newsletter p { color: rgba(26,32,56,.7); margin-bottom: 1.5rem; font-size: .95rem; }
.newsletter-form { display: flex; gap: 1rem; max-width: 500px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-form input { flex: 1; padding: .9rem 1.2rem; border: none; border-radius: 4px; font-family: inherit; font-size: .9rem; min-width: 220px; outline: none; }
.newsletter-form button { background: var(--navy); color: var(--white); padding: .9rem 1.8rem; border: none; border-radius: 4px; font-family: inherit; font-weight: 600; cursor: pointer; transition: background .3s; font-size: .9rem; }
.newsletter-form button:hover { background: var(--navy-deep); }

/* FOOTER */
footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding: 4rem 2rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.footer-brand .logo { font-size: 1.2rem; display: block; margin-bottom: .8rem; }
.footer-brand p { font-size: .82rem; line-height: 1.7; max-width: 250px; }
.footer-col h4 { color: var(--white); font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .85rem; transition: color .3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .78rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: 1.1rem; transition: color .3s; }
.social-links a:hover { color: var(--gold); }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.95); z-index: 9998; display: none; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; color: var(--white); font-size: 2rem; cursor: pointer; background: none; border: none; line-height: 1; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); color: var(--white); font-size: 2rem; background: rgba(255,255,255,.1); border: none; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .3s; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.2); }

/* POPUP */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(4px); }
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup-box { background: var(--white); border-radius: 4px; max-width: 500px; width: 90%; padding: 3rem; position: relative; transform: scale(.95); transition: transform .3s; }
.popup-overlay.active .popup-box { transform: scale(1); }
.popup-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-light); }
.popup-box h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: .5rem; }
.popup-box p { color: var(--text-mid); font-size: .88rem; line-height: 1.7; }

/* SCROLL TOP */
.scroll-top { position: fixed; bottom: 2rem; right: 2rem; z-index: 7999; background: var(--gold); color: var(--navy-deep); border: none; border-radius: 50%; width: 40px; height: 40px; font-size: 1.1rem; cursor: pointer; opacity: 0; pointer-events: none; transition: opacity .3s; box-shadow: 0 2px 12px rgba(0,0,0,.2); }
.scroll-top.visible { opacity: 1; pointer-events: all; }

/* SHIMMER */
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.img-shimmer { background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.1) 50%, rgba(255,255,255,0) 100%); background-size: 200% 100%; animation: shimmer 2s infinite; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .villa-grid, .booking-grid, .cal-grid, .location-grid { grid-template-columns: 1fr; gap: 2rem; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; height: auto; }
  .gallery-item:first-child, .gallery-item:nth-child(4) { grid-column: auto; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; position: fixed; inset: 0; background: rgba(10,25,47,.98); flex-direction: column; align-items: center; justify-content: center; gap: 2rem; font-size: 1.1rem; z-index: 1002; }
  .nav-links.open { display: flex; }
  .rooms-grid, .reviews-grid, .amenities-grid { grid-template-columns: 1fr; }
  .stats-bar { gap: 0; }
  .stat-item { padding: .8rem 1.5rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); width: 50%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .villa-img-accent { display: none; }
  section { padding: 4rem 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* =====================================================
   HERO SEARCH BAR
   ===================================================== */
.hero-search {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 2.5rem;
  max-width: 780px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}

.hs-field {
  flex: 1;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  min-width: 0;
}

.hs-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.55);
  display: block;
  white-space: nowrap;
}

.hs-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  width: 100%;
  padding: 0;
  cursor: pointer;
  /* Webkit date picker colours */
  color-scheme: dark;
}
.hs-input::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(.5);
  cursor: pointer;
}
.hs-input::placeholder { color: rgba(255,255,255,.35); }

.hs-divider {
  width: 1px;
  background: rgba(255,255,255,.18);
  margin: .6rem 0;
  flex-shrink: 0;
}

.hs-btn {
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  padding: 0 1.8rem;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: background .2s, transform .15s;
  white-space: nowrap;
  letter-spacing: .3px;
  flex-shrink: 0;
}
.hs-btn:hover { background: var(--gold-light); }
.hs-btn:active { transform: scale(.97); }

/* Rezultat pretrage */
.hs-result {
  margin-top: 1rem;
  max-width: 780px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  overflow: hidden;
  animation: fadeInUp .3s ease;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hs-result-inner {
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hs-result.available   { background: rgba(39,174,96,.18); border: 1px solid rgba(39,174,96,.4); }
.hs-result.unavailable { background: rgba(231,76,60,.18); border: 1px solid rgba(231,76,60,.4); }
.hs-result.loading     { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); }

.hs-result-icon { font-size: 1.6rem; flex-shrink: 0; }
.hs-result-text { flex: 1; }
.hs-result-text strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: .2rem; }
.hs-result-text span   { color: rgba(255,255,255,.7); font-size: .85rem; }
.hs-result-nights { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); padding: .3rem .8rem; border-radius: 20px; font-size: .8rem; font-weight: 600; white-space: nowrap; }
.hs-result-price { color: var(--gold); font-size: 1.1rem; font-weight: 700; white-space: nowrap; }

.hs-result-cta {
  background: var(--gold);
  color: var(--navy-deep);
  padding: .6rem 1.4rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.hs-result-cta:hover { background: var(--gold-light); }
/* Price box u hero search rezultatu */
.hs-price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 6px;
  padding: .6rem 1.1rem;
  text-align: center;
  flex-shrink: 0;
  gap: .15rem;
}
.hs-price-per-night {
  font-size: .78rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}
.hs-price-total {
  display: flex;
  align-items: baseline;
  gap: .35rem;
}
.hs-price-total-label {
  font-size: .7rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.hs-price-total-val {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hs-price-note {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
}
@media (max-width: 700px) {
  .hs-price-box { flex-direction: row; gap: .8rem; align-items: center; width: 100%; justify-content: space-between; }
  .hs-price-total { flex-direction: column; gap: 0; align-items: flex-end; }
}


/* Responsive */
@media (max-width: 700px) {
  .hero-search {
    flex-direction: column;
    border-radius: 8px;
  }
  .hs-divider { width: auto; height: 1px; margin: 0 1rem; }
  .hs-guests-field { min-width: 0; }
  .hs-btn { padding: 1rem; justify-content: center; border-radius: 0; }
  .hs-result-inner { flex-direction: column; align-items: flex-start; gap: .6rem; }
}

/* =====================================================
   SLOBODNI KRATKI TERMINI
   ===================================================== */
.free-gaps-section {
  background: var(--sand);
  padding: 5rem 2rem;
}

.free-gaps-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 780px;
}

.gap-card {
  background: var(--white);
  border: 1.5px solid var(--sand-dark);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.2rem;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.gap-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold);
  border-radius: 0;
}
.gap-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(201,168,76,.15);
  transform: translateX(3px);
}

.gap-badge {
  background: #dcf0e8;
  color: #0a6640;
  font-size: .68rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.gap-nights {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 600;
  white-space: nowrap;
  min-width: 80px;
}

.gap-dates {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.gap-date-block {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  min-width: 0;
}

.gap-date-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-light);
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.gap-date-val {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.gap-arrow {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.gap-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .1rem;
  padding: 0 .5rem;
  border-left: 1px solid var(--sand-dark);
  flex-shrink: 0;
}

.gap-price-total {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
}

.gap-price-night {
  font-size: .72rem;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
}

.gap-cta {
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  border-radius: 4px;
  padding: .6rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}
.gap-cta:hover { background: var(--gold-light); }

/* Responsive */
@media (max-width: 768px) {
  .gap-card {
    grid-template-columns: 1fr;
    gap: .8rem;
    padding: 1rem 1rem 1rem 1.4rem;
  }
  .gap-card::before { width: 3px; }
  .gap-nights { font-size: 1.3rem; }
  .gap-dates { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .gap-arrow { display: none; }
  .gap-price { align-items: flex-start; border-left: none; padding: 0; border-top: 1px solid var(--sand-dark); padding-top: .5rem; }
  .gap-cta { width: 100%; text-align: center; }
}

/* ===== iCAL LINK BOX ===== */
.ical-link-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  margin-top: .8rem;
}
.ical-link-label {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .5rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: .3px;
}
.ical-link-row {
  display: flex;
  gap: .5rem;
  align-items: center;
}
.ical-link-input {
  flex: 1;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
  padding: .55rem .8rem;
  color: var(--gold);
  font-family: monospace;
  font-size: .78rem;
  outline: none;
  cursor: pointer;
  min-width: 0;
}
.ical-link-input:focus { border-color: var(--gold); }
.ical-copy-btn {
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  border-radius: 4px;
  padding: .55rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}
.ical-copy-btn:hover { background: var(--gold-light); }
.ical-copy-btn.copied {
  background: #27ae60;
  color: #fff;
}
.ical-sub-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: rgba(255,255,255,.55);
  font-size: .72rem;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 3px;
  padding: .25rem .6rem;
  transition: color .2s, border-color .2s;
}
.ical-sub-link:hover {
  color: var(--gold);
  border-color: rgba(201,168,76,.4);
}
@media (max-width: 600px) {
  .ical-link-row { flex-direction: column; align-items: stretch; }
  .ical-copy-btn { width: 100%; text-align: center; }
}

/* ===== DRAG KALENDAR ZA GOSTE ===== */
.cal-days { user-select: none; -webkit-user-select: none; }
.cal-day { cursor: default; }
.cal-day.available { cursor: crosshair; }
.cal-day.available:active { background: rgba(201,168,76,.4) !important; }
.cal-drag-hint {
  text-align: center;
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  font-family: 'Inter', sans-serif;
  margin-top: .8rem;
  padding: .4rem;
  transition: color .3s;
}