@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/* ========================================================
   GLOBAL STYLES & TYPOGRAPHY
======================================================== */
:root {
    --font-primary: "Roboto", sans-serif;

    /* Fluid Font Sizes for headings */
    --font-size-h1: clamp(2.5rem, 5vw, 3.5rem); /* ~40px to 56px */
    --font-size-h2: clamp(2rem, 4vw, 2.75rem); /* ~32px to 44px */
    --font-size-h3: clamp(1.5rem, 3vw, 2rem); /* ~24px to 32px */
    --font-size-h4: clamp(1.25rem, 2.5vw, 1.5rem); /* ~20px to 24px */

    /* Static Font Sizes for body text and UI elements */
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-md: 18px;
    --font-size-lg: 20px;

    /* Font Weights */
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --font-weight-black: 800;

    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-base: 1.6;
    --line-height-relaxed: 1.8;

    /* Buttons */
    --btn-font-size: 14px;
    --btn-padding-y: 12px;
    --btn-padding-x: 28px;
    --btn-border-radius: 8px;
    --btn-font-weight: var(--font-weight-bold);
    --btn-text-transform: uppercase;
    --btn-letter-spacing: 1px;
}

/* Base Body Styles */
body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-base);
    color: #333;
    background-color: #fff;
}

/* Headings */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-black);
    line-height: var(--line-height-tight);
    color: #111;
    margin-top: 0;
    margin-bottom: 0.5em;
}

h1, .h1 { font-size: var(--font-size-h1); }
h2, .h2 { font-size: var(--font-size-h2); }
h3, .h3 { font-size: var(--font-size-h3); }
h4, .h4 { font-size: var(--font-size-h4); }
h5, .h5 { font-size: var(--font-size-md); font-weight: var(--font-weight-bold); }
h6, .h6 { font-size: var(--font-size-base); font-weight: var(--font-weight-bold); }


/* Paragraphs */
p {
    /* Base paragraph styles are in body, this is for overrides if needed */
    margin-top: 0;
    margin-bottom: 1em;
}

/* Generic Button Styling */
.btn, .button, input[type="submit"], input[type="button"], .wp-block-button__link, .cta-buttons a, .btn-black, .btn-outline {
    display: inline-block;
    font-family: var(--font-primary) !important;
    font-size: var(--btn-font-size) !important;
    font-weight: var(--btn-font-weight) !important;
    text-transform: var(--btn-text-transform) !important;
    letter-spacing: var(--btn-letter-spacing) !important;
    padding: var(--btn-padding-y) var(--btn-padding-x) !important;
    border-radius: var(--btn-border-radius) !important;
    text-decoration: none !important;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.2;
}


/* ========================================================
   PREMIUM LOADER
======================================================== */
#premium-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease; /* Transition for fade out */
}

.loader-content {
  position: relative;
}

.loader-logo {
  max-width: 150px;
  animation: flicker 1.5s infinite;
}

@keyframes flicker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* When loaded, fade out the whole loader */
body.loaded #premium-loader {
  opacity: 0;
  pointer-events: none; /* Make it non-interactive after fade */
}

/* Optional: Stop the flicker when fading out */
body.loaded #premium-loader .loader-logo {
  animation: none;
}

/* ========================================================
   RENT A CAR CUSTOM SECTIONS CSS (Prethodno index.css)
======================================================== */

/* Generic Settings */
.section-main-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-black);
    text-align: center;
    margin-bottom: 10px;
    color: #0a0a0a;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-regular);
}

/* Cars Gallery Section */
#cars-gallery {
    padding: 100px 20px 80px;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.car-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid #eee;
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.car-image {
    height: 220px;
    background: #f0f0f0;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.car-info {
    padding: 25px 20px;
    text-align: center;
}

.car-info h3 {
    margin: 0 0 8px;
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-black);
    color: #111;
}

.car-price {
    color: #FDB913;
    font-weight: var(--font-weight-black);
    font-size: var(--font-size-md);
    margin-bottom: 20px;
}

.car-specs {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: #555;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

.car-specs span {
    background: #f4f4f4;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #eaeaea;
}

/* About Us Row */
#about-us-row {
    padding: 100px 20px;
    background-color: #0a0a0a;
    min-height: 750px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-3-cols {
    display: flex;
    align-items: stretch;
    width: 100%;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-3-cols > div {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
}

.col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.col-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 50px;
    border: 1px solid #222222;
    background-color: #161616;
}

.col-text h2 {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-black);
    margin-bottom: 25px;
    color: #FDB913;
}

.col-text p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: #c4c4c4;
}

/* Features & Slider */
#features-slider-section {
    padding: 80px 20px;
    overflow: hidden;
    background-color: #121212;
    color: #ffffff;
    min-height: 750px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-flex {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    gap: 60px;
}

.features-text {
    flex: 1;
    max-width: 600px;
}

.features-text h2 {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-black);
    margin-bottom: 25px;
    color: #FDB913;
}

.features-text p {
    font-size: var(--font-size-md);
    color: #c4c4c4;
    line-height: var(--line-height-base);
    margin-bottom: 20px;
}

.features-text p:last-of-type {
    margin-bottom: 35px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    color: #e0e0e0;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #FDB913;
    font-size: 20px;
    font-weight: bold;
}

.features-slider {
    flex: 1;
    position: relative;
    height: 450px;
}

.slider-track {
    display: flex;
    gap: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
}

.slider-track img {
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.slider-track .slide.active {
    width: 60%;
    flex-shrink: 0;
}

.slider-track .slide.partial {
    width: 40%;
    flex-shrink: 0;
    opacity: 0.6;
    transform: scale(0.95);
}

/* Location Map */
#location-section {
    padding: 100px 20px;
    text-align: center;
    background-color: #121212;
    min-height: 750px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#location-section .section-main-title {
    color: #FDB913;
}

#location-section .section-subtitle {
    color: #c4c4c4;
}

/* Pre-Footer Yellow CTA */
#pre-footer-cta {
    background: #FDB913;
    position: relative;
    padding: 60px 40px;
    margin: 40px auto -60px auto;
    width: 92%;
    max-width: 1400px;
    z-index: 10;
    border-radius: 24px;
    transform: translateY(30px);
}

.cta-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-content {
    flex: 0 0 50% !important;
    width: 50% !important;
    max-width: 50% !important;
}

.cta-content h2 {
    font-size: var(--font-size-h2);
    color: #0a0a0a;
    margin-bottom: 20px;
    font-weight: var(--font-weight-black);
    text-transform: uppercase;
}

.cta-content p {
    font-size: var(--font-size-md);
    color: #111;
    margin-bottom: 35px;
    line-height: var(--line-height-base);
    font-weight: var(--font-weight-medium);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}



.btn-black {
    background: #0a0a0a;
    color: #FDB913 !important;
}

.btn-black:hover {
    background: #222;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: #0a0a0a !important;
    border: 2px solid #0a0a0a;
}

.btn-outline:hover {
    background: #0a0a0a;
    color: #FDB913 !important;
}

.cta-image {
    flex: 0 0 50% !important;
    width: 50% !important;
    max-width: 50% !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-image img {
    width: 100% !important;
    max-width: 100%;
    height: auto !important;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .about-3-cols { flex-direction: column; }
    .features-flex { flex-direction: column; }
    .features-slider { width: 100%; height: 350px; }
    .slider-track { width: 100%; position: relative; overflow-x: auto; gap: 15px; }
    .slider-track .slide.active, .slider-track .slide.partial { width: 85%; flex-shrink: 0; opacity: 1; transform: none; }
    .cta-container { flex-direction: column; text-align: center; }
    .cta-content { width: 100%; margin: 0 auto; max-width: 100%; }
    .cta-buttons { justify-content: center; }
    .cta-image { width: 100%; justify-content: center; margin-top: 30px; }
    .cta-image img { width: 100%; max-width: 500px; transform: none; }
}

@media (max-width: 768px) {
    .section-main-title { font-size: 28px; }
    #cars-gallery, #about-us-row, #features-slider-section, #location-section { padding: 60px 20px; }
    #pre-footer-cta { 
        width: 95%; 
        margin: 20px auto -40px auto; 
        transform: translateY(20px); 
        border-radius: 16px; 
        padding: 50px 20px; 
    }
    .cta-content h2 { font-size: 32px; }
}

/* ========================================================
   CUSTOM OVERRIDES & STYLES (Prethodno custom-index.css)
======================================================== */
#wlcmBcg .wp-block-cover {
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    aspect-ratio: unset;
}

#wlcmBcg .hero-column-70 {
    flex-basis: 70%;
}

#wlcmBcg .hero-column-30 {
    flex-basis: 30%;
}

#wlcmBcg .wp-block-buttons {
    margin-top: 30px;
}

#contactForm {
    margin-top: 120px !important;
    padding-top: 60px;
    padding-right: 20px;
    padding-bottom: 60px;
    padding-left: 20px;
    min-height: auto;
    aspect-ratio: unset;
}

#location-section .section-main-title {
    margin-bottom: 20px;
}

.contact-svg-container svg {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

#wlcmBcg {
  position: relative !important;
  height: 700px !important;
  padding-top: 150px;
}
#wlcmBcg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/img/wlcmBcg.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.3) !important;
  z-index: -1;
}

#wlcmBcg h2 {
  color: #fff !important;
}
#wlcmBcg .has-regular-font-size {
  color: #f0f0f0 !important;
  letter-spacing: 0.5px;
  font-weight: 500;
}

#wlcmBcg .hero-subtitle {
  color: rgba(255, 255, 255, 0.95) !important;
  letter-spacing: 0.4px;
  line-height: 1.85;
  font-weight: 400;
  margin-top: 20px !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  max-width: 700px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#wlcmBcg .secondParagraph {
  color: #f0f0f0;
  line-height: 1.8;
}
#wlcmBcg .hero-additional-text {
  color: #f0f0f0;
  line-height: 1.8;
}
#partnerWhy {
  height: auto !important;
  position: relative !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  background-image: none !important;
  overflow: hidden;
}

#partnerWhy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url('/img/blackBcg.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  transform: scaleX(-1);
  z-index: -1;
  display: block !important;
}
#partnerWhy p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Remove all spacing from Network section containers */
#partnerWhy .partners-network-container,
#partnerWhy .partners-network-section,
#partnerWhy .wp-block-group {
  margin-bottom: 0 !important;
}

/* Override inline styles on Network container - deep fix */
#partnerWhy .partners-network-container[style*="padding-bottom"] {
  padding-bottom: 150px !important;
}

/* Mobile: Remove top and bottom padding on Network container */
@media (max-width: 768px) {
  #partnerWhy .partners-network-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  
  /* Override inline style padding-bottom on mobile */
  #partnerWhy .partners-network-container[style*="padding-bottom"] {
    padding-bottom: 0 !important;
  }
  
  /* Override inline style padding-top on mobile */
  #partnerWhy .partners-network-container[style*="padding-top"] {
    padding-top: 0 !important;
  }
}

/* Remove spacing from spacer element inside Network section */
#partnerWhy .wp-block-spacer {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
#aboutUsContainer ul {
  padding: 0 !important;
}
#aboutUsContainer li {
  display: flex !important;
  align-items: center;
  margin-bottom: 10px;
}
#aboutUsContainer li svg {
  width: 18px;
  height: 18px;
}
/* Remove bottom spacing from body and html */
html, body {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Remove bottom spacing from wp-site-blocks */
.wp-site-blocks {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Remove ALL block gaps from main container - force sections to touch */
main.wp-block-group.is-layout-flow {
  --wp--style--block-gap: 0 !important;
}

main.wp-block-group.is-layout-flow > * {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Force wp-site-blocks container to have no line-height spacing */
.wp-site-blocks {
  line-height: 0 !important;
  font-size: 0 !important;
}

.wp-site-blocks > * {
  line-height: normal !important;
  font-size: initial !important;
}

/* Ensure Ekosistem and Contact have absolutely zero spacing */
#ekosistem-section {
  margin: 0 !important;
  padding-bottom: 0 !important;
  display: block !important;
}

#ekosistem-section .wp-block-cover__inner-container {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* Force sections to touch - nuclear option */
section#ekosistem-section {
  display: block !important;
  margin: 0 !important;
  border: none !important;
  outline: none !important;
  line-height: 0 !important;
}

section#ekosistem-section {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

/* Ensure main container has no spacing issues */
main {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  display: block !important;
  border: none !important;
  line-height: 0 !important;
}

/* Remove spacing from last child of main */
main > *:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Specifically target Network section as last child */
main > #partnerWhy,
main > #partnerWhy > *,
main > #partnerWhy .partners-network-container {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Nuclear option - override WordPress core spacing */
:where(.wp-site-blocks) > main {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

:where(.wp-site-blocks) > footer {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

/* Force Ekosistem section to have fixed background for seamless transition */
#ekosistem-section .wp-block-cover__background {
  background-attachment: fixed !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

@media (max-width: 500px) {
  .purpose-label-en {
    font-size: 19px !important;
  }
  
  .purpose-main-text {
    font-size: 15px !important;
  }
  
  .purpose-secondary-text {
    font-size: 16px !important;
  }
  
  
  
  /* Layout modifications */
  #cars-gallery, #about-us-row, #features-slider-section, #location-section {
    padding: 40px 15px !important;
    min-height: auto !important;
  }
  .about-3-cols, .features-flex {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .col-text, .features-text {
    padding: 20px 15px !important;
  }
  .cta-content h2 {
    font-size: 24px !important;
  }
}

/* Language dropdown styling */
.language-dropdown {
  margin-left: 20px;
}

.language-selector {
  position: relative;
}

.language-select {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 25px 8px 12px;
  font-family: "Exo 2", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  border-radius: 0;
  min-width: 60px;
}

.language-select:focus {
  outline: none;
  border-color: #fcb900;
}

.language-select:hover {
  color: #fcb900;
  border-color: #fcb900;
}

/* Custom dropdown arrow */
.language-selector::after {
  content: '▼';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 10px;
  pointer-events: none;
}

.language-select:hover + .language-selector::after,
.language-selector:hover::after {
  color: #fcb900;
}

/* Style dropdown options */
.language-select option {
  background-color: #000;
  color: #fff;
  padding: 10px;
  font-weight: normal;
  text-transform: uppercase;
}

.language-select option:hover {
  background-color: #333;
  color: #fcb900;
}

/* Mobile menu container */
.mobile-menu-container {
  display: none;
  align-items: center;
  gap: 15px;
}

/* Mobile language dropdown */
.mobile-language {
  margin-left: 0;
}

/* Hide navigation on mobile */
@media (max-width: 767px) {
  .wp-block-navigation {
    display: none !important;
  }

  /* Hide desktop language dropdown on mobile */
  .language-dropdown:not(.mobile-language) {
    display: none;
  }

  /* Show mobile menu container */
  .mobile-menu-container {
    display: flex;
  }

  /* Hamburger menu styles */
  .hamburger-menu {
    display: block;
    position: relative;
    z-index: 1001;
  }

  .hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1002;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 2px 0;
    transition: all 0.3s ease;
    transform-origin: center;
    position: relative;
  }

  .hamburger-btn.active .hamburger-line:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    margin: 0;
  }

  .hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
    margin: 0;
  }

  .hamburger-btn.active .hamburger-line:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    margin: 0;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .mobile-menu.active {
    transform: translateX(0);
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .mobile-menu li {
    margin: 20px 0;
  }

  .mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
  }
  
  @media (max-width: 500px) {
    .mobile-menu a {
      font-size: 19px;
    }
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus {
    color: #fcb900;
    outline: none !important;
    box-shadow: none !important;
  }
}

/* Hide hamburger menu and mobile language on desktop */
@media (min-width: 768px) {
  .mobile-menu-container {
    display: none !important;
  }
  
  .hamburger-menu {
    display: none !important;
  }
  
  .mobile-menu {
    display: none !important;
  }
  
  .mobile-language {
    display: none !important;
  }
}

/* Remove border/outline from logo on click/focus */
.custom-logo-link:focus,
.custom-logo-link:active,
.custom-logo-link:focus-visible {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Responsive fix for #wlcmBcg height on small screens */
@media (max-width: 560px) {
  #wlcmBcg {
    height: auto !important;
    min-height: none !important;
    padding-top: 60px;
  }
}

/* Font size adjustments for #wlcmBcg hero section on screens below 500px */
@media (max-width: 500px) {
  /* Hero section - keep original sizes */
  #wlcmBcg {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding-top: 0 !important;
    min-height: 500px !important;
    height: 500px !important;
  }
  
  #wlcmBcg > .wp-block-cover {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  #wlcmBcg h2 {
    font-size: 24px !important;
    line-height: 1.3 !important;
  }
  
  /* Increase font size for Skynex Global text on small screens */
  #wlcmBcg h2.wp-block-heading strong {
    font-size: 32px !important;
  }
  
  #wlcmBcg .has-regular-font-size {
    font-size: 15px !important;
  }
  
  #wlcmBcg .hero-subtitle {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }
  
  #wlcmBcg .secondParagraph,
  #wlcmBcg .hero-additional-text {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
  
  #wlcmBcg .wp-block-button__link {
    font-size: 13px !important;
    padding: 10px 18px !important;
  }
  
  /* Increase other non-hero text elements */
  .purpose-label-en {
    font-size: 19px !important;
  }
  
  .purpose-main-text {
    font-size: 15px !important;
  }
  
  .purpose-secondary-text {
    font-size: 16px !important;
  }
}

/* Safety fix for main container gap */
main {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
main::after {
  display: none !important;
  content: none !important;
}

/* Nuclear option - ensure zero gap between main closing and footer opening */
.wp-site-blocks > main:last-of-type {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.wp-site-blocks > main:last-of-type + footer {
  margin-top: 0 !important;
  margin-block-start: 0 !important;
  padding-top: 0 !important;
}

/* Fix Max-Width for Hero Content */
#wlcmBcg .wp-block-cover__inner-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Hero Buttons Restyling */
#wlcmBcg .wp-block-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px !important;
}



/* First Button (Primary) */
#wlcmBcg .wp-block-button:nth-child(1) .wp-block-button__link {
  background-color: #FDB913 !important;
  color: #0a0a0a !important;
}

#wlcmBcg .wp-block-button:nth-child(1) .wp-block-button__link:hover {
  background-color: #ffc94d !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 25px rgba(253, 185, 19, 0.3) !important;
}

/* Second Button (Secondary/Outline) */
#wlcmBcg .wp-block-button:nth-child(2) .wp-block-button__link {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  border-color: #fff !important;
  backdrop-filter: blur(5px);
}

#wlcmBcg .wp-block-button:nth-child(2) .wp-block-button__link:hover {
  background-color: #fff !important;
  color: #0a0a0a !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2) !important;
}

/* ============================================
   OUR PURPOSE SECTION - REDESIGNED
   ============================================ */

/* Section Container */
#values-section {
  background: var(--color-dark) !important;
  background-image: url('/img/blackBcg.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
  overflow: hidden;
}

.our-purpose-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header Styling */
.our-purpose-header {
  text-align: left;
  margin-bottom: 50px;
}

.purpose-label-wrapper {
  margin-bottom: 24px;
}

.purpose-label-en {
  display: block;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #FDB913;
  margin-bottom: 32px;
  position: relative;
  line-height: 1.2;
}

.purpose-label-en::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #FDB913;
  border-radius: 2px;
}

/* Content Layout */
.our-purpose-content {
  display: block;
  width: 100%;
}

.purpose-text-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
}

/* Main Text - Regular text */
.purpose-main-text {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Secondary Text - Larger, in focus */
.purpose-secondary-text {
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 500;
  padding-left: 16px;
  border-left: 3px solid #FDB913;
  max-width: 700px;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .our-purpose-container {
    padding: 0 35px;
  }
  
  #values-section {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  
  .our-purpose-header {
    margin-bottom: 50px;
  }
  
  .purpose-text-block {
    gap: 28px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .our-purpose-container {
    padding: 0 25px;
  }
  
  #values-section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  
  .our-purpose-header {
    margin-bottom: 40px;
  }
  
  .purpose-label-en {
    font-size: clamp(20px, 3.5vw, 28px);
    letter-spacing: -0.02em;
  }

  .purpose-text-block {
    gap: 24px;
  }

  .purpose-main-text {
    font-size: 16px;
    line-height: 1.5;
  }

  .purpose-secondary-text {
    font-size: clamp(16px, 1.8vw, 18px);
    padding-left: 16px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .our-purpose-container {
    padding: 0 20px;
  }
  
  #values-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  
  .our-purpose-header {
    margin-bottom: 35px;
  }
  
  .purpose-label-en {
    font-size: 20px;
    letter-spacing: -0.02em;
  }

  .purpose-text-block {
    gap: 20px;
  }

  .purpose-main-text {
    font-size: 15px;
    line-height: 1.5;
  }

  .purpose-secondary-text {
    font-size: 16px;
    line-height: 1.6;
    padding-left: 14px;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .our-purpose-container {
    padding: 0 18px;
  }

  .purpose-label-en {
    font-size: 18px;
  }

  .purpose-main-text {
    font-size: 14px;
  }

  .purpose-secondary-text {
    font-size: 14px;
  }
}

/* ===================================
   MODERN CAR CARDS
   =================================== */
#cars-gallery .cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  #cars-gallery .cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #cars-gallery .cars-grid {
    grid-template-columns: 1fr;
  }
}

#cars-gallery .car-card {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  background: #ffffff !important;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease !important;
  display: flex;
  flex-direction: column;
}

#cars-gallery .car-card:hover {
  border-color: rgba(253, 185, 19, 0.6) !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

#cars-gallery .car-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

#cars-gallery .car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#cars-gallery .car-card:hover .car-image img {
  transform: scale(1.05);
}

#cars-gallery .car-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#cars-gallery .car-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

#cars-gallery .car-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

#cars-gallery .car-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2b2b2b;
  text-align: left;
  margin: 0;
  line-height: 1.3;
}

#cars-gallery .car-year {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  text-align: left;
}

#cars-gallery .car-price-wrap {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#cars-gallery .car-price-inline {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FDB913;
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

#cars-gallery .car-price-inline span {
  font-size: 0.9rem;
  color: #555;
  font-weight: 600;
}

#cars-gallery .car-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 12px;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: auto;
}

#cars-gallery .spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #444;
  font-size: 0.95rem;
  font-weight: 500;
}

#cars-gallery .spec-item svg {
  color: #FDB913;
  flex-shrink: 0;
}

#cars-gallery .car-action {
  margin-top: auto;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

#cars-gallery .btn-book {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  background: transparent;
  border: 1px solid rgba(253, 185, 19, 0.5);
  color: #FDB913;
  padding: 12px 10px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

#cars-gallery .btn-book:hover {
  background: #FDB913;
  color: #000;
  border-color: #FDB913;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(253, 185, 19, 0.2);
}

#cars-gallery .btn-info {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  color: #1a1a1a;
  padding: 12px 5px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

#cars-gallery .btn-info:hover {
  background: #0a0a0a;
  color: #FDB913;
  border-color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===================================
   VIEW ALL BUTTON
   =================================== */
#cars-gallery .view-all-wrap {
  text-align: center;
  margin-top: 50px;
}

#cars-gallery .btn-view-all {
  display: inline-block;
  background: #FDB913;
  color: #0a0a0a;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

#cars-gallery .btn-view-all:hover {
  background: #0a0a0a;
  color: #FDB913;
  border-color: #FDB913;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(253, 185, 19, 0.3);
}

/* ===================================
   CAR INFO MODAL
   =================================== */
.car-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.car-modal.active {
  opacity: 1;
  visibility: visible;
}

.car-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.car-modal-container {
  position: relative;
  background: #ffffff;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  transform: scale(0.95) translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.car-modal.active .car-modal-container {
  transform: scale(1) translateY(0);
}

.car-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.1);
  color: #000;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.car-modal-close:hover {
  background: #FDB913;
  color: #000;
  transform: rotate(90deg);
}

.car-modal-gallery {
  flex: 1;
  background: #f8f9fa;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-right: 1px solid #eaeaea;
}

.car-modal-main-img {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.car-modal-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.car-modal-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 5px 0;
}

.car-modal-thumb {
  width: 90px;
  height: 65px;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  object-fit: cover;
}

.car-modal-thumb:hover {
  opacity: 0.8;
}

.car-modal-thumb.active {
  opacity: 1;
  border-color: #FDB913;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(253, 185, 19, 0.3);
}

.car-modal-details {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.car-modal-details h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 5px 0;
  color: #1a1a1a;
  line-height: 1.2;
}

.car-modal-year {
  color: #777;
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 0 20px 0;
}

.car-modal-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: #FDB913;
  margin: 0 0 25px 0;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.car-modal-price span {
  font-size: 1.1rem;
  color: #666;
  font-weight: 600;
}

.car-modal-desc {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.car-modal-specs-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #1a1a1a;
}

.car-modal-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 35px;
}

.car-modal-specs .spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
  font-size: 0.95rem;
  font-weight: 600;
  background: #f8f9fa;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.car-modal-specs .spec-item:hover {
  background: #fff;
  border-color: #FDB913;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.car-modal-specs .spec-item svg {
  color: #FDB913;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.car-modal-action {
  margin-top: auto;
}

.btn-book-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #0a0a0a;
  color: #FDB913;
  padding: 16px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #0a0a0a;
}

.btn-book-modal:hover {
  background: #FDB913;
  color: #000;
  border-color: #FDB913;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(253, 185, 19, 0.3);
}

/* Scrollbar Styling for Modal */
.car-modal-details::-webkit-scrollbar {
  width: 6px;
}
.car-modal-details::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.car-modal-details::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.car-modal-details::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* Mobile Responsive Modal */
@media (max-width: 900px) {
  .car-modal-container {
    flex-direction: column;
    max-height: 95vh;
    width: 95%;
  }
  .car-modal-gallery {
    padding: 20px;
    border-right: none;
    border-bottom: 1px solid #eaeaea;
  }
  .car-modal-main-img {
    height: 250px;
  }
  .car-modal-details {
    padding: 25px;
  }
  .car-modal-price {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .car-modal-desc {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  .car-modal-specs {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Centriranje Location sekcije i odvajanje od dna */
#location-section {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}

@media (max-width: 768px) {
  #location-section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
}

/* Info Blocks ispod mape */
.contact-info-blocks {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.info-block {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 20px;
}

.info-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  margin-bottom: 15px;
}

.info-value {
  color: #FDB913;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .contact-info-blocks {
    flex-direction: column;
    gap: 20px;
  }
  
  .info-block {
    padding: 10px;
  }
}

/* DOT MAP STYLES */
.dot-map-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  margin-top: 60px;
  margin-bottom: 80px;
  width: 100%;
  position: relative;
}

.dot-map-container {
  display: grid;
  grid-template-columns: repeat(55, 1fr);
  grid-template-rows: repeat(35, 1fr);
  gap: 4px;
  position: relative;
  padding: 20px;
}

.map-cell {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

@media (min-width: 768px) {
  .dot-map-container { gap: 6px; }
  .map-cell { width: 9px; height: 9px; }
}

@media (min-width: 1024px) {
  .dot-map-container { gap: 8px; }
  .map-cell { width: 11px; height: 11px; }
}

.map-cell.active-dot { 
  background-color: #777; /* Blago posvetljeno da lepše sija kroz 3D senku */
}

/* LOKACIJA MARKER NA MAPI */
.map-location-marker {
  position: absolute;
  /* Približna pozicija Srbije na 55x35 dot mapi (ako je potrebno, korigujte procente ispod) */
  top: 44%;
  left: 56%;
  z-index: 10;
}

.marker-pulse {
  width: 12px;
  height: 12px;
  background-color: #FDB913;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(253, 185, 19, 0.7);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(253, 185, 19, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(253, 185, 19, 0); }
  100% { box-shadow: 0 0 0 0 rgba(253, 185, 19, 0); }
}

.marker-popup {
  position: absolute;
  bottom: 15px; /* Izdiže popup iznad pulsirajuće tačke */
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  border: 1px solid rgba(253, 185, 19, 0.4);
  padding: 10px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.marker-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 7px;
  border-style: solid;
  border-color: #1a1a1a transparent transparent transparent;
}

.marker-flag {
  width: 30px;
  height: 22px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.marker-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.marker-info strong {
  color: #FDB913;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.marker-info span {
  color: #e0e0e0;
  font-size: 12px;
  line-height: 1;
}

/* ===================================
   CONTACT FORM SECTION
   =================================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.contact-left {
  display: flex;
  flex-direction: column;
}

.contact-heading {
  color: #000000;
  margin-bottom: 15px;
}

.contact-paragraph {
  color: #333333;
  font-size: var(--font-size-md);
  line-height: var(--line-height-base);
  margin-bottom: 40px;
}

.contact-svg-container {
  width: 100%;
  max-width: 600px;
}

.custom-contact-form {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.custom-contact-form input,
.custom-contact-form textarea {
  width: 100%;
  background: transparent !important;
  border: none;
  border-bottom: 1px solid #000000 !important;
  color: #000000 !important;
  padding: 12px 0;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none !important;
  box-shadow: none !important;
}

.custom-contact-form input::placeholder,
.custom-contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.6) !important;
}

.custom-contact-form input:focus,
.custom-contact-form textarea:focus {
  border-bottom-color: #FDB913 !important;
}

.custom-contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  background-color: #FDB913 !important;
  color: #000000 !important;
  border: 2px solid #FDB913 !important;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 10px;
}

.contact-submit-btn:hover {
  background-color: transparent !important;
  color: #000000 !important;
}

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .contact-heading {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .contact-submit-btn {
    width: 100%;
    text-align: center;
  }
}

/* ========================================================
   CLONE.CSS
======================================================== */

/* Sakrij WordPress "Skip to content" linkove */
.skip-link,
.screen-reader-text {
    display: none !important;
}

header * {
    box-sizing: border-box;
}

header .alignfull {
    padding: 15px 30px !important;
}

header .is-layout-flex {
    display: flex !important;
    align-items: center !important;
}

header .is-content-justification-space-between {
    justify-content: space-between !important;
}

header .wp-block-group.alignwide.is-content-justification-space-between.is-layout-flex {
    flex-wrap: nowrap !important;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

header .wp-block-group.alignwide > .wp-block-group.is-layout-flex:last-child {
    gap: 30px;
}

header .wp-block-site-logo {
    flex-shrink: 0;
}

@media (max-width: 767px) {
    header .alignfull {
        padding: 10px 20px !important;
    }
}

/* Navigation horizontal styling for main menu */
.wp-block-navigation__container.is-responsive.wp-block-navigation {
  display: flex;
  flex-direction: row !important;
  justify-content: center;
  align-items: center;
  gap: 32px; /* space between items */
  padding: 0;
  margin: 0;
  list-style: none;
}

.wp-block-navigation-item.wp-block-navigation-link {
  margin: 0;
  padding: 0;
}

.wp-block-navigation-item__content {
  font-size: 0.96rem;
  font-weight: 500;
  color: #f0f0f0e5 !important;
  text-decoration: none;
  letter-spacing: 1.5px;
  padding: 8px 0;
  transition: color 0.2s;
  border: none;
  background: none;
  display: inline-block;
}

.wp-block-navigation-item__content:hover,
.wp-block-navigation-item__content:focus {
  color: #ffd600;
  text-decoration: none;
  outline: none !important;
  box-shadow: none !important;
}

/* Responsive: stack vertically on small screens */
@media (max-width: 700px) {
  .wp-block-navigation__container.is-responsive.wp-block-navigation {
    flex-direction: column;
    gap: 18px;
  }
}

/* ===================================
   HEADER STYLING - Language Dropdown & Mobile Menu
   =================================== */

/* Language dropdown styling */
.language-dropdown {
  margin-left: 20px;
}

.language-selector {
  position: relative;
}

.language-select {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 25px 8px 12px;
  font-family: "Exo 2", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  border-radius: 0;
  min-width: 60px;
}

.language-select:focus {
  outline: none;
  border-color: #fcb900;
}

.language-select:hover {
  color: #fcb900;
  border-color: #fcb900;
}

/* Custom dropdown arrow */
.language-selector::after {
  content: '▼';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 10px;
  pointer-events: none;
}

.language-select:hover + .language-selector::after,
.language-selector:hover::after {
  color: #fcb900;
}

/* Style dropdown options */
.language-select option {
  background-color: #000;
  color: #fff;
  padding: 10px;
  font-weight: normal;
  text-transform: uppercase;
}

.language-select option:hover {
  background-color: #333;
  color: #fcb900;
}

/* Mobile menu container */
.mobile-menu-container {
  display: none;
  align-items: center;
  gap: 15px;
}

/* Mobile language dropdown */
.mobile-language {
  margin-left: 0;
}

/* Hide navigation on mobile */
@media (max-width: 767px) {
  .wp-block-navigation {
    display: none !important;
  }

  /* Hide desktop language dropdown on mobile */
  .language-dropdown:not(.mobile-language) {
    display: none;
  }

  /* Show mobile menu container */
  .mobile-menu-container {
    display: flex;
  }

  /* Hamburger menu styles */
  .hamburger-menu {
    display: block;
    position: relative;
    z-index: 1001;
  }

  .hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1002;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 2px 0;
    transition: all 0.3s ease;
    transform-origin: center;
    position: relative;
  }

  .hamburger-btn.active .hamburger-line:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    margin: 0;
  }

  .hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
    margin: 0;
  }

  .hamburger-btn.active .hamburger-line:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    margin: 0;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .mobile-menu.active {
    transform: translateX(0);
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .mobile-menu li {
    margin: 20px 0;
  }

  .mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
  }
  
  @media (max-width: 500px) {
    .mobile-menu a {
      font-size: 19px;
    }
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus {
    color: #fcb900;
    outline: none !important;
    box-shadow: none !important;
  }
}

/* Hide hamburger menu and mobile language on desktop */
@media (min-width: 768px) {
  .mobile-menu-container {
    display: none !important;
  }
  
  .hamburger-menu {
    display: none !important;
  }
  
  .mobile-menu {
    display: none !important;
  }
  
  .mobile-language {
    display: none !important;
  }
}

/* Footer Newsletter Styling */
.footer-newsletter {
  margin-top: 24px;
  margin-bottom: 24px;
}

.newsletter-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffd600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px 0;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f0f0f0;
  padding: 12px 16px;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: #ffd600;
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-input.error {
  border-color: #C51919;
  background: rgba(197, 25, 25, 0.1);
}

.newsletter-input::placeholder {
  color: #888;
}

.newsletter-submit {
  background: #ffd600;
  border: none;
  color: #000;
  padding: 12px 16px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.newsletter-submit:hover {
  background: #ffed4e;
  transform: translateY(-2px);
}

.newsletter-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.newsletter-submit:disabled:hover {
  background: #ffd600;
  transform: none;
}

/* Newsletter feedback messages */
.newsletter-message {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  line-height: 1.4;
  animation: slideIn 0.3s ease;
  transition: opacity 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.newsletter-message-success {
  background-color: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4caf50;
}


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

.footer-location {
  font-size: 14px;
  color: #cccccc;
  margin: 0;
  font-weight: 400;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.98rem;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none !important;
  box-shadow: none !important;
}

.footer-column ul li a:hover,
.footer-column ul li a:focus {
  color: var(--color-primary);
  transform: translateX(4px);
  outline: none !important;
  box-shadow: none !important;
}

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

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd600;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.footer-email {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  outline: none !important;
  box-shadow: none !important;
}

.footer-email:focus {
  outline: none !important;
  box-shadow: none !important;
}

.footer-email:hover,
.footer-email:focus {
  color: var(--color-primary);
  outline: none !important;
  box-shadow: none !important;
}

.footer-brand .footer-email {
  font-size: 14px;
  color: #cccccc;
}

.footer-bottom {
  padding-top: 40px;
}

.footer-accent-line {
  width: 100px;
  height: 3px;
  background: var(--color-primary);
  margin: 0 auto 20px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 13px;
  color: #888888;
  margin: 0;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #cccccc;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none !important;
  box-shadow: none !important;
}

.footer-social-icon svg {
  width: 100%;
  height: 100%;
}

.footer-social-icon[aria-label="Instagram"] svg {
  width: 85%;
  height: 85%;
}

.footer-social-icon:hover,
.footer-social-icon:focus {
  color: var(--color-primary);
  transform: translateY(-2px);
  outline: none !important;
  box-shadow: none !important;
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

@media (max-width: 768px) {
  .skynex-footer {
    padding: 40px 20px 30px;
  }

  .footer-top {
    gap: 40px;
  }

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

  .footer-created-text {
    font-size: 16px;
  }

  .newsletter-form {
    max-width: 100%;
  }

  .newsletter-input {
    font-size: 14px;
    padding: 12px 14px;
  }

  .newsletter-submit {
    padding: 12px 16px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   UAV MAINTENANCE & SUPPORT SECTION
   ============================================ */

.uav-maintenance-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
}

.uav-maintenance-container {
  max-width: 1200px;
  margin: 0 auto;
}

.uav-maintenance-header {
  text-align: center;
  margin-bottom: 60px;
}

.uav-maintenance-title {
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 700;
  color: #FDB913;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.uav-maintenance-subtitle {
  font-size: 17px;
  line-height: 1.8;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.uav-maintenance-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.uav-maintenance-image {
  flex: 1;
  position: relative;
}

.uav-maintenance-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@media (min-width: 500px) and (max-width: 1024.99px) {
  .uav-maintenance-image img {
    height: 300px;
    object-fit: cover;
  }
}

.uav-maintenance-text {
  flex: 1;
  color: #ffffff;
}

.uav-maintenance-text p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.9;
}

.uav-maintenance-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.uav-maintenance-features li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 30px;
  position: relative;
  color: #ffffff;
  opacity: 0.85;
}

.uav-maintenance-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #FDB913;
  font-size: 18px;
  font-weight: bold;
}

.uav-maintenance-features li strong {
  color: #FDB913;
  font-weight: 600;
}

.uav-maintenance-cta {
  margin-top: 40px;
}

.uav-cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: #FDB913;
  color: #0a0a0a;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
}

.uav-cta-button:hover {
  background: #ffc94d;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(253, 185, 19, 0.3);
}

.media-careers-section {
  margin-bottom: 0;
}

.media-careers-section .uav-maintenance-text a {
  color: #FDB913;
  text-decoration: none;
  transition: color 0.3s ease;
}

.media-careers-section .uav-maintenance-text a:hover {
  color: #ffc94d;
  text-decoration: underline;
}

/* === RESPONSIVE DESIGN === */

@media (max-width: 1024px) {
  .hero-split-inner {
    grid-template-columns: 1fr;
  }

  .hero-split-right {
    min-height: 400px;
  }

  .sta-radimo-block {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "content"
      "image" !important;
  }

  .partners-network-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .partners-network-right {
    justify-content: flex-start;
  }

  .partners-logos-section {
    justify-content: flex-start;
  }

  .partners-logos-grid {
    max-width: 100%;
    width: 100%;
    gap: 20px;
  }

  .partner-logo {
    max-height: 180px;
  }

  .uav-maintenance-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-main-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-image-column {
    position: relative;
    top: 0;
  }

  .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-main-image {
    height: 500px;
    object-fit: cover;
  }

  .about-columns {
    gap: 50px;
    flex-direction: column;
  }

  .about-columns .wp-block-column {
    flex-basis: 100% !important;
    width: 100% !important;
  }

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

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-split-left {
    padding: 60px 30px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-btn {
    text-align: center;
  }

  .ekosistem-content {
    padding: 0;
  }

  .ekosistem-cards {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .ekosistem-card {
    margin-bottom: 30px;
  }

  .sta-radimo-section {
    padding: 80px 30px !important;
  }

  .sta-radimo-grid {
    gap: 80px;
  }

  .values-section {
    padding: 80px 30px !important;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .partners-network-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .partners-network-right {
    justify-content: flex-start;
  }

  .partners-logos-section {
    justify-content: flex-start;
  }

  .partners-logos-grid {
    max-width: 100%;
    width: 100%;
  }

  .partner-logo {
    max-height: 160px;
  }

  .about-section {
    padding: 80px 30px 80px 30px !important;
  }

  .about-main-grid {
    gap: 50px;
  }

  #aboutUsContainer .about-title {
    font-size: clamp(20px, 3.5vw, 28px);
  }

  #aboutUsContainer .about-text {
    font-size: 16px;
  }

  .about-divider {
    margin: 40px 0 20px 0;
  }

  .timeline-item {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }

  .timeline-dot {
    width: 16px;
    height: 16px;
  }

  .timeline-line {
    width: 2px;
    min-height: 100px;
  }

  .timeline-label {
    font-size: 11px;
    padding: 4px 12px;
  }

  .timeline-heading {
    font-size: 20px;
  }

  .timeline-text {
    font-size: 14px;
  }

  .contact-inner {
    padding: 60px 20px;
  }

  
.uav-maintenance-section {
    padding: 60px 20px !important;
  }

  .uav-maintenance-content {
    flex-direction: column;
    gap: 30px;
  }
}

/* Additional font size fixes for screens below 500px */
@media (max-width: 500px) {
  /* Hero section - keep original sizes (do not increase) */
  .hero-section-new .hero-main-title,
  .hero-split-container .hero-main-title {
    font-size: 28px !important;
  }
  
  .hero-section-new .hero-subtitle,
  .hero-split-container .hero-subtitle {
    font-size: 18px !important;
  }
  
  .hero-section-new .hero-tagline,
  .hero-split-container .hero-tagline {
    font-size: 14px !important;
  }
  
  .hero-section-new .hero-description,
  .hero-split-container .hero-description {
    font-size: 14px !important;
  }
  
  .hero-section-new .hero-btn,
  .hero-split-container .hero-btn {
    font-size: 12px !important;
    padding: 10px 16px !important;
  }
  
  /* Non-hero sections - increase slightly */
  .sta-radimo-cta {
    font-size: 13px !important;
    padding: 9px 18px !important;
  }
  
  .partners-network-cta {
    font-size: 13px !important;
    padding: 11px 20px !important;
  }
  
  .uav-cta-button {
    font-size: 14px !important;
    padding: 11px 20px !important;
  }
  
  
.ekosistem-title {
    font-size: 30px !important;
  }
  
  .ekosistem-subtitle {
    font-size: 16px !important;
  }
  
  .ekosistem-card-title {
    font-size: 21px !important;
  }
  
  .ekosistem-card-desc {
    font-size: 16px !important;
  }
  
  .sta-radimo-title {
    font-size: 30px !important;
  }
  
  .sta-radimo-intro {
    font-size: 16px !important;
  }
  
  .sta-radimo-subtitle {
    font-size: 16px !important;
  }
  
  .sta-radimo-block-title {
    font-size: 25px !important;
  }
  
  .sta-radimo-block-subtitle {
    font-size: 17px !important;
  }
  
  .sta-radimo-block-text {
    font-size: 16px !important;
  }
  
  .values-main-title {
    font-size: 30px !important;
  }
  
  .value-title {
    font-size: 25px !important;
  }
  
  .value-text {
    font-size: 16px !important;
  }
  
  .partners-network-title {
    font-size: 30px !important;
  }
  
  .partners-network-text {
    font-size: 16px !important;
  }
  
  .partners-network-label {
    font-size: 16px !important;
  }
  
  .partners-network-list-text {
    font-size: 16px !important;
  }
  
  #aboutUsContainer .about-section-title {
    font-size: 30px !important;
  }
  
  #aboutUsContainer .about-title {
    font-size: 19px !important;
  }
  
  #aboutUsContainer .about-text {
    font-size: 15px !important;
  }
  
  .about-feature-text {
    font-size: 15px !important;
  }
  
  .timeline-heading {
    font-size: 19px !important;
  }
  
  .timeline-text {
    font-size: 14px !important;
  }
  
  .contact-main-title {
    font-size: 30px !important;
  }
  
  .contact-subtitle {
    font-size: 19px !important;
  }
  
  .contact-intro-text {
    font-size: 16px !important;
  }
  
  
.uav-maintenance-title {
    font-size: 30px !important;
  }
  
  .uav-maintenance-subtitle {
    font-size: 16px !important;
  }
  
  .uav-maintenance-text p {
    font-size: 16px !important;
  }
  
  .uav-maintenance-features li {
    font-size: 15px !important;
  }
  
  #aboutUsContainer .about-section-description,
  #aboutSectionDescription {
    font-size: 16px !important;
  }
}

/* ============================================
   YOUTUBE TOAST NOTIFICATION STYLES
   ============================================ */

.skynex-toast {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid rgba(253, 185, 19, 0.3);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(253, 185, 19, 0.1);
  backdrop-filter: blur(10px);
  min-width: 320px;
  max-width: 400px;
  animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.skynex-toast-header {
  background: #0a0a0a !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
  color: #FDB913 !important;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px 8px 0 0;
}

.skynex-toast-header strong {
  color: #FDB913;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.skynex-toast-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.skynex-toast-header .btn-close:hover {
  opacity: 1;
}

.skynex-toast-body {
  color: #f0f0f0;
  padding: 16px;
  font-size: 14px;
  line-height: 1.6;
  background: transparent;
}

#youtube-toast-container {
  z-index: 9999;
}

@media (max-width: 480px) {
  .skynex-toast {
    min-width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin: 0 20px 20px 20px;
  }
  
  .skynex-toast-body {
    font-size: 13px;
  }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #FDB913;
  color: #000;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 1000;
}

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

/* ===================================
   MODERN SITE FOOTER STYLING (FINAL & CORRECT - OVERRIDE)
   =================================== */

.site-footer {
  background-color: #0a0a0a;
  color: #f0f0f0;
  position: relative;
  font-family: "Roboto", sans-serif;
  margin-top: 100px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top-cta {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  transform: translateY(-80px);
  margin-bottom: -40px;
  position: relative;
  z-index: 20;
}

.cta-box {
  background: linear-gradient(135deg, #FDB913 0%, #d49a0e 100%);
  border-radius: 20px;
  padding: 0 0 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.cta-text {
  flex: 0 0 50%;
  position: relative;
  z-index: 2;
  padding-right: 60px;
}

.cta-text h2 {
  color: #000;
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.cta-text p {
  color: rgba(0, 0, 0, 0.8);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 30px 0;
  font-weight: 500;
}

.cta-actions {
  display: flex;
  gap: 15px;
}

.cta-btn-solid, .cta-btn-outline {
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  display: inline-block;
  text-align: center;
}

.cta-btn-solid {
  background-color: #000;
  color: #FDB913 !important;
  border: 2px solid #000;
}

.cta-btn-solid:hover {
  background-color: transparent;
  color: #000 !important;
}

.cta-btn-outline {
  background-color: transparent;
  color: #000 !important;
  border: 2px solid #000;
}

.cta-btn-outline:hover {
  background: #000;
  color: #FDB913 !important;
}

.cta-visual {
  flex: 0 0 50%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 180px;
}

.cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
  transition: transform 0.5s ease;
  transform-origin: right;
  transform: scale(0.9);
}

.footer-main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

.footer-grid-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-column h5, .footer-column h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  position: relative;
}

.footer-column h5::after, .footer-column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 30px;
  height: 2px;
  background-color: #FDB913;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.98rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column a:hover {
  color: #FDB913;
  transform: translateX(5px);
}

.footer-newsletter-form {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.footer-newsletter-form input {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 15px;
  color: #fff;
  font-size: 14px;
  border-radius: 6px 0 0 6px;
  outline: none;
  transition: border-color 0.3s;
}

.footer-newsletter-form input:focus {
  border-color: #FDB913;
}

.footer-newsletter-form button {
  background-color: #FDB913;
  border: none;
  padding: 0 20px;
  border-radius: 0 6px 6px 0;
  color: #000;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-social-icons {
    display: flex;
    gap: 12px;
}

@media (max-width: 900px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
    min-height: 0;
  }
  .cta-text {
    padding-right: 0;
  }
  .cta-actions {
    justify-content: center;
  }
  .cta-visual {
    margin-top: 40px;
    justify-content: center;
    width: 100%;
    max-width: 350px;
  }
  .cta-visual img {
    transform: scale(1);
  }
  .footer-grid-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }
}

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