/*
 * ========================================
 * ALU & PLAST INTERNACIONAL
 * UI Komponente
 * ========================================
 */

/* ========================================
   BASE SECTION STYLES
   ======================================== */

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header .overline {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0066cc;
  margin-bottom: 12px;
}

.section-header .heading-2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.0625rem;
  color: #64748b;
  line-height: 1.7;
}

.bg-gray-50 {
  background-color: #f8fafc;
}

/* ========================================
   HEADER / NAVIGACIJA
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: transparent;
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a5f7a;
  letter-spacing: -0.02em;
}

.logo-text .logo-accent {
  color: #f59e0b;
}

.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.05em;
  margin-top: -2px;
}

.header.scrolled .logo-text {
  color: #1a5f7a;
}

.logo-img {
  height: 45px;
  width: auto;
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}

.nav-link {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1e293b;
  padding: 8px 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.header.scrolled .nav-link {
  color: #334155;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

/* Dropdown menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: var(--space-3) var(--space-4);
  color: var(--gray-700);
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
}

.nav-dropdown-item:hover {
  background-color: var(--gray-50);
  color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: all var(--transition-normal);
}

.header.scrolled .mobile-menu-btn span {
  background-color: var(--gray-800);
}

/* Mobile Navigation */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--white);
  z-index: var(--z-modal);
  padding: var(--space-8) var(--space-6);
  transition: right var(--transition-normal);
  overflow-y: auto;
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: var(--z-modal-backdrop);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.nav-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-mobile-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  padding: var(--space-2);
}

.nav-mobile-link {
  display: block;
  padding: var(--space-4) 0;
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--gray-900);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding-top: var(--space-20);
}

.hero-overline {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-light);
  margin-bottom: var(--space-4);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-6);
}

.hero-text {
  font-size: var(--text-lg);
  color: var(--gray-300);
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--white);
  opacity: 0.7;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ========================================
   FEATURES / VRIJEDNOSTI
   ======================================== */

.features {
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  text-align: center;
  padding: var(--space-8);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background-color: var(--primary-50);
  color: var(--primary);
  margin-bottom: var(--space-6);
}

.feature-icon svg {
  width: 40px;
  height: 40px;
}

.feature-card h3 {
  margin-bottom: var(--space-3);
}

.feature-card p {
  color: var(--gray-600);
}

/* ========================================
   SERVICES / USLUGE
   ======================================== */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  background-color: var(--primary-50);
  color: var(--primary);
  margin-bottom: var(--space-4);
}

.service-card h4 {
  margin-bottom: var(--space-2);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--gray-600);
}

/* ========================================
   PRODUCTS / PROIZVODI
   ======================================== */

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-6);
  color: var(--white);
}

.product-card h3 {
  color: var(--white);
  margin-bottom: var(--space-2);
}

.product-card p {
  font-size: var(--text-sm);
  opacity: 0.8;
}

/* ========================================
   GALLERY / PROJEKTI
   ======================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(26, 86, 219, 0);
  transition: background-color var(--transition-normal);
}

.gallery-item:hover::after {
  background-color: rgba(26, 86, 219, 0.3);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta {
  background: linear-gradient(135deg, #1a5f7a 0%, #0d3d4d 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.cta h2 {
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.btn-cta-primary {
  background: #f59e0b;
  color: #ffffff;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-cta-primary:hover {
  background: #d97706;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.btn-cta-secondary {
  background: transparent;
  color: #ffffff;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-cta-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
}

.cta .btn {
  background: #f59e0b;
  color: #ffffff;
  padding: 18px 40px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
  position: relative;
  z-index: 1;
}

.cta .btn:hover {
  background: #d97706;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

/* ========================================
   PARTNERS / PARTNERI
   ======================================== */

.partners {
  background-color: var(--gray-50);
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
}

.partner-logo {
  height: 40px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--transition-normal);
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ========================================
   CONTACT / KONTAKT
   ======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-item {
  display: flex;
  gap: var(--space-4);
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background-color: var(--primary-50);
  color: var(--primary);
}

.contact-item h4 {
  margin-bottom: var(--space-1);
}

.contact-item p,
.contact-item a {
  color: var(--gray-600);
}

.contact-item a:hover {
  color: var(--primary);
}

/* Contact Form */
.contact-form {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--gray-700);
  margin-bottom: var(--space-2);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-100);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #cbd5e1;
  padding: 80px 0 0;
}

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

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
}

.footer-brand {
  max-width: 400px;
}

@media (max-width: 900px) {
  .footer-brand {
    max-width: 100%;
    margin: 0 auto;
  }
}

.footer-logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo-text {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.footer-logo-tagline {
  display: block;
  font-size: 0.875rem;
  color: #f59e0b;
  font-weight: 500;
  margin-top: 2px;
}

.footer-description {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #94a3b8;
  margin: 0 0 24px 0;
}

.footer-social {
  display: flex;
  gap: 12px;
}

@media (max-width: 900px) {
  .footer-social {
    justify-content: center;
  }
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  color: #94a3b8;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-social a:hover {
  background: #f59e0b;
  color: #fff;
  transform: translateY(-3px);
  border-color: #f59e0b;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 500px) {
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-column h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, #1a5f7a);
  border-radius: 2px;
}

@media (max-width: 900px) {
  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 0.9375rem;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #f59e0b;
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .footer-links a:hover {
    transform: none;
  }
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: #94a3b8;
}

@media (max-width: 900px) {
  .footer-contact-item {
    justify-content: center;
  }
}

.footer-contact-item svg {
  color: #f59e0b;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: #f59e0b;
}

.footer-contact-item span {
  color: #94a3b8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

/* Legacy footer grid for backwards compatibility */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

.footer-brand .logo {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-brand .logo span {
  color: #f59e0b;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #94a3b8;
  margin: 0;
}

.footer-links span {
  cursor: default;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  z-index: var(--z-fixed);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-4px);
}

/* ========================================
   PROMO / AKTUALNE PONUDE
   ======================================== */

.promo {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .promo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.promo-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}

.promo-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-2xl);
}

.promo-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.promo-card:hover img {
  transform: scale(1.05);
}

.promo-contact {
  text-align: center;
  padding: var(--space-8);
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius-xl);
  margin-top: var(--space-8);
}

.promo-contact p {
  margin-bottom: var(--space-2);
  font-size: var(--text-lg);
}

.promo-contact a {
  color: var(--white);
  text-decoration: underline;
}

.promo-contact a:hover {
  color: var(--accent-light);
}

/* ========================================
   PAGE HEADER (Inner Pages)
   ======================================== */

.page-header {
  background: linear-gradient(135deg, #1a5f7a 0%, #0d3d4d 100%);
  padding: 160px 24px 80px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(255,255,255,0.05), transparent);
  pointer-events: none;
}

.page-header h1 {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.page-header .text-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-content .overline {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.about-content h2 {
  margin-bottom: var(--space-6);
}

.about-content p {
  margin-bottom: var(--space-4);
  color: var(--gray-600);
  line-height: var(--leading-relaxed);
}

.about-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .info-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-card {
  text-align: center;
  padding: var(--space-8);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.info-number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.info-label {
  font-size: var(--text-sm);
  color: var(--gray-600);
}

/* ========================================
   SERVICES PAGE
   ======================================== */

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media (min-width: 640px) {
  .services-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-detail-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-detail-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0, 102, 204, 0.08);
  text-align: left;
}

.service-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 102, 204, 0.15);
  border-color: rgba(0, 102, 204, 0.2);
}

.service-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
  color: #ffffff;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.service-detail-icon svg {
  width: 32px;
  height: 32px;
}

.service-detail-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.service-detail-card > p {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0 0 20px 0;
  min-height: 80px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.service-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.8125rem;
  color: #475569;
  line-height: 1.5;
}

.service-features li:last-child {
  margin-bottom: 0;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0066cc;
  font-weight: 700;
  font-size: 0.75rem;
}

/* Process Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  padding: 20px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, #0066cc 0%, #3399ff 50%, #0066cc 100%);
  border-radius: 3px;
  z-index: 0;
}

@media (max-width: 768px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 8px;
  border-radius: 12px;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
  color: #ffffff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 6px 0;
}

.process-step p {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  max-width: 160px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   PRODUCTS PAGE
   ======================================== */

.product-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.product-nav-link {
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #475569;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  text-decoration: none;
}

.product-nav-link:hover {
  background: #1a5f7a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 95, 122, 0.25);
}

/* ========================================
   PRODUCT DETAIL - POBOLJŠANI STILOVI
   ======================================== */

.product-section {
  padding: 80px 0;
}

.product-section.bg-gray-50 {
  background-color: #f8fafc;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 1024px) {
  .product-detail {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  
  .product-detail.reverse {
    direction: rtl;
  }
  
  .product-detail.reverse > * {
    direction: ltr;
  }
}

.product-detail-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  max-height: 450px;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  max-height: 450px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.product-detail-image:hover img {
  transform: scale(1.02);
}

.product-detail-content {
  padding: 20px 0;
}

.product-detail-content .overline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #1a5f7a;
  background: linear-gradient(135deg, rgba(26, 95, 122, 0.1), rgba(245, 158, 11, 0.1));
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.product-detail-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 20px;
}

.product-detail-content > p {
  font-size: 1.0625rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 30px;
}

.product-detail-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a5f7a;
  margin-top: 30px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f59e0b;
  display: inline-block;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .product-features {
    grid-template-columns: 1fr 1fr;
  }
}

.product-features li {
  position: relative;
  padding-left: 32px;
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-content .btn {
  margin-top: 20px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

@media (min-width: 1024px) {
  .contact-page-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-full h2,
.contact-form-full h2 {
  margin-bottom: var(--space-2);
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.contact-info-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.contact-icon-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-xl);
  background-color: var(--primary-50);
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-item h4 {
  margin-bottom: var(--space-1);
}

.contact-info-item p {
  color: var(--gray-600);
}

.contact-info-item a {
  color: var(--primary);
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.contact-social h4 {
  margin-bottom: var(--space-4);
}

.social-links {
  display: flex;
  gap: var(--space-4);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background-color: var(--gray-100);
  border-radius: var(--radius-lg);
  font-weight: var(--font-medium);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Form Styles */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--gray-600);
}

.form-checkbox input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Map Section */
.map-section {
  width: 100%;
  height: 450px;
  background: var(--gray-200);
}

.map-section iframe {
  width: 100%;
  height: 100%;
}

/* Partners Logo Fix */
.partner-logo {
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--gray-500);
  padding: var(--space-4) var(--space-6);
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  text-decoration: none;
  cursor: pointer;
}

.partner-logo:hover {
  background: var(--primary-50);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(26, 95, 122, 0.2);
}

/* ========================================
   PROJECTS PAGE / GALLERY
   ======================================== */

.project-section {
  margin-bottom: var(--space-16);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--gray-200);
}

.project-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.project-section h3 {
  margin-bottom: var(--space-2);
}

.project-desc {
  color: var(--gray-600);
  margin-bottom: var(--space-6);
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .project-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .project-gallery {
    grid-template-columns: repeat(6, 1fr);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ========================================
   NEW PRODUCTS SECTION
   ======================================== */

.new-products {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--white) 100%);
}

.new-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .new-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.new-product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .new-product-card {
    flex-direction: row;
  }
}

.new-product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .new-product-card img {
    width: 200px;
    height: auto;
  }
}

.new-product-content {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.new-product-content h3 {
  margin-bottom: var(--space-2);
  color: var(--primary);
}

.new-product-content p {
  color: var(--gray-600);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
}

/* ========================================
   SERVICES LIST (Detailed)
   ======================================== */

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.services-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.services-list-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.services-list-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.services-list-item span {
  font-size: var(--text-sm);
  color: var(--gray-700);
}

/* ========================================
   PROJECTS FEATURED SHOWCASE
   ======================================== */

.projects-featured {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  color: var(--white);
  padding: var(--space-16) 0;
}

.projects-featured .section-header {
  color: var(--white);
}

.projects-featured .section-header .overline {
  color: var(--primary-light);
}

.projects-featured .section-header h2 {
  color: var(--white);
}

.projects-featured .section-header p {
  color: var(--gray-300);
}

.projects-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .projects-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .projects-showcase {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
  }
  
  .project-showcase-item.large {
    grid-row: span 2;
  }
}

.project-showcase-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  cursor: pointer;
  height: 280px;
  background: var(--gray-700);
}

.project-showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-showcase-item:hover img {
  transform: scale(1.1);
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-5);
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 70%, transparent 100%);
}

.project-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-light);
  margin-bottom: var(--space-2);
}

.project-info h3 {
  color: var(--white);
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-1);
}

.project-info p {
  color: var(--gray-300);
  font-size: var(--text-sm);
  margin: 0;
}

/* ========================================
   LIGHTBOX / IMAGE MODAL
   ======================================== */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-caption {
  color: #fff;
  font-size: 1rem;
  margin-top: 16px;
  text-align: center;
  opacity: 0.9;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
  }
}

/* Gallery item hover effect for projects page */
.gallery-item {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 95, 122, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  background: rgba(26, 95, 122, 0.3);
}

.gallery-item::before {
  content: '🔍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 2rem;
  z-index: 2;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

/* ==========================================
   POSEBNA PONUDA SECTION
   ========================================== */

.special-offer {
  background: linear-gradient(135deg, #0f4c5c 0%, #1a5f7a 50%, #2980b9 100%);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.special-offer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  animation: pulse-bg 15s ease-in-out infinite;
}

@keyframes pulse-bg {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.special-offer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  text-align: center;
  position: relative;
  z-index: 1;
}

.special-offer-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: white;
  padding: var(--space-2) var(--space-6);
  border-radius: 50px;
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-6);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(245, 158, 11, 0.7); }
}

.special-offer-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.special-offer-text {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}

.special-offer-features {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.special-offer-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: white;
  font-weight: 500;
  font-size: var(--text-base);
}

.special-offer-feature svg {
  width: 24px;
  height: 24px;
  color: #f59e0b;
  flex-shrink: 0;
}

.btn-special-offer {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--rounded-lg);
  font-weight: 600;
  font-size: var(--text-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-special-offer:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.btn-special-offer svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-special-offer:hover svg {
  transform: translateX(5px);
}

/* ==========================================
   COOKIE BANNER
   ========================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(10px);
  padding: var(--space-4) var(--space-6);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex: 1;
  min-width: 280px;
}

.cookie-text svg {
  width: 32px;
  height: 32px;
  color: #f59e0b;
  flex-shrink: 0;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin: 0;
}

.cookie-text a {
  color: #f59e0b;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-text a:hover {
  color: #fbbf24;
}

.cookie-accept {
  background: linear-gradient(135deg, #1a5f7a, #2980b9);
  color: white;
  border: none;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--rounded-lg);
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #2980b9, #3498db);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(26, 95, 122, 0.4);
}

/* Cookie banner responsive */
@media (max-width: 640px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-accept {
    width: 100%;
    padding: var(--space-4);
  }
}

/* Special offer responsive */
@media (max-width: 768px) {
  .special-offer {
    padding: var(--space-12) 0;
  }
  
  .special-offer-features {
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
  }
}

/* ==========================================
   AKCIJE BANNER SECTION - Premium Design
   ========================================== */

.akcije-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

/* Animated Background Pattern */
.akcije-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(26, 95, 122, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(26, 95, 122, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

/* Top Accent Line */
.akcije-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #1a5f7a, #f59e0b, #1a5f7a, transparent);
}

.akcije-banner .container {
  position: relative;
  z-index: 1;
}

.akcije-banner-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.akcije-banner-content {
  padding-right: 20px;
}

/* Premium Badge */
.akcije-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(239, 68, 68, 0.2));
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  animation: glow-badge 3s ease-in-out infinite;
}

@keyframes glow-badge {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
  }
  50% { 
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
  }
}

.akcije-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.akcije-title .text-gradient {
  background: linear-gradient(135deg, #f59e0b, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.akcije-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

/* Premium CTA Button */
.btn-akcije {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0f172a;
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 20px rgba(245, 158, 11, 0.4),
    0 0 0 0 rgba(245, 158, 11, 0);
  position: relative;
  overflow: hidden;
}

.btn-akcije::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-akcije:hover::before {
  left: 100%;
}

.btn-akcije:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 10px 40px rgba(245, 158, 11, 0.5),
    0 0 0 4px rgba(245, 158, 11, 0.2);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.btn-akcije svg {
  transition: transform 0.3s ease;
}

.btn-akcije:hover svg {
  transform: translateX(6px);
}

/* Image Container - Premium Style */
.akcije-banner-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

/* Decorative Frame */
.akcije-banner-image::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, #1a5f7a, #f59e0b, #1a5f7a);
  border-radius: 27px;
  z-index: -1;
  opacity: 0.8;
}

/* Inner glow */
.akcije-banner-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 60px rgba(245, 158, 11, 0.2);
  pointer-events: none;
  z-index: 2;
}

.akcije-banner-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 24px;
}

.akcije-banner-image:hover img {
  transform: scale(1.05);
}

/* Floating decorative elements */
.akcije-banner-wrapper::before {
  content: '%';
  position: absolute;
  right: 5%;
  top: -20px;
  font-size: 180px;
  font-weight: 800;
  color: rgba(245, 158, 11, 0.05);
  pointer-events: none;
  font-family: 'Playfair Display', serif;
}

/* Responsive */
@media (max-width: 1024px) {
  .akcije-banner {
    padding: 80px 0;
  }
  
  .akcije-banner-wrapper {
    gap: 50px;
  }
  
  .akcije-banner-image img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .akcije-banner {
    padding: 60px 0;
  }
  
  .akcije-banner-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .akcije-banner-content {
    padding-right: 0;
  }
  
  .akcije-text {
    margin-left: auto;
    margin-right: auto;
  }
  
  .akcije-banner-image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .akcije-banner-image img {
    height: 300px;
  }
  
  .akcije-banner-wrapper::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .akcije-banner {
    padding: 50px 0;
  }
  
  .akcije-title {
    font-size: 2rem;
  }
  
  .akcije-text {
    font-size: 1rem;
  }
  
  .btn-akcije {
    padding: 16px 28px;
    font-size: 0.9375rem;
  }
  
  .akcije-banner-image img {
    height: 250px;
  }
}

/* ==========================================
   AKCIJE PAGE STYLES
   ========================================== */

.akcije-page {
  padding: var(--space-16) 0;
}

.akcije-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

.akcija-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.akcija-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(26, 95, 122, 0.15);
}

.akcija-card.akcija-featured {
  border: 2px solid #f59e0b;
}

.akcija-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #f5f5f5;
}

.akcija-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.akcija-card:hover .akcija-image img {
  transform: scale(1.08);
}

.akcija-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: linear-gradient(135deg, #1a5f7a, #2980b9);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: 50px;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.akcija-badge-hot {
  background: linear-gradient(135deg, #ef4444, #f59e0b);
  animation: pulse-badge 2s ease-in-out infinite;
}

.akcija-content {
  padding: var(--space-6);
}

.akcija-content h3 {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.akcija-content p {
  color: var(--color-text-light);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

/* Downloads Section */
.akcije-downloads {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: var(--rounded-2xl);
  padding: var(--space-10);
  text-align: center;
  margin-bottom: var(--space-16);
}

.akcije-downloads h3 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.akcije-downloads > p {
  color: var(--color-text-light);
  margin-bottom: var(--space-6);
}

.downloads-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: white;
  border: 2px solid #1a5f7a;
  color: #1a5f7a;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--rounded-lg);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: #1a5f7a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(26, 95, 122, 0.3);
}

/* CTA Section */
.akcije-cta {
  background: linear-gradient(135deg, #0f4c5c 0%, #1a5f7a 50%, #2980b9 100%);
  border-radius: var(--rounded-2xl);
  padding: var(--space-12);
  text-align: center;
  color: white;
}

.akcije-cta h3 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

.akcije-cta > p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-6);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.akcije-cta .btn-outline {
  border-color: white;
  color: white;
}

.akcije-cta .btn-outline:hover {
  background: white;
  color: #1a5f7a;
}

/* Responsive */
@media (max-width: 968px) {
  .akcije-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .akcije-grid {
    grid-template-columns: 1fr;
  }
  
  .akcija-image {
    height: 200px;
  }
  
  .akcije-downloads {
    padding: var(--space-6);
  }
  
  .akcije-cta {
    padding: var(--space-8);
  }
  
  .downloads-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .download-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

/* ========================================
   LANGUAGE SWITCHER v3 - Clean Design
   ======================================== */
#langSwitcherContainer {
  position: relative;
  z-index: 1002;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 20px;
}

.lang-switcher {
  position: relative;
  display: inline-block;
}

/* Main Button */
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.lang-current-code {
  background: var(--accent, #f59e0b);
  color: #000;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.lang-current-name {
  font-weight: 500;
}

.lang-arrow {
  font-size: 0.6rem;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.lang-switcher.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-switcher.open .lang-btn {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Scrolled header */
.header.scrolled .lang-btn {
  background: var(--primary, #1a5f7a);
  border-color: var(--primary, #1a5f7a);
  color: #fff;
}

.header.scrolled .lang-btn:hover {
  background: var(--primary-dark, #145a6e);
}

.header.scrolled .lang-current-code {
  background: var(--accent, #f59e0b);
}

/* Dropdown */
.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  overflow: hidden;
  z-index: 9999;
}

.lang-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 28px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 2px;
}

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Dropdown Title */
.lang-dropdown-title {
  padding: 16px 20px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #94a3b8;
  border-bottom: 1px solid #f1f5f9;
}

/* Language Options */
.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  border: none;
  color: #334155;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.lang-option:last-child {
  padding-bottom: 16px;
}

.lang-code {
  background: #e2e8f0;
  color: #475569;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  min-width: 36px;
  text-align: center;
}

.lang-option .lang-name {
  flex: 1;
  font-weight: 500;
}

.lang-check {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.lang-option:hover {
  background: #f8fafc;
}

.lang-option:hover .lang-code {
  background: var(--primary, #1a5f7a);
  color: #fff;
}

.lang-option.active {
  background: linear-gradient(135deg, var(--primary, #1a5f7a) 0%, #2980b9 100%);
  color: #fff;
}

.lang-option.active .lang-code {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.lang-option.active:hover {
  background: linear-gradient(135deg, var(--primary-dark, #145a6e) 0%, #1f6391 100%);
}

/* ========================================
   LANGUAGE SWITCHER - MOBILE
   ======================================== */
@media (max-width: 1023px) {
  #langSwitcherContainer {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    margin: 0;
  }
  
  .lang-switcher {
    position: static;
  }
  
  .lang-btn {
    padding: 8px 14px;
    gap: 6px;
    min-height: 40px;
    border-radius: 10px;
  }
  
  .lang-current-name,
  .lang-arrow {
    display: none;
  }
  
  .lang-current-code {
    font-size: 0.85rem;
    padding: 5px 12px;
    border-radius: 6px;
  }
  
  .lang-dropdown {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    min-width: 100%;
    width: 100%;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.3);
    max-height: 70vh;
    transform: translateY(100%);
  }
  
  .lang-switcher.open .lang-dropdown {
    transform: translateY(0);
  }
  
  .lang-dropdown::before {
    display: none;
  }
  
  .lang-dropdown-title {
    padding: 20px 24px 16px;
    font-size: 0.8rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
  }
  
  .lang-option {
    padding: 18px 24px;
    font-size: 1rem;
    justify-content: flex-start;
  }
  
  .lang-option:last-child {
    padding-bottom: 24px;
    margin-bottom: env(safe-area-inset-bottom, 0);
  }
  
  .lang-code {
    font-size: 0.85rem;
    padding: 6px 14px;
    min-width: 44px;
  }
  
  .lang-option .lang-name {
    font-size: 1rem;
  }
  
  .lang-check {
    font-size: 1.2rem;
  }
  
  /* Mobile overlay when dropdown is open */
  .lang-switcher.open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }
}

/* Small phones */
@media (max-width: 480px) {
  #langSwitcherContainer {
    right: 65px;
  }
  
  .lang-btn {
    padding: 6px 10px;
    min-height: 36px;
  }
  
  .lang-current-code {
    font-size: 0.8rem;
    padding: 4px 10px;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  #langSwitcherContainer {
    right: 55px;
  }
  
  .lang-btn {
    padding: 5px 8px;
  }
  
  .lang-current-code {
    font-size: 0.75rem;
    padding: 3px 8px;
  }
}
