/* ========== RESET & GLOBAL STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: #050505;
  color: #f0f0f0;
  scroll-behavior: smooth;
  line-height: 1.5;
}

/* Custom premium scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #c7a43b;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e0b84d;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Selection color */
::selection {
  background: #e4c27a;
  color: #0a0a0a;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #e4c27a 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

.section-sub {
  color: #a0a0a8;
  max-width: 650px;
  margin: 0 auto 48px auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ========== NAVIGATION / HEADER ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(199, 164, 59, 0.25);
  padding: 18px 0;
  transition: all 0.3s ease;
}

.nav .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Logo area */
.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  height: 52px;
  width: auto;
  border-radius: 14px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  transition: transform 0.25s ease, filter 0.3s;
}

.logo-img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 6px 16px rgba(228, 194, 122, 0.3));
}

.logo-text {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 25%, #e4c27a 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Navigation links */
.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #e8e8e8;
  transition: 0.25s;
  font-size: 1rem;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #e4c27a, #f5d98a);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-links a:hover {
  color: #e4c27a;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at 70% 20%, #0f0f12 0%, #020202 100%);
  overflow: hidden;
}

/* Animated background pattern */
.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800' opacity='0.05'%3E%3Cpath fill='none' stroke='%23e4c27a' stroke-width='1.2' d='M0 400 L1200 400 M600 0 L600 800 M200 100 L1000 700 M1000 100 L200 700 M300 200 L900 600 M900 200 L300 600'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  animation: slowDrift 40s linear infinite;
}

@keyframes slowDrift {
  0% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(15px) translateY(8px); }
  100% { transform: translateX(0) translateY(0); }
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(228, 194, 122, 0.12);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 60px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e4c27a;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
  border: 0.5px solid rgba(228, 194, 122, 0.35);
  text-transform: uppercase;
}

.hero h2 {
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1.15;
  background: linear-gradient(125deg, #ffffff 20%, #e4c27a 75%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 1.35rem;
  color: #c5c5cf;
  max-width: 580px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.5;
}

/* Button styles */
.btn-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #e4c27a 0%, #d4af5a 100%);
  color: #0a0a0a;
  padding: 14px 38px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(228, 194, 122, 0.25);
  border: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f5d48a 0%, #e4c27a 100%);
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(228, 194, 122, 0.35);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(228, 194, 122, 0.7);
  padding: 14px 38px;
  border-radius: 50px;
  font-weight: 600;
  color: #e4c27a;
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline:hover {
  background: rgba(228, 194, 122, 0.1);
  border-color: #e4c27a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(228, 194, 122, 0.2);
}

/* ========== SERVICES SECTION ========== */
.services {
  padding: 100px 0 80px;
  text-align: center;
}

.services-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.service-card {
  background: linear-gradient(145deg, #111215, #0c0c0f);
  border-radius: 32px;
  padding: 44px 32px;
  flex: 1;
  min-width: 280px;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(50, 50, 60, 0.6);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #e4c27a, #b8943a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(228, 194, 122, 0.4);
  background: #15161c;
  box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.6);
}

.service-icon {
  font-size: 3rem;
  color: #e4c27a;
  margin-bottom: 28px;
}

.service-card h3 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.service-card p {
  color: #b0b0bc;
  line-height: 1.6;
}

/* ========== WHY US / FEATURES ========== */
.why-us {
  padding: 90px 0;
  background: linear-gradient(145deg, #08080a 0%, #0c0c10 100%);
  border-radius: 80px 80px 0 0;
  margin-top: 30px;
}

.features-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  align-items: center;
}

.features-list {
  flex: 1.2;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
  background: rgba(28, 28, 34, 0.5);
  padding: 18px 28px;
  border-radius: 80px;
  backdrop-filter: blur(4px);
  transition: all 0.25s;
  border: 0.5px solid rgba(60, 60, 70, 0.5);
}

.feature-item:hover {
  background: rgba(40, 40, 48, 0.7);
  transform: translateX(6px);
  border-color: rgba(228, 194, 122, 0.3);
}

.feature-item i {
  font-size: 2.2rem;
  color: #e4c27a;
  width: 54px;
  text-align: center;
}

.feature-text h4 {
  font-weight: 700;
  font-size: 1.28rem;
  margin-bottom: 6px;
  color: #fff;
}

.feature-text p {
  color: #acacb8;
  font-size: 0.9rem;
}

.stats-card {
  flex: 0.8;
  background: linear-gradient(135deg, #111216, #0a0a0e);
  padding: 42px 32px;
  border-radius: 48px;
  text-align: center;
  border: 1px solid #2a2a30;
  box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.stats-card:hover {
  transform: scale(1.02);
  border-color: #e4c27a40;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #e4c27a;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
  color: #bcbcc9;
  font-weight: 500;
}

/* ========== CONTACT SECTION (PREMIUM) ========== */
.contact-premium {
  padding: 100px 0;
}

.contact-grid {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  background: #0c0c0e;
  border-radius: 56px;
  padding: 52px 48px;
  border: 1px solid rgba(228, 194, 122, 0.15);
  box-shadow: 0 25px 45px -15px black;
  transition: all 0.3s;
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff, #e4c27a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-detail {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 28px 0;
  font-size: 1rem;
  transition: 0.2s;
}

.contact-detail i {
  font-size: 1.7rem;
  color: #e4c27a;
  width: 44px;
  text-align: center;
}

.contact-detail span {
  color: #d0d0dc;
}

.social-icons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.social-icons i {
  font-size: 28px;
  transition: 0.2s;
  cursor: pointer;
}

.social-icons i:hover {
  transform: translateY(-3px);
  filter: brightness(1.2);
}

.contact-form {
  flex: 1.2;
}

.form-group {
  margin-bottom: 22px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 22px;
  background: #17171d;
  border: 1.5px solid #2a2a32;
  border-radius: 40px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.25s;
  font-family: 'Inter', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #e4c27a;
  background: #1f1f28;
  box-shadow: 0 0 0 3px rgba(228, 194, 122, 0.1);
}

.contact-form textarea {
  border-radius: 28px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(135deg, #e4c27a, #cfb15a);
  color: #0a0a0a;
  padding: 16px 28px;
  font-weight: 800;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.25s;
  width: 100%;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #f5d48a, #e4c27a);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(228, 194, 122, 0.3);
}

/* ========== FOOTER ========== */
footer {
  padding: 48px 0 32px;
  border-top: 1px solid #1f1f28;
  text-align: center;
  background: #050505;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #8a8a96;
  text-decoration: none;
  transition: 0.2s;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #e4c27a;
}

footer p {
  color: #6a6a76;
  font-size: 0.85rem;
}
/* Centriranje partner sekcije */
.partners-section .container {
  text-align: center;
}

.partners-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  background: rgba(228, 194, 122, 0.15);
  border-radius: 20px;
  border: 1px solid rgba(228, 194, 122, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}
/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
  .hero h2 {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 2.3rem;
  }
  
  .contact-grid {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .nav .container {
    flex-direction: column;
    text-align: center;
  }
  
  .nav-links {
    gap: 28px;
  }
  
  .hero {
    min-height: 75vh;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .services-grid {
    flex-direction: column;
  }
  
  .service-card {
    text-align: center;
  }
  
  .features-flex {
    flex-direction: column;
  }
  
  .contact-grid {
    flex-direction: column;
  }
  
  .btn-group {
    justify-content: center;
  }
  
  .feature-item {
    padding: 14px 20px;
  }
}

@media (max-width: 550px) {
  .container {
    width: 92%;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .btn-primary, .btn-outline {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .contact-grid {
    padding: 32px 20px;
  }
  
  .stats-card {
    padding: 28px 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

/* ========== ANIMATIONS & UTILITIES ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card, .feature-item, .stats-card {
  animation: fadeInUp 0.6s ease backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

/* Premium glow effect for interactive elements */
.btn-primary, .submit-btn {
  position: relative;
  overflow: hidden;
}

.btn-primary::after, .submit-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn-primary:active::after, .submit-btn:active::after {
  width: 200px;
  height: 200px;
  opacity: 0;
}
/* ========== GALERIJA ========== */
.gallery-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(145deg, #0a0a0c 0%, #050507 100%);
  margin: 0;
}

.gallery-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.gallery-container {
  width: 80%;
  max-width: 1000px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
}

.gallery-track:active {
  cursor: grabbing;
}

.gallery-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.gallery-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

.gallery-nav {
  background: rgba(228, 194, 122, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #0a0a0a;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav:hover {
  background: #e4c27a;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(228, 194, 122, 0.4);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #333;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #e4c27a;
  width: 30px;
  border-radius: 10px;
}

.dot:hover {
  background: #e4c27a;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .gallery-container {
    width: 90%;
  }
  
  .gallery-slide img {
    height: 300px;
  }
  
  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 550px) {
  .gallery-container {
    width: 85%;
  }
  
  .gallery-slide img {
    height: 250px;
  }
}
/* ========== PARTNERI ========== */
.partners-section {
  padding: 80px 0;
  background: linear-gradient(145deg, #0c0c10 0%, #08080a 100%);
}

.partners-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  background: rgba(228, 194, 122, 0.12);
  border-radius: 20px;
  border: 1px solid rgba(228, 194, 122, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}

.partner-card:hover {
  transform: translateY(-5px);
  background: rgba(228, 194, 122, 0.2);
  border-color: rgba(228, 194, 122, 0.5);
  box-shadow: 0 10px 25px rgba(228, 194, 122, 0.15);
}

.partner-logo {
  width: auto;
  height: auto;
  max-width: 140px;
  max-height: 140px;
  object-fit: contain;
  filter: brightness(0.95) contrast(1.05);
  transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
  filter: brightness(1.1) contrast(1.1);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1200px) {
  .partners-grid {
    gap: 30px;
  }
  
  .partner-card {
    width: 180px;
    height: 180px;
  }
  
  .partner-logo {
    max-width: 120px;
    max-height: 120px;
  }
}

@media (max-width: 768px) {
  .partners-grid {
    gap: 20px;
  }
  
  .partner-card {
    width: 150px;
    height: 150px;
  }
  
  .partner-logo {
    max-width: 100px;
    max-height: 100px;
  }
}

@media (max-width: 550px) {
  .partners-grid {
    gap: 15px;
  }
  
  .partner-card {
    width: 130px;
    height: 130px;
  }
  
  .partner-logo {
    max-width: 85px;
    max-height: 85px;
  }
}
.partners-section {
  text-align: center;
}

.partners-section .container {
  margin-left: auto;
  margin-right: auto;
}

.partners-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.partners-section {
  text-align: center;
}

.partners-section .section-title,
.partners-section .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.partners-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
  text-align: left; /* Ovo vraća kartice na normalno poravnanje */
}