/* =====================================================
   CORE.CSS – GLOBAL BASE (Net Vision) - Optimized
   ===================================================== */

/* General Styles for Navbar, Header */
.navbar,
.header,
.nav-wrapper {
  overflow: visible !important; /* Avoid clipping content */
}

/* =========================
   RESET & BASE STYLES
========================= */
*,
*::before,
*::after {
  box-sizing: border-box; /* Ensure consistent box model */
}

html {
  font-size: 16px; /* Base font size for scaling */
  scroll-behavior: smooth; /* Smooth scrolling for supported browsers */
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #0a192f; /* Dark Navy Text Color */
  background: #ffffff; /* White Background */
  line-height: 1.6; /* Comfortable line height for readability */
  overflow-x: hidden; /* No horizontal scroll allowed */
}

a {
  color: inherit; /* Match text color */
  text-decoration: none; /* Remove underline */
  transition: color 0.2s ease; /* Smooth transition for hover effects */
}

a:hover {
  color: #d4af37; /* Gold accent color */
}

/* =========================
   TYPOGRAPHY STYLES
========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif; /* Elegant Headings Font */
  margin: 0 0 0.6em; /* Consistent spacing below headings */
  font-weight: 700; /* Bold font weight */
  line-height: 1.25; /* Adjust line height for better visual spacing */
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem); /* Responsive heading using clamp */
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem); /* Slightly smaller than H1 */
}
h3 {
  font-size: 1.5rem; /* Static size for standard sub-headings */
}

p {
  margin: 0 0 1.2em; /* Standard spacing below paragraphs */
  font-size: 1rem; /* Default paragraph size */
}

/* =========================
   CONTAINERS
========================= */
.container {
  max-width: 1200px; /* Maximum width for desktops */
  margin: 0 auto; /* Center content horizontally */
  padding: 0 20px; /* Add horizontal padding for breathing space */
}

.container-800 {
  max-width: 800px; /* Smaller containers for specific layouts */
  margin: 0 auto;
  padding: 0 20px;
}

/* --------------------
   GRID (basic)
-------------------- */
.row {
  display: flex;
  flex-wrap: wrap; /* Ensure responsive wrapping */
  margin-left: -15px; /* Negative margin to counter grid padding */
  margin-right: -15px;
}

.col {
  padding-left: 15px; /* Grid padding on left */
  padding-right: 15px; /* Grid padding on right */
  flex: 1 0 0%; /* Flexible columns for default layout */
}

/* =========================
   HEADER / NAVIGATION - Optimized
========================= */

/* Root Variables for Colors */
:root {
  --nv-navy: #060e1e;
  --nv-navy-dark: #061026;
  --nv-orange: #f58634;
  --nv-text: #e8eefc;
  --white: #fff;
  --drop-bg: rgba(5, 14, 30, 0.98);
  --drop-border: rgba(255, 255, 255, 0.08);
}

/* Header */
.nv-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: linear-gradient(180deg, var(--nv-navy-dark), var(--nv-navy));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nv-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.nv-logo {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  min-width: 170px;
}

.nv-logo-top {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 28px;
  color: var(--white);
  white-space: nowrap;
}

.nv-logo-net {
  color: var(--white);
}

.nv-logo-vision {
  color: var(--nv-orange);
  margin-left: 2px;
}

.nv-logo-sub {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: lowercase;
}

/* Navigation */
.nv-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 18px;
  flex: 1 1 auto;
}

.nv-nav-link {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  position: relative;
  padding: 10px 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nv-nav-link:hover {
  color: var(--white);
}

/* Dropdown */
.nv-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nv-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(255, 255, 255, 0.75);
  vertical-align: middle;
}

/* Dropdown Panel */
.nv-drop {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 12px;
  width: 260px;
  background: var(--drop-bg);
  border: 1px solid var(--drop-border);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.nv-dropdown:hover .nv-drop,
.nv-dropdown:focus-within .nv-drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Dropdown Arrow */
.nv-drop-arrow {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--drop-bg);
  filter: drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.1));
}

/* Dropdown Items */
.nv-drop-item {
  display: block;
  padding: 14px 18px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  transition: background 0.2s ease, color 0.2s ease;
}

.nv-drop-item::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 3px;
  border-radius: 2px;
  background: transparent;
  transition: background 0.2s ease;
}

.nv-drop-item:hover {
  background: rgba(245, 134, 52, 0.1);
  color: var(--white);
}

.nv-drop-item:hover::before {
  background: var(--nv-orange);
}

/* Dropdown Fix: Prevent Hover Issues */
.nv-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}

/* Dropdown Arrow Adjustment for Hover */
.nv-dropdown .nv-drop-arrow {
  top: -8px;
}
/* Sakrij dugme na mobilnim uređajima */
@media (max-width: 768px) {
  .nv-cta {
    display: none; /* Dugme nestaje na manjim ekranima */
  }
}



/* =====================================================
   CALL TO ACTION (CTA)
===================================================== */
.nv-cta {
  flex: 0 0 auto;
  margin-left: auto;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--nv-orange);
  color: var(--nv-navy);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  box-shadow: 0 10px 25px rgba(245, 134, 52, 0.3);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.nv-cta:hover {
  background: var(--nv-navy);
  color: var(--nv-orange);
  border-color: var(--nv-orange);
}

/* =====================================================
   BURGER MENU
===================================================== */
/* Burger dugme */
.burger-btn {
  display: none; /* Skriven dok nije mobilni prikaz */
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  position: absolute; /* Fiksirano na vrhu ekrana */
  top: 20px;
  right: 20px; /* Hamburger dugme postavljeno desno */
  z-index: 1001;
}

.burger-btn span {
  display: block;
  width: 100%;
  height: 4px; /* Debljina linija */
  background-color: #ffffff;
  border-radius: 10px; /* Zaobljeni krajevi linija */
  transition: all 0.3s ease;
}

.burger-btn.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px); /* Gornja linija */
}

.burger-btn.is-open span:nth-child(2) {
  opacity: 0; /* Središnja linija nestaje */
}

.burger-btn.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px); /* Donja linija */
}
/* =====================================================
   BURGER – DESKTOP / MOBILE FIX
===================================================== */

/* Desktop meni */
.nv-nav {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .nv-nav {
    display: none; /* Desktop meni nestaje ispod 768px */
  }

  .burger-btn {
    display: flex; /* Prikazuje hamburger meni na mobilnim uređajima */
  }
}

/* ======================================================
   MOBILNI MENI - FINALNI DIZAJN
===================================================== */
/* Mobilni meni */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: #061026;
  z-index: 1000;
  padding: 60px 20px 20px; /* Dodaj padding-top za razmak ispod × dugmeta */
  overflow-y: auto; /* Skrolovanje za duge menije */
  color: #ffffff; /* Boja teksta */
}

.mobile-menu.is-open {
  display: block; /* Kad se meni otvori */
}

/* ======================================================
   X ZA ZATVARANJE - POPRAVLJENO
===================================================== */
/* Dugme X - gornji levi ugao sa razmakom */
.mobile-close {
  font-size: 24px;
  color: #ffffff; /* Beli tekst za kontrast */
  background: none; /* Bez pozadine */
  border: none; /* Bez ivica */
  cursor: pointer;
  position: absolute; /* Fiksirano pozicioniranje */
  top: 10px; /* Razmak od vrha */
  left: 10px; /* Razmak od leve strane */
  width: 44px; /* Proširena površina za klik */
  height: 44px; /* Proširena površina za klik */
  display: flex; /* Centrirano */
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* Okrugliji izgled */
  background-color: rgba(255, 255, 255, 0.1); /* Blaga pozadina za vizuelni akcent */
  transition: background-color 0.3s ease; /* Dodaj hover efekat */
  margin-bottom: 60px; /* Dodan razmak ispod dugmeta */
}

.mobile-close:hover {
  background-color: rgba(255, 255, 255, 0.2); /* Vidljivije na hover */
}
/* Navigacija */
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav ul li {
  margin-bottom: 20px;
}

.mobile-nav ul li a {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 16px; /* Održavanje čitljivosti */
  color: #e8eefc; /* Svetlo plavi tekst */
  display: block;
  transition: color 0.3s ease; /* Glatki hover efekat */
}

.mobile-nav ul li a:hover {
  color: #f58634; /* Narandžasti hover efekat */
}

/* Grupa usluga (SEO i IT) */
/* Parent teme za grupu usluga (`SEO Usluge`, `IT Usluge`) */
.mobile-group {
  margin-top: 30px;
  border-left: 3px solid #f58634; /* Narandžasta linija */
  padding-left: 15px; /* Razmak od narandžaste linije */
}

.mobile-group-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffd700; /* Zlatna boja za nazive */
  padding: 0; /* Uklanjanje nepotrebnog paddinga */
  background: none; /* Uklanjamo pozadinsku boju */
  border: none; /* Uklanjamo okvir */
  cursor: pointer; /* Omogućeno klikanje za interakciju */
  display: inline-block; /* Čist tekst bez dodatnih blokova */
  text-transform: uppercase; /* Isticanje velikih slova */
}

/* Podmeniji */
.mobile-sub {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none; /* Skriven podmeni dok nije otvoren */
}

.mobile-sub.is-open {
  display: block; /* Kada je kliknuto */
}

.mobile-sub li {
  margin-bottom: 10px; /* Razmak između stavki */
}

.mobile-sub li a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85); /* Blago svetliji tekst za podmeni */
}

.mobile-sub li a:hover {
  color: #f58634; /* Hover efekat na podmenije */
}

/* CTA dugme za mobilni meni */
.mobile-cta {
  display: block;
  margin-top: 30px;
  text-align: center;
  padding: 15px 20px;
  border-radius: 999px; /* Zaobljeni krajevi */
  background-color: #f58634; /* Narandžasta pozadina */
  color: #061026; /* Tamno plavi tekst */
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 14px; /* Održavanje čitljivosti */
}

.mobile-cta:hover {
  background-color: #ffd700; /* Zlatni hover za CTA dugme */
}

/* Parent za naslov sa "+" dugmetom */
.mobile-group-title {
  display: flex; /* Aktivira Flexbox za raspored */
  justify-content: space-between; /* Raspored: tekst levo, dugme desno */
  align-items: center; /* Vertikalno centrirano */
  width: 100%; /* Osigurava širinu */
  padding: 10px; /* Razmak oko naslova */
  cursor: pointer; /* Omogućava klikanje */
}

.mobile-plus {
  font-size: 18px;
  color: #f58634; /* Narandžasta boja za "+" */
  transition: transform 0.3s ease; /* Animacija rotacije */
}

.mobile-group-title.is-open .mobile-plus {
  transform: rotate(45deg); /* Promena "+" u "×" */
}
/* =====================================================
   BUTTON BASE
===================================================== */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn.btn-gold {
  background: #d4af37;
  color: #0a192f; /* Text Color (Contrast with Gold) */
}

.btn.btn-gold:hover {
  background: #c9a42f; /* Slightly Darker Gold for Hover */
}

/* =====================================================
   UTILITIES
===================================================== */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mt-40 {
  margin-top: 40px;
}
.mb-40 {
  margin-bottom: 40px;
}

/* =====================================================
   MEDIA QUERIES
===================================================== */

@media (max-width: 768px) {
  body {
    font-size: 15px; /* Reduce base font size for smaller devices */
  }

  h1 {
    font-size: 2rem; /* Ensure responsiveness for main headings */
  }
  h2 {
    font-size: 1.6rem; /* Adjust second-level headings */
  }
}

/* =====================================================
   HERO SECTION
===================================================== */
.expert-hero {
  width: 100%;
  background: linear-gradient(180deg, #061026, #060e1e); /* Subtle gradient background */
  padding: 90px 20px 70px;
  text-align: center;
  border-bottom: 4px solid var(--nv-orange);
  margin-bottom: 40px;
}

.expert-hero-inner {
  max-width: 800px; /* Limit width for better readability */
  margin: 0 auto;
}

.expert-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--nv-orange); /* Tag text color */
  background: rgba(245, 134, 52, 0.12); /* Lighter orange background */
}

.expert-hero h1 {
  color: var(--white); /* White text for better contrast */
}

.expert-hero p {
  color: rgba(232, 238, 252, 0.85); /* Lighter text color for emphasis */
  font-size: 18px; /* Default font size */
}

/* =====================================================
   RESPONSIVE HERO TEXT (IMPROVED)
===================================================== */
.expert-hero p {
  font-size: 21px;
  line-height: 1.6;
  color: rgba(232, 238, 252, 0.85);
  margin: 0 auto;
  opacity: 1;
  max-width: 800px; /* Limit paragraph width */
}

/* =====================================================
   RESPONSIVE HERO SECTION
===================================================== */
@media (max-width: 768px) {
  .expert-hero {
    padding: 70px 0 55px; /* Adjust padding for smaller screens */
  }
}
/* =====================================================
   ARTICLE TEXT – FINAL FIX
===================================================== */

/* Wrapper Section */
.about-content {
  width: 100%;
  background: var(--white);
}

/* Main Text Block */
.about-content > * {
  max-width: 800px; /* Constrain width for readability */
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px; /* Equal horizontal padding */
}

/* Paragraphs and List Items - Desktop */
.about-content p,
.about-content li {
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  line-height: 1.75;
  font-weight: 400;
  color: #1a202c; /* Dark Navy */
  margin-bottom: 22px;
}

/* Headings */
.about-content h2 {
  font-family: 'Playfair Display', serif;
  color: #0a192f; /* Primary Dark Navy Heading */
  font-size: 34px;
  line-height: 1.25;
  margin: 60px 0 22px;
}

.about-content h3 {
  font-family: 'Playfair Display', serif;
  color: #0a192f;
  font-size: 26px;
  line-height: 1.3;
  margin: 46px 0 18px;
}

/* Lists */
.about-content ul {
  padding-left: 20px; /* Indent for list bullets */
  margin: 30px 0;
}

.about-content li {
  margin-bottom: 14px; /* Space between list items */
}

/* Images Inside Text */
.about-content img {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  display: block;
  margin: 40px 0; /* Spacing from text content */
  border-radius: 8px; /* Rounded corners for softer look */
}

/* Highlight Box */
.about-content .highlight-box {
  background: #f8fafc;
  border-left: 4px solid var(--nv-orange); /* Use consistent accent color */
  padding: 26px 28px;
  margin: 40px 0;
}

.about-content .highlight-box p {
  font-size: 21px;
  font-weight: 500; /* Slightly bold for emphasis */
  margin: 0; /* Reset paragraph margin */
}

/* =====================================================
   MOBILE RESPONSIVENESS
===================================================== */

@media (max-width: 768px) {
  .about-content > * {
    padding: 0 16px; /* Reduce padding for smaller screens */
  }

  .about-content p,
  .about-content li {
    font-size: 18px;
    line-height: 1.7; /* Slightly tighter line height */
  }

  .about-content h2 {
    font-size: 26px;
    margin: 44px 0 18px; /* Adjust spacing for hierarchy */
  }

  .about-content h3 {
    font-size: 22px;
  }

  .about-content .highlight-box p {
    font-size: 18px; /* Adjust paragraph size inside box */
  }
}
/* =====================================================
   BLOG TEASER SECTION - Optimized
===================================================== */

.article-content.blog-teaser {
  background: linear-gradient(180deg, #061026, #060e1e); /* Smooth gradient */
  padding: 80px 20px 90px;
}

/* Title Block */
.article-content.blog-teaser .article-inner {
  max-width: 1200px;
  margin: 0 auto 50px;
  text-align: center;
}

.article-content.blog-teaser h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 1.2;
  color: var(--white); /* Consistent white text */
  margin: 0;
}

.article-content.blog-teaser h2 span {
  color: var(--nv-orange); /* Accent color */
}

/* Blog Eyebrow */
.blog-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(245, 134, 52, 0.12); /* Light orange background */
  color: var(--nv-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =====================================================
   BLOG GRID
===================================================== */

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Default grid of 3 cards */
  gap: 30px; /* Space between cards */
}

/* =====================================================
   BLOG CARD
===================================================== */
.blog-card {
  background: linear-gradient(180deg, #0b1730, #071126); /* Subtle gradient */
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-8px); /* Hover effect - lift */
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65); /* Stronger shadow */
  border-color: rgba(245, 134, 52, 0.45); /* Accent on hover */
}

/* Blog Image */
.blog-image-wrapper {
  position: relative;
}

.blog-image-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease; /* Smooth zoom-in */
}

.blog-card:hover img {
  transform: scale(1.06); /* Slight zoom on hover */
}

/* =====================================================
   BLOG TAGS
===================================================== */
.blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
}

.tag-blue {
  background: #2f7af8; /* Blue Tag */
}
.tag-orange {
  background: var(--nv-orange); /* Orange Tag */
}
.tag-purple {
  background: #8b5cf6; /* Purple Tag */
}

/* =====================================================
   BLOG CARD CONTENT
===================================================== */
.blog-content {
  padding: 26px 26px 30px;
}

.blog-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65); /* Muted text */
  margin-bottom: 10px;
}

.blog-title {
  font-size: 20px;
  line-height: 1.25;
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
}

.blog-title a {
  color: var(--white);
  text-decoration: none;
}

.blog-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75); /* Muted text for excerpt */
  margin-bottom: 18px;
}

.blog-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--nv-orange);
  text-decoration: none;
}

.blog-link:hover {
  color: var(--white); /* White text on hover */
}

/* =====================================================
   RESPONSIVENESS
===================================================== */

@media (max-width: 1024px) {
  .blog-container {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  }
}

@media (max-width: 680px) {
  .blog-container {
    grid-template-columns: 1fr; /* Single-column layout */
  }

  .article-content.blog-teaser h2 {
    font-size: 28px; /* Scale down title size */
  }
}
/* =====================================================
   FOOTER – FINAL PRODUCTION - Optimized
===================================================== */

#main-footer {
  background: linear-gradient(180deg, #061026, #060e1e);
  color: var(--white); /* Consistent white text */
  border-top: 1px solid rgba(245, 134, 52, 0.35); /* Accent border */
}

/* Footer Grid */
.nv-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

/* Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand .nv-logo-top {
  font-size: 26px;
  font-weight: 800; /* Logo headline boldness */
}

.footer-brand .nv-logo-net {
  color: var(--white);
}

.footer-brand .nv-logo-vision {
  color: var(--nv-orange); /* Highlighted color */
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(232, 238, 252, 0.8); /* Muted text for description */
}

/* Social Section */
.footer-social {
  display: flex;
  gap: 10px; /* Space between social icons */
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--white);
  font-size: 13px;
  transition: background-color 0.3s ease;
}

.footer-social a:hover {
  background: rgba(245, 134, 52, 0.25); /* Subtle hover background */
}

/* Titles */
.nv-footer-title {
  font-weight: 700;
  margin-bottom: 14px; /* Space below title */
}

/* Lists */
.nv-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nv-list li {
  margin-bottom: 8px; /* Space between list items */
}

.nv-list a {
  color: rgba(232, 238, 252, 0.85); /* Semi-muted link color */
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nv-list a:hover {
  color: var(--nv-orange); /* Highlighted color on hover */
}

/* Gift Section */
.footer-gift {
  background: rgba(255, 255, 255, 0.05); /* Slightly darker background */
  padding: 14px;
  border-radius: 10px;
  text-align: center;
}

.footer-gift img {
  max-width: 180px;
  width: 100%;
}

/* Footer Contact */
.footer-contact div {
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--white); /* Consistent footer text color */
}

/* Footer Bottom */
.footer-bottom {
  padding: 25px 15px;
  text-align: center;
}

.footer-bottom a {
  color: var(--nv-orange); /* Link color for footer bottom */
  font-size: 13px;
  font-weight: 600;
  margin: 0 6px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--white); /* Highlight white on hover */
}

.footer-copy {
  font-size: 12px;
  color: rgba(232, 238, 252, 0.6); /* Very muted text */
  margin-top: 10px;
}

/* =====================================================
   FOOTER – MOBILE LOGIC
===================================================== */

@media (max-width: 768px) {

  .nv-footer-grid {
    grid-template-columns: repeat(2, 1fr); /* 50% width columns */
    gap: 30px;
  }

  /* Full-width sections on mobile */
  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-col:nth-child(2),
  .footer-col:nth-child(3) {
    grid-column: span 1; /* 50% width */
  }

  .footer-col:nth-child(4),
  .footer-col:nth-child(5) {
    grid-column: span 1;
  }

  .footer-bottom {
    text-align: center; /* Center footer bottom */
  }
}

/* =====================================================
   FOOTER SVG LOGO – FINAL FIX
===================================================== */

/* Net Section */
#main-footer svg .logo-net {
  fill: var(--white) !important;
  opacity: 1 !important;
}

/* Vision Section */
#main-footer svg .logo-vision {
  fill: var(--nv-orange) !important;
  opacity: 1 !important;
}

/* Subtitle Section */
#main-footer svg .logo-sub {
  fill: rgba(232, 238, 252, 0.75) !important;
  opacity: 1 !important;
}



/* =====================================================
   FINAL CTA SECTION - Optimized
===================================================== */

.final-cta-section {
  width: 100%;
  background: linear-gradient(180deg, #061026, #060e1e); /* Smooth gradient */
  padding: 90px 20px;
  border-top: 1px solid var(--nv-orange); /* Highlighted border */
}

.final-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Title (CTA Heading) */
.final-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 18px;
}

/* Text (CTA Description) */
.final-cta-text {
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  line-height: 1.7;
  color: rgba(232, 238, 252, 0.85); /* Muted text */
  margin-bottom: 34px;
}

/* Button */
.final-cta-button {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 999px;
  background: var(--nv-orange); /* Highlighted background */
  color: var(--nv-navy); /* Contrasting text */
  font-family: 'Roboto', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(245, 134, 52, 0.35); /* Slight shadow */
  transition: all 0.25s ease;
}

.final-cta-button:hover {
  background: var(--nv-navy);
  color: var(--nv-orange);
  border: 2px solid var(--nv-orange);
}

/* CTA Section Responsive */
@media (max-width: 768px) {
  .final-cta-section {
    padding: 70px 16px; /* Adjust padding for smaller screens */
  }

  .final-cta-title {
    font-size: 26px; /* Scale down title */
  }

  .final-cta-text {
    font-size: 18px; /* Adjust font size for description */
  }
}

/* =====================================================
   PREMIUM LIST – CHECK LIST - Optimized
===================================================== */

.check-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

/* List Items */
.check-list li {
  position: relative;
  padding-left: 42px;
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.7;
  color: #1a202c; /* Dark Navy */
}

/* Check Icon */
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(245, 134, 52, 0.12); /* Light orange background */
  color: var(--nv-orange); /* Highlighted checkmark */
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bolded Text in List */
.check-list li strong {
  color: var(--nv-navy); /* Dark Navy accent text */
  font-weight: 700;
}
/* =====================================================
   SEO STATEMENT LIST - Optimized
===================================================== */
.seo-statement-list {
  list-style: none; /* Remove default bullet points */
  padding: 0;
  margin: 32px 0;
}

.seo-statement-list li {
  position: relative;
  padding-left: 28px; /* Indent for the orange line */
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--nv-navy); /* Dark Navy */
  font-weight: 500;
}

/* Orange Line on List Items */
.seo-statement-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 14px;
  height: 2px;
  background: var(--nv-orange); /* Consistent orange line */
}

/* =====================================================
   SEO BENEFIT LIST - Optimized
===================================================== */
.seo-benefit-list {
  list-style: none; /* Remove bullet points */
  padding: 0;
  margin: 36px 0;
}

.seo-benefit-list li {
  background: rgba(245, 134, 52, 0.06); /* Light orange highlight */
  border-left: 4px solid var(--nv-orange);
  padding: 14px 18px;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 500;
  color: var(--nv-navy);
}

/* =====================================================
   SEO PACKAGES INLINE CTA - Optimized
===================================================== */
.seo-packages-cta {
  text-align: center;
  margin: 30px 0; /* Add vertical spacing */
}

.seo-packages-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: var(--nv-orange);
  border: 2px solid var(--nv-orange);
  border-radius: 999px; /* Full rounded corners */
  text-decoration: none;
  transition: all 0.25s ease;
  background: transparent; /* Initial state with transparency */
}

.seo-packages-btn:hover {
  background: var(--nv-orange); /* Orange background on hover */
  color: var(--nv-navy); /* Navy text for contrast */
}

/* =====================================================
   LINKS IN TEXT - Optimized
===================================================== */
.article-inner a {
  color: #0b1730; /* Navy text for links */
  font-weight: 600;
  text-decoration: none;
  background-image: linear-gradient(
    to right,
    var(--nv-orange) 0%,
    var(--nv-orange) 100%
  );
  background-size: 100% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: color 0.2s ease, background-size 0.2s ease;
}

.article-inner a:hover {
  color: var(--nv-navy); /* Change link color to dark navy */
  background-size: 100% 3px; /* Increase underline thickness on hover */
}


/* =====================================================
   BOX SECTION - Optimized
===================================================== */

.box {
  width: 100%;
  max-width: 400px; /* Prevent overly wide boxes on desktop */
  height: 300px;
  margin: 50px auto;
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.5s ease;
}

.box .text {
  position: absolute;
  top: 20px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% - 40px);
  background-color: #1a252f; /* Dark plate background */
  color: var(--white); /* White text */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.box:hover {
  transform: rotateY(-25deg) skewY(3deg);
}

.box:hover .text {
  transform: rotateY(25deg) skewY(-3deg);
}

/* Top and Left Border (Orange) */
.box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 20px solid var(--nv-orange);
  border-left: 20px solid var(--nv-orange);
  box-sizing: border-box;
}

/* Bottom and Right Border (Orange) */
.box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 20px solid var(--nv-orange);
  border-right: 20px solid var(--nv-orange);
  box-sizing: border-box;
}

/* Refined Text Section */
.box .text {
  background-color: var(--white); /* White writing surface */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Subtle shadow to make it stand out */
}

.box .text div h3 {
  color: #2c3e50; /* Dark gray for better readability */
  font-weight: 700;
}

.box .text div p {
  color: #555555; /* Light gray for descriptions */
}

/* Quote Icon Design */
.box .fas {
  background-color: var(--nv-orange); /* Orange background for icons */
  color: var(--white); /* White icon */
}

/* =====================================================
   CUSTOM QUOTE BOX - Optimized
===================================================== */

.custom-quote-box {
  position: relative;
  width: 100%;
  max-width: 500px; /* Ideal width for readability */
  height: 320px;
  margin: 60px auto; /* Center and space above and below */
  background-color: transparent;
  transform-style: preserve-3d;
  perspective: 2000px;
  transition: transform 0.5s ease;
  text-align: center;
  cursor: default;
}

/* Top and Left Orange Border */
.custom-quote-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 15px solid var(--nv-orange);
  border-left: 15px solid var(--nv-orange);
  box-sizing: border-box; /* Maintain consistent box-sizing */
}

/* Bottom and Right Orange Border */
.custom-quote-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 15px solid var(--nv-orange);
  border-right: 15px solid var(--nv-orange);
  box-sizing: border-box;
}

/* Inner White Panel */
.custom-quote-box .quote-text-layer {
  position: absolute;
  top: 30px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% - 60px);
  background-color: var(--white); /* Clean white background */
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); /* Shadow for depth */
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Quote Content */
.custom-quote-box .quote-content {
  padding: 20px 40px;
}

.custom-quote-box .quote-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  color: #1a1a1a; /* Nearly black text */
  margin-bottom: 15px;
}

.custom-quote-box .quote-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #444; /* Dark gray for easier reading */
}

/* Quote Icon */
.quote-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--nv-orange);
  color: var(--white);
  font-size: 30px;
  line-height: 45px;
  font-weight: bold;
  z-index: 10;
}

.top-left {
  top: 0;
  left: 0;
}

.bottom-right {
  bottom: 0;
  right: 0;
}

/* Hover Effects */
.custom-quote-box:hover {
  transform: rotateY(-20deg) skewY(2deg);
}

.custom-quote-box:hover .quote-text-layer {
  transform: rotateY(25deg) skewY(-2deg);
  background-color: #fcfcfc; /* Slightly lighter shade on hover */
}
.word-container {
  display: flex; /* Aktivira Flexbox */
  justify-content: space-between; /* Jedan element levo, drugi desno */
  align-items: center; /* Vertikalno centriranje ako je potrebno */
  width: 100%; /* Osigurava da se širi po celoj širini roditelja */
}

.left-word {
  font-size: 16px; /* Stil za reč levo */
  color: #333; /* Boja teksta */
}

.right-word {
  font-size: 16px; /* Stil za reč desno */
  color: #333; /* Boja teksta */
}
/* =========================
   MAP SECTION – PREMIUM
========================= */

.map-section {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;

  /* suptilan okvir u brand stilu */
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(245,134,52,0.35);
}

/* gornja narandžasta linija (kao separator sekcija) */
.map-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(245,134,52,0.0),
    #f58634,
    rgba(245,134,52,0.0)
  );
  z-index: 2;
}

/* iframe */
.map-section iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: saturate(1.05) contrast(1.05);
}

/* hover – suptilan premium efekat */
.map-section:hover {
  box-shadow: 0 35px 80px rgba(0,0,0,0.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .map-section {
    margin: 60px 16px;
    border-radius: 14px;
  }

  .map-section iframe {
    height: 320px;
  }
}
.map-section:not(:hover) iframe {
  filter: grayscale(0.4) brightness(0.9);
  transition: filter 0.4s ease;
}

.map-section:hover iframe {
  filter: none;
}
/* =========================
   FULL WIDTH MAP SECTION
========================= */

.map-section-full {
  position: relative;
  width: 100%;
  height: 400px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #0b1733; /* fallback – navi */
}

/* gornja narandžasta linija – separator */
.map-section-full::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #f58634;
  z-index: 2;
}

/* donja linija – da se lepo veže sa sledećom sekcijom */
.map-section-full::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #f58634;
  z-index: 2;
}

.map-section-full iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* =========================
   CONTACT SECTION (WIDE + PREMIUM)
========================= */

.contact-section{
  background: #051021;
  padding: 90px 0;
}

/* premium “wide container” (bolje od container-fluid) */
.nv-wrap-wide{
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 56px;
  padding-right: 56px;
}

@media (max-width: 991.98px){
  .contact-section{ padding: 70px 0; }
  .nv-wrap-wide{ padding-left: 18px; padding-right: 18px; }
}

/* card base */
.contact-card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}

@media (max-width: 575.98px){
  .contact-card{ padding: 26px; border-radius: 18px; }
}

.contact-title{
  color: #fff;
  margin: 0 0 22px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

/* inputs */
.contact-input,
.contact-textarea{
  width: 100%;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 14px;
  padding: 16px 16px;
  font-size: 16px;
  color: #1f2937;
  outline: none;
  transition: 0.2s ease;
}

.contact-textarea{
  resize: vertical;
  font-family: inherit;
}

.contact-input:focus,
.contact-textarea:focus{
  border-color: rgba(245,134,52,0.65);
  box-shadow: 0 0 0 5px rgba(245,134,52,0.18);
}

/* form spacing */
.contact-form .form-row{ margin-bottom: 14px; }
.contact-form .form-row:last-of-type{ margin-bottom: 20px; }

/* button */
.contact-btn{
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #f58634 0%, #ff8a00 100%);
  box-shadow: 0 12px 30px rgba(245,134,52,0.30);
  transition: 0.2s ease;
}

.contact-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 42px rgba(245,134,52,0.38);
}

.contact-message{
  margin-top: 18px;
  font-weight: 800;
  text-align: center;
  color: #fff;
}

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

.info-card{
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 22px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  transition: 0.25s ease;
}

.info-card:hover{
  transform: translateY(-2px);
  border-color: rgba(245,134,52,0.30);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.info-icon{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f58634;
  background: rgba(245,134,52,0.10);
  flex: 0 0 auto;
  font-size: 20px;
}

.info-content h4{
  margin: 0 0 4px;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}

.info-content p{
  margin: 0;
  color: #cbd5e0;
  font-size: 16px;
}

.info-content small{
  display: block;
  margin-top: 4px;
  color: #94a3b8;
  font-size: 13px;
}

.info-content a{
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border-bottom: 2px solid rgba(245,134,52,0.55);
}

.info-content a:hover{
  border-bottom-color: rgba(245,134,52,1);
}

/* social links formatting */
.social-links{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.social-links a{
  font-weight: 800;
}

/* =========================
   FIX: bela traka ispod menija
   (najčešće je prazan element odmah posle headera)
========================= */

/* ako je ispod headera ubačen prazan “white spacer”, ubij ga */
header + .container,
header + .container-fluid{
  background: transparent !important;
}

/* ako postoji neki globalni “hero spacer” sa belom pozadinom */
.page-header,
.hero-spacer,
.section-spacer,
.blank-section{
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}
/* DEBUG – pokaži KO pravi belu traku */
body > * {
  outline: 1px dashed rgba(255,0,0,0.15);
}
/* UBICA PRAZNE HERO / PAGE SEKCIJE */
.page-header,
.hero-section,
.hero-spacer,
.section-hero,
.blank-hero,
header + section {
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  height: 0 !important;
  background: transparent !important;
  overflow: hidden;
}
.contact-section {
  margin-top: 0 !important;
  padding-top: 90px; /* ili koliko želiš */
}
.contact-container {
  max-width: 1320px;
  padding-left: 32px;
  padding-right: 32px;
}




