* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  line-height: 1.6;
  background: #fafafa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.header {
  position: sticky;
  top: 0;
  background: #0d1b2a;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.logo span { color: #f4a261; }

.nav ul {
  display: flex;
  gap: 30px;
}

.nav a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover { color: #f4a261; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.hero {
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
  color: #fff;
  padding: 100px 0 80px;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text { flex: 1; min-width: 300px; }

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #cbd5e1;
}

.hero-image { flex: 1; min-width: 300px; }
.hero-image img { border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.4); }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, opacity 0.2s;
}

.btn-primary {
  background: #f4a261;
  color: #0d1b2a;
}

.btn-primary:hover { transform: translateY(-2px); opacity: 0.9; }

section { padding: 80px 0; }

h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  color: #0d1b2a;
}

.section-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 50px;
}

.grid {
  display: grid;
  gap: 30px;
}

.usluge-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s;
}

.card:hover { transform: translateY(-6px); }

.icon { font-size: 40px; margin-bottom: 15px; }

.card h3 { margin-bottom: 10px; color: #0d1b2a; }

.o-nama { background: #fff; }

.o-nama-inner {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.o-nama-image, .o-nama-text { flex: 1; min-width: 300px; }

.o-nama-image img { border-radius: 12px; }

.o-nama-list li { margin: 10px 0; color: #333; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  border-radius: 10px;
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.recenzije { background: #0d1b2a; color: #fff; }
.recenzije h2 { color: #fff; }

.recenzije-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.review-card {
  background: #1b263b;
  padding: 30px;
  border-radius: 12px;
}

.review-card p { margin-bottom: 15px; font-style: italic; }
.review-card span { color: #f4a261; font-weight: 600; }

.kontakt-inner {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.kontakt-info, .kontakt-form { flex: 1; min-width: 300px; }

.kontakt-info ul { margin: 20px 0; }
.kontakt-info li { margin: 10px 0; }

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  background: #0d1b2a;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.kontakt-form input, .kontakt-form textarea {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
}

.form-status { color: #2a9d8f; font-weight: 600; }

.footer {
  background: #0d1b2a;
  color: #cbd5e1;
  padding: 50px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 30px;
}

.footer h3 { color: #fff; margin-bottom: 10px; }

.footer-links, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #1b263b;
  font-size: 14px;
}

.privacy-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.privacy-section h1 { margin-bottom: 20px; color: #0d1b2a; }
.privacy-section h2 { text-align: left; font-size: 22px; margin-top: 30px; margin-bottom: 10px; }
.privacy-section p, .privacy-section li { color: #333; margin-bottom: 10px; }
.privacy-section ul { padding-left: 20px; }
.privacy-section .btn { margin-top: 30px; }

@media (max-width: 768px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #0d1b2a; }
  .nav.active { display: block; }
  .nav ul { flex-direction: column; padding: 20px; gap: 15px; }
  .burger { display: flex; }
  .hero-text h1 { font-size: 30px; }
}
