/* ============================================
   NajemiCamper.si - Glavni stil (MODRA/ZELENA SHEMA)
   ============================================ */

/* ----- 1. SPREMENLJIVKE ----- */
:root {
    /* Barve - MODRA/ZELENA SHEMA */
    --primary-color: #0d9488;       /* Teal/zelen */
    --primary-dark: #0f766e;       /* Dark teal */
    --primary-light: #14b8a6;      /* Light teal */
    --secondary-color: #1e293b;    /* Dark slate */
    --accent-color: #3b82f6;       /* Blue */
    
    --white: #ffffff;
    --off-white: #f0fdfa;
    --light-gray: #e2e8f0;
    --gray: #94a3b8;
    --dark-gray: #64748b;
    --black: #0f172a;
    --text-dark: #1e293b;
    --text-light: #475569;
    
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-round: 50%;
}

/* ----- 2. OSNOVNI STILI ----- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* ----- 3. KONTEJNER ----- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----- 4. GUMBI ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    max-width: 100vw;
    overflow: hidden;
}

.navbar.sticky {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-color);
}

.logo-text .accent {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 10px 0;
    display: block;
}

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

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

.nav-cta {
    margin-left: 10px;
}

/* MEGAMENU */
.megamenu {
    position: relative;
}

.megamenu-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 240px);
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 2000;
    min-width: 500px;
    border: 1px solid var(--light-gray);
}

.megamenu:hover .megamenu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.megamenu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
}

.megamenu-item:hover {
    background: var(--off-white);
}

.megamenu-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.megamenu-info h5 {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.megamenu-info span {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ----- 7. HERO SEKCIJA ----- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(13, 148, 136, 0.75));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    color: var(--primary-light);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    font-weight: 300;
}

.title-accent {
    display: block;
    color: var(--primary-light);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

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

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-light);
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    align-self: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    opacity: 0.7;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* ----- 8. SEKCIJSKI STILI ----- */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.section-title {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light .section-title,
.section-header.light .section-subtitle {
    color: var(--white);
}

/* ----- 9. CAMPERS SEKCIJA ----- */
.campers {
    background: var(--off-white);
}

.campers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.camper-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.camper-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.camper-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.camper-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.camper-badge.bestseller {
    background: var(--accent-color);
}

.camper-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.camper-card:hover .camper-overlay {
    opacity: 1;
}

.camper-content {
    padding: 25px;
}

.camper-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.camper-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.spec {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.spec i {
    color: var(--primary-color);
}

.camper-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--off-white);
    border-radius: var(--radius-md);
}

.price-label {
    color: var(--text-light);
    font-size: 14px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-value strong {
    font-size: 2rem;
}

.camper-content .btn {
    width: 100%;
}

/* ----- 10. FEATURES SEKCIJA ----- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    position: relative;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 28px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.feature-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

/* ----- 11. TESTIMONIALS SEKCIJA ----- */
.testimonials {
    position: relative;
    background: var(--secondary-color);
    color: var(--white);
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-round);
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 0.85rem;
    opacity: 0.7;
}

.testimonial-rating {
    margin-left: auto;
    color: var(--primary-light);
}

.testimonial-rating i {
    margin-left: 3px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
    font-style: italic;
}

/* ----- 12. REZERVACIJA ----- */
.reservation {
    background: var(--off-white);
}

.reservation-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

.form-submit {
    text-align: center;
    margin-top: 10px;
}

.form-submit .btn {
    width: 100%;
    max-width: 300px;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 15px;
}

/* ----- 13. CTA SEKCIJA ----- */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v20h2v2h-2v2h2v2h-2v2h2v2h-2v2h2v2h-2v2h2v2h-2v2h-2v-2h-2v2h-2v-2h-2v2h-2v-2h-2v2H0v-2h20v-2H0v-2h20v-2H0v-2h20v-2H0v-2h20v-2H0v-2h20z" fill="%23ffffff" fill-opacity="0.05" fill-rule="evenodd"/%3E%3C/svg%3E');
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* ----- 14. NOGA ----- */
.footer {
    background: var(--secondary-color);
    color: var(--white);
}

.footer-main {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

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

.footer-brand p {
    opacity: 0.8;
    font-size: 14px;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links a {
    color: var(--white);
    opacity: 0.7;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    opacity: 0.8;
}

.contact-item i {
    color: var(--primary-light);
    width: 20px;
}

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

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

.footer-bottom-content p {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    opacity: 0.7;
}

.security-badge i {
    color: var(--success);
}

/* ----- 15. NOTRANJE STRANI ----- */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
    opacity: 0.8;
}

.breadcrumb span {
    color: var(--white);
}

/* Camper Detail Page */
.camper-detail {
    padding: 80px 0;
}

.camper-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.camper-detail-image {
    position: sticky;
    top: 100px;
}

.camper-detail-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.camper-detail-info h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.camper-detail-price {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.camper-detail-price span {
    font-size: 1rem;
    color: var(--text-light);
}

.camper-features-list {
    margin-bottom: 30px;
}

.camper-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.camper-features-list li i {
    color: var(--primary-color);
    width: 24px;
}

.camper-description {
    margin-bottom: 30px;
}

.camper-description h3 {
    margin-bottom: 15px;
}

.camper-description p {
    color: var(--text-light);
}

/* FAQ Page */
.faq-section {
    padding: 80px 0;
}

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

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h4 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin: 0;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--secondary-color);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    margin: 0;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item-lg {
    display: flex;
    gap: 15px;
}

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

.contact-item-lg .text h5 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.contact-item-lg .text p {
    color: var(--text-light);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--off-white);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form-wrapper h3 {
    margin-bottom: 25px;
}

/* ----- 16. ANIMACIJE ----- */
[data-aos] {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-up {
    animation: fadeUp 0.7s ease forwards;
    animation-fill-mode: both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----- 17. ODZIVNOST ----- */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .camper-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .camper-detail-image {
        position: static;
    }
    
    .megamenu-content {
        left: 0;
        transform: translateX(0) translateY(20px);
        min-width: auto;
        width: 100%;
        grid-template-columns: 1fr;
    }
    
    .megamenu:hover .megamenu-content {
        transform: translateX(0) translateY(10px);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 80px 20px 30px;
        gap: 0;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        overflow-y: auto;
        overflow-x: hidden;
        box-sizing: border-box;
        z-index: 9998;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
    }
    
    /* Mobile Megamenu - prikaži kot inline seznam z slikami */
    .megamenu-content {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0;
        display: none;
        background: transparent;
    }
    
    .megamenu.active .megamenu-content {
        display: block;
    }
    
    /* Prikaži avtodome kot inline elemente z sliko in imenom */
    .megamenu-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 12px 15px;
        background: var(--off-white);
        margin-bottom: 8px;
        border-radius: var(--radius-md);
        border-left: 3px solid var(--primary-color);
    }
    
    .megamenu-item img {
        width: 50px;
        height: 40px;
        object-fit: cover;
        border-radius: var(--radius-sm);
    }
    
    .megamenu-info {
        flex: 1;
    }
    
    .megamenu-info h5 {
        font-size: 0.95rem;
        margin-bottom: 2px;
        color: var(--text-dark);
    }
    
    .megamenu-info span {
        font-size: 0.85rem;
        color: var(--primary-color);
        font-weight: 600;
    }
    
    .nav-cta {
        margin: 20px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .campers-grid,
    .features-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .reservation-form-wrapper,
    .contact-form-wrapper {
        padding: 25px;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .camper-image {
        height: 200px;
    }
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    padding: 80px 0;
    background: var(--off-white);
}

.pricing .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.pricing-price {
    margin-bottom: 25px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    font-size: 1rem;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--text-light);
}

.pricing-features li i {
    color: var(--success);
    margin-right: 10px;
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    color: var(--gray);
    font-size: 0.9rem;
}

.pricing-note i {
    color: var(--primary-color);
    margin-right: 5px;
}

.pricing-note a {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* Dodatna oprema */
.additional-equipment {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--light-gray);
}

.additional-equipment h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.equipment-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
}

.equipment-item span {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.equipment-item strong {
    color: var(--primary-color);
    font-weight: 700;
}

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

@media (max-width: 480px) {
    .equipment-grid {
        grid-template-columns: 1fr;
    }
}

/* Equipment Pills */
.equipment-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.equipment-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    max-width: 100%;
}

.equipment-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
    border-color: var(--primary-color);
}

.pill-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #14b8a6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.pill-content {
    flex: 1;
    min-width: 150px;
}

.pill-title {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.pill-content small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.3;
    margin-top: 2px;
}

.pill-price {
    background: linear-gradient(135deg, var(--primary-color), #14b8a6);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Camper Gallery */
.camper-gallery {
    padding: 80px 0;
    background: var(--off-white);
}

.camper-gallery .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Sezon cards */
.season-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.season-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.season-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, var(--white), var(--off-white));
}

.season-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.season-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.season-card p span {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Price table */
.price-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.price-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.price-table th small {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 3px;
}

.price-table th:first-child {
    text-align: left;
}

.price-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.price-table .old-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 0.85rem;
    margin-right: 5px;
}

.price-table strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tr:hover {
    background: var(--off-white);
}

/* Promo cards */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.promo-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
}

.promo-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.promo-card h4 {
    margin: 10px 0 5px;
    color: var(--text-dark);
}

.promo-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Weekend packages */
.weekend-packages {
    margin-bottom: 50px;
}

.weekend-packages h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.weekend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.weekend-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.weekend-header {
    margin-bottom: 20px;
}

.weekend-header h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.weekend-header .period {
    font-size: 0.85rem;
    color: var(--text-light);
}

.weekend-price {
    margin-bottom: 15px;
}

.weekend-price .old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: var(--gray);
    margin-right: 10px;
}

.weekend-price .new-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.weekend-card .savings {
    background: var(--success);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 15px;
}

.weekend-card .note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Equipment */
.equipment-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.equipment-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.equipment-info {
    flex: 1;
}

.equipment-info span {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.equipment-info small {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

.equipment-item strong {
    color: var(--primary-color);
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .season-grid,
    .promo-grid,
    .weekend-grid {
        grid-template-columns: 1fr;
    }
    
    .price-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .price-table table {
        min-width: 480px;
        font-size: 0.85rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 10px 12px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .equipment-pills {
        flex-direction: column;
    }
    
    .equipment-pill {
        width: 100%;
    }
}

/* ============================================================
   NOVE SPREMEMBE - NajemiCamper.si posodobitev
   ============================================================ */

/* --- SPREMEMBA 4: Novi logotip (logo-new) --- */
.logo-new {
    height: 48px;
    width: auto;
    object-fit: contain;
    max-width: 200px;
}

.logo-footer {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
    display: block;
}

/* --- SPREMEMBA 6: Hero slider z dvema slikama --- */
.hero-slider .slide {
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slider .slide.active {
    opacity: 1;
}

/* --- SPREMEMBA 3: Sezonske promo kartice pod tabelo (usklajene s stolpci) --- */
.season-promo-row {
    display: grid;
    grid-template-columns: 200px 1fr 1fr 1fr;
    gap: 15px;
    margin-top: -10px;
    margin-bottom: 40px;
    align-items: stretch;
}

.season-promo-spacer {
    /* Prazna celica za stolpec "Št. nočitev" */
}

.season-promo-cell {
    display: flex;
    flex-direction: column;
}

.season-promo-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 100%;
}

.season-promo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

/* Nizka sezona - modro-ledena */
.season-promo-card.low-season {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border: 2px solid #7dd3fc;
}

.season-promo-card.low-season .season-promo-icon {
    background: linear-gradient(135deg, #0284c7, #0ea5e9);
    color: #fff;
}

.season-promo-card.low-season .season-promo-badge {
    background: #0284c7;
    color: #fff;
}

/* Srednja sezona - zelena */
.season-promo-card.mid-season {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid #6ee7b7;
}

.season-promo-card.mid-season .season-promo-icon {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
}

.season-promo-card.mid-season .season-promo-badge {
    background: #059669;
    color: #fff;
}

/* Visoka sezona - zlata/oranžna + oblaček */
.season-promo-card.high-season {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #fbbf24;
}

.season-promo-card.high-season .season-promo-icon {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: #fff;
}

.season-promo-card.high-season .season-promo-badge.featured-badge {
    background: #d97706;
    color: #fff;
}

/* Oblaček efekt za visoko sezono */
.season-promo-card.speech-bubble::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #fbbf24;
}

.season-promo-card.speech-bubble::after {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fef3c7;
}

.season-promo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.season-promo-content {
    flex: 1;
}

.season-promo-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.season-promo-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3px;
    line-height: 1.3;
}

.season-promo-content p {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0;
}

/* --- SPREMEMBA 2: Rezervacijski gumb takoj pod ceniki --- */
.pricing-cta {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--off-white) 0%, #e0fdfa 100%);
    border-radius: var(--radius-xl);
    margin: 30px 0 50px;
    border: 2px solid rgba(13, 148, 136, 0.15);
}

.pricing-cta-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* --- SPREMEMBA 1: Card design za dodatno opremo --- */
.equipment-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.equipment-card {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.equipment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(13, 148, 136, 0.15);
    border-color: rgba(13, 148, 136, 0.2);
}

.equipment-card:hover::before {
    opacity: 1;
}

.equipment-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.equipment-card-body {
    flex: 1;
}

.equipment-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.equipment-card-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.equipment-card-footer {
    display: flex;
    justify-content: flex-end;
}

/* Pill cena - zaobljeni robovi, gradient */
.price-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 3px 10px rgba(13, 148, 136, 0.3);
    transition: all 0.3s ease;
}

.equipment-card:hover .price-pill {
    box-shadow: 0 5px 15px rgba(13, 148, 136, 0.4);
    transform: scale(1.05);
}

/* --- SPREMEMBA 5: Moderna galerija (grid layout) --- */
.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 12px;
}

.gallery-grid-modern .gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    background: var(--light-gray);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 14px;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 1.8rem;
}

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

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--white);
    cursor: pointer;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.3s ease;
    backdrop-filter: blur(4px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Page header za podstrani */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-dark) 100%);
    padding: 120px 0 60px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: var(--white);
}

/* Camper detail sekcija */
.camper-detail {
    padding: 80px 0;
}

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

.camper-detail-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.camper-detail-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.camper-detail-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.camper-features-list {
    list-style: none;
    margin-bottom: 30px;
}

.camper-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.95rem;
}

.camper-features-list li i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.camper-description {
    margin-bottom: 30px;
}

.camper-description h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* ============================================================
   RESPONSIVE - Mobilni prikaz za nove elemente
   ============================================================ */

@media (max-width: 1024px) {
    .season-promo-row {
        grid-template-columns: 1fr;
    }
    
    .season-promo-spacer {
        display: none;
    }
    
    .equipment-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid-modern {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }
    
    .camper-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .logo-new {
        height: 38px;
        max-width: 160px;
    }
    
    .season-promo-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .equipment-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }
    
    .gallery-grid-modern .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .pricing-cta {
        padding: 25px 15px;
    }
    
    .pricing-cta-text {
        font-size: 1rem;
    }
    
    .season-promo-card {
        padding: 14px 16px;
    }
    
    .lightbox-prev {
        left: 8px;
    }
    
    .lightbox-next {
        right: 8px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid-modern {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 130px;
    }
    
    .equipment-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .season-promo-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   SELECT WRAPPER - Prilagoditev select elementov
   ============================================================ */
.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--primary-color);
    pointer-events: none;
}

.select-wrapper select {
    width: 100%;
    padding-right: 40px;
    -webkit-appearance: none;
    appearance: none;
    background-image: none;
    cursor: pointer;
}

.form-row-1 {
    grid-template-columns: 1fr;
}

/* ============================================================
   GUMB NA VRH
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transform: translateY(10px);
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.5);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ============================================================
   MOBILNI POPRAVKI - OBRAZEC IN SELECT
   ============================================================ */
@media (max-width: 768px) {
    .form-group select {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        font-size: 16px; /* Prepreči zoom na iOS */
        -webkit-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230d9488' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        padding-right: 40px;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        font-size: 16px; /* Prepreči zoom na iOS */
    }
    
    .reservation-form-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 20px 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .form-group select,
    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }
    
    .reservation-form-wrapper {
        padding: 16px 12px;
        border-radius: var(--radius-md);
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
    
    .camper-content h3 {
        font-size: 1.25rem;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .weekend-grid {
        grid-template-columns: 1fr;
    }
    
    .weekend-price .new-price {
        font-size: 2rem;
    }
    
    .pricing-cta {
        padding: 20px 12px;
    }
    
    .pricing-cta-text {
        font-size: 0.95rem;
    }
    
    .season-promo-content h4 {
        font-size: 0.9rem;
    }
    
    .equipment-card {
        padding: 18px;
    }
    
    .equipment-card-title {
        font-size: 0.95rem;
    }
    
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        padding: 40px 0;
    }
    
    .page-header {
        padding: 100px 0 50px;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
}


/* ============================================================
   ZELENA LINIJA V HEADERJU
   ============================================================ */
.navbar {
    border-bottom: 3px solid var(--primary-color);
}

/* ============================================================
   HERO STATISTIKE - V ENO VRSTICO
   ============================================================ */
.hero-stats {
    flex-wrap: nowrap !important;
    gap: 20px !important;
    justify-content: center;
    align-items: center;
}

.hero-stat {
    text-align: center;
    flex: 0 0 auto;
}

.stat-value {
    font-size: 1.8rem !important;
    display: block;
}

.stat-label {
    font-size: 11px !important;
    white-space: nowrap;
}

.hero-stat-divider {
    display: block !important;
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 10px !important;
    }
    .stat-value {
        font-size: 1.4rem !important;
    }
    .stat-label {
        font-size: 10px !important;
    }
}

/* ============================================================
   CENIK - KARTICE PO SEZONAH (mobilno prijazno)
   ============================================================ */
.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.season-pricing-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.season-pricing-header {
    padding: 20px 22px 16px;
    text-align: center;
}

.season-pricing-card.low .season-pricing-header {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: #fff;
}

.season-pricing-card.mid .season-pricing-header {
    background: linear-gradient(135deg, #0d9488, #0f766e);
    color: #fff;
}

.season-pricing-card.high .season-pricing-header {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
}

.season-pricing-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    color: #fff !important;
    text-transform: uppercase;
}

.season-pricing-dates {
    font-size: 0.78rem;
    opacity: 0.8;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}

.season-pricing-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e8ecf0;
    gap: 8px;
}

.price-row:last-of-type {
    border-bottom: none;
}

.price-nights {
    font-size: 0.82rem;
    color: var(--text-light);
    flex: 1;
}

.price-value {
    font-size: 0.88rem;
    text-align: right;
    white-space: nowrap;
}

.price-value .old-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 0.78rem;
    margin-right: 4px;
}

.price-value strong {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* Akcijski gumb pod cenami */
.season-promo-btn {
    margin-top: 14px;
    background: #e74c3c;
    border-radius: 8px;
    padding: 10px 14px;
    text-align: center;
    cursor: default;
}

.season-promo-btn.featured {
    background: #c0392b;
}

.promo-btn-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.promo-btn-sub {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.85);
    margin-top: 2px;
}

/* Mobilni prikaz cenika - ena kartica pod drugo */
@media (max-width: 900px) {
    .pricing-cards-container {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .pricing-cards-container {
        max-width: 100%;
        gap: 16px;
        padding: 0 4px;
    }
    .season-pricing-header {
        padding: 16px 16px 12px;
    }
    .season-pricing-header h3 {
        font-size: 0.95rem;
    }
    .season-pricing-body {
        padding: 14px 14px 16px;
    }
    .price-nights {
        font-size: 0.78rem;
    }
    .price-value strong {
        font-size: 1.05rem;
    }
}

/* ============================================================
   MNENJA - ZVEZDICE MANJŠE, V ENI VRSTICI
   ============================================================ */
.testimonial-rating {
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 2px;
    margin-left: auto;
    align-items: center;
}

.testimonial-rating i {
    font-size: 13px !important;
    margin-left: 1px !important;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.testimonial-info {
    flex: 1;
    min-width: 0;
}

/* ============================================================
   FOOTER - POENOTENJE NA VSEH STRANEH
   ============================================================ */
.footer {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: start;
}

/* Mobilni footer - sredinsko, 10px odmik */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 24px;
    }
    .footer-brand,
    .footer-links,
    .footer-contact {
        text-align: center !important;
    }
    .footer-social {
        justify-content: center !important;
    }
    .footer-links ul {
        align-items: center;
    }
    .contact-item {
        justify-content: center;
    }
    .footer-bottom-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 10px;
    }
    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer-main {
        padding: 40px 10px !important;
    }
    .footer .container {
        padding: 0 10px !important;
    }
    .footer-bottom .container {
        padding: 0 10px !important;
    }
}

/* ============================================================
   SPLOŠNA MOBILNA ODZIVNOST - 10px odmik od robov
   ============================================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 10px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    * {
        box-sizing: border-box;
    }
    
    section {
        overflow-x: hidden;
    }
    
    /* Besedila - prilagojena velikost */
    .section-title {
        font-size: 1.6rem !important;
    }
    
    .section-subtitle {
        font-size: 0.9rem !important;
    }
    
    .hero-title {
        font-size: 1.9rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        padding: 0 5px;
    }
    
    /* Gumbi */
    .btn {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .btn-lg {
        font-size: 0.95rem;
        padding: 14px 22px;
    }
    
    /* Feature kartice */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    
    .feature-card {
        padding: 24px 16px;
    }
    
    .feature-card h3 {
        font-size: 1.05rem;
    }
    
    .feature-card p {
        font-size: 0.88rem;
    }
    
    /* Camper kartice */
    .campers-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    
    .testimonial-card {
        padding: 20px 16px;
    }
    
    .testimonial-info h4 {
        font-size: 0.95rem;
    }
    
    .testimonial-info span {
        font-size: 0.78rem;
    }
    
    .testimonial-text {
        font-size: 0.88rem;
    }
    
    /* Vikend paket */
    .weekend-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    
    .weekend-card {
        padding: 20px 16px;
    }
    
    /* Equipment cards */
    .equipment-cards-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px;
    }
    
    .equipment-card {
        padding: 16px 12px;
    }
    
    .equipment-card-title {
        font-size: 0.88rem;
    }
    
    .equipment-card-desc {
        font-size: 0.78rem;
    }
    
    /* Rezervacijski obrazec */
    .reservation-form-wrapper {
        padding: 20px 10px !important;
        border-radius: 12px;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    
    .form-group label {
        font-size: 0.88rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important;
        padding: 12px 14px;
    }
    
    /* Select wrapper */
    .select-wrapper {
        width: 100%;
    }
    
    .select-wrapper select {
        width: 100%;
        max-width: 100%;
    }
    
    /* Pricing CTA */
    .pricing-cta {
        padding: 24px 10px;
        text-align: center;
    }
    
    /* Page header */
    .page-header {
        padding: 90px 10px 40px;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    /* Galerija */
    .gallery-grid-modern {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }
    
    .gallery-item-large {
        grid-column: span 2 !important;
    }
    
    /* Camper detail */
    .camper-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .camper-detail-info h1 {
        font-size: 1.5rem;
    }
    
    /* CTA sekcija */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    /* Breadcrumb */
    .breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .equipment-cards-grid {
        grid-template-columns: 1fr !important;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .hero-ctas .btn {
        text-align: center;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.4rem !important;
    }
    
    .hero-title {
        font-size: 1.6rem !important;
    }
    
    .weekend-price .new-price {
        font-size: 1.8rem;
    }
    
    .weekend-price .old-price {
        font-size: 1rem;
    }
    
    .camper-detail-price {
        font-size: 1.6rem;
    }
}

/* ============================================================
   MOBILNI MENI - TRANSPARENTNO OZADJE
   ============================================================ */
@media (max-width: 768px) {
    .nav-menu {
        background: rgba(255, 255, 255, 0.97) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        padding: 80px 16px 30px !important;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
        z-index: 9998 !important;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 14px 0 !important;
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
        margin: 15px 0 !important;
        display: block;
    }
    
    /* Megamenu dropdown - prikaži kot seznam */
    .megamenu-content {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        padding: 8px 0 !important;
        display: none !important;
        background: transparent !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    .megamenu.active .megamenu-content {
        display: block !important;
    }
    
    .megamenu-item {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 10px 12px !important;
        background: var(--off-white) !important;
        margin-bottom: 8px !important;
        border-radius: 10px !important;
        border-left: 3px solid var(--primary-color) !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .megamenu-item img {
        width: 48px !important;
        height: 38px !important;
        object-fit: cover !important;
        border-radius: 6px !important;
        flex-shrink: 0 !important;
    }
    
    .megamenu-info h5 {
        font-size: 0.9rem !important;
        margin: 0 0 2px !important;
    }
    
    .megamenu-info span {
        font-size: 0.8rem !important;
        color: var(--primary-color) !important;
        font-weight: 600 !important;
    }
}

/* ============================================================
   LOGOTIP - PRILAGODITEV
   ============================================================ */
.logo-new {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-new {
        height: 38px;
        max-width: 160px;
    }
}

/* Logo v footerju - bel filter */
.logo-footer {
    filter: brightness(0) invert(1);
    height: 42px;
    width: auto;
    max-width: 180px;
}

/* ============================================================
   BACK TO TOP GUMB
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 20px;
    width: 46px;
    height: 46px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

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

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

/* ============================================================
   PODSTRANI - CENIK IN REZERVACIJSKA FORMA
   ============================================================ */
.camper-pricing-section {
    background: var(--off-white);
    padding: 60px 0;
}

.camper-pricing-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.camper-reservation-section {
    background: var(--white);
    padding: 60px 0;
}

.camper-reservation-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

/* ============================================================
   SPLOŠNI POGOJI - PODSTRAN
   ============================================================ */
.terms-content {
    max-width: 860px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 14px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.terms-content h2 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 30px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--light-gray);
}

.terms-content h2:first-child {
    margin-top: 0;
}

.terms-content p, .terms-content li {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-light);
}

.terms-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.terms-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    margin-bottom: 30px;
}

.terms-download-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--white);
}

@media (max-width: 768px) {
    .terms-content {
        padding: 24px 14px;
        border-radius: 10px;
    }
    .terms-content h2 {
        font-size: 1.15rem;
    }
    .terms-content p, .terms-content li {
        font-size: 0.88rem;
    }
}

/* ============================================================
   ZELENA LINIJA POD HEADERJEM
   ============================================================ */
.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-color));
    z-index: 1;
}

/* ============================================================
   HERO STATS - V ENI VRSTICI NA MOBILNIH
   ============================================================ */
@media (max-width: 768px) {
    .hero-stats {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        gap: 0 !important;
        padding-top: 20px !important;
        width: 100%;
    }

    .hero-stat {
        flex: 1;
        text-align: center;
        padding: 0 8px;
    }

    .hero-stat-divider {
        display: block !important;
        width: 1px;
        height: 40px;
        background: rgba(255,255,255,0.3);
        align-self: center;
        flex-shrink: 0;
    }

    .stat-value {
        font-size: 1.4rem !important;
        display: block;
        white-space: nowrap;
    }

    .stat-label {
        font-size: 0.65rem !important;
        line-height: 1.2;
        display: block;
        white-space: nowrap;
    }
}

@media (max-width: 380px) {
    .stat-value {
        font-size: 1.2rem !important;
    }
    .stat-label {
        font-size: 0.6rem !important;
    }
    .hero-stat {
        padding: 0 5px;
    }
}

/* ============================================================
   NAVBAR - TRANSPARENTNO OZADJE NA MOBILNIH (MENI ODPRT)
   ============================================================ */
@media (max-width: 768px) {
    .navbar {
        background: rgba(255,255,255,0.98) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

/* ============================================================
   HERO SECTION - MOBILNI POPRAVKI
   ============================================================ */
@media (max-width: 768px) {
    .hero {
        padding-top: 70px;
        min-height: 100svh;
    }

    .hero-content {
        padding: 20px 10px;
        text-align: center;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .hero-title {
        font-size: 1.85rem !important;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 20px;
        padding: 0;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        margin-bottom: 25px;
    }

    .hero-ctas .btn {
        justify-content: center;
        width: 100%;
    }
}

/* ============================================================
   CENIK KARTICE - MOBILNI POPRAVKI
   ============================================================ */
.season-pricing-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background: var(--white);
}

.season-pricing-header.low-header {
    background: linear-gradient(135deg, #1e293b, #334155);
}

.season-pricing-header.mid-header {
    background: linear-gradient(135deg, #0d9488, #0f766e);
}

.season-pricing-header.high-header {
    background: linear-gradient(135deg, #0d9488, #14b8a6);
}

@media (max-width: 768px) {
    .pricing-cards-container {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding: 0 !important;
    }

    .season-pricing-card {
        width: 100%;
        max-width: 100%;
    }

    .season-pricing-header {
        padding: 16px 16px 12px !important;
    }

    .season-pricing-header h3 {
        font-size: 1rem !important;
        margin-bottom: 4px;
    }

    .season-pricing-dates {
        font-size: 0.78rem !important;
    }

    .season-pricing-body {
        padding: 14px !important;
    }

    .price-row {
        padding: 10px 0 !important;
        flex-wrap: nowrap !important;
        gap: 8px;
    }

    .price-nights {
        font-size: 0.82rem !important;
        flex: 1;
        min-width: 0;
    }

    .price-value {
        font-size: 0.85rem !important;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .price-value strong {
        font-size: 1.05rem !important;
    }

    .season-promo-btn {
        padding: 10px 14px !important;
        margin-top: 10px !important;
        border-radius: 8px !important;
    }

    .promo-btn-label {
        font-size: 0.8rem !important;
    }

    .promo-btn-sub {
        font-size: 0.72rem !important;
    }

    /* Vikend paket */
    .weekend-packages {
        padding: 20px 0 !important;
    }

    .weekend-packages h3 {
        font-size: 1.3rem !important;
        text-align: center;
        margin-bottom: 16px !important;
    }

    .weekend-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .weekend-card {
        padding: 18px 14px !important;
    }

    .weekend-header h4 {
        font-size: 0.95rem !important;
    }

    .weekend-header .period {
        font-size: 0.78rem !important;
    }

    .weekend-price .new-price {
        font-size: 1.8rem !important;
    }

    .weekend-price .old-price {
        font-size: 1rem !important;
    }

    .savings {
        font-size: 0.85rem !important;
    }

    .weekend-card .note {
        font-size: 0.78rem !important;
    }

    /* Pricing CTA */
    .pricing-cta {
        padding: 20px 0 !important;
        text-align: center;
    }

    .pricing-cta-text {
        font-size: 0.9rem !important;
        margin-bottom: 12px !important;
    }

    /* Additional equipment */
    .additional-equipment h3 {
        font-size: 1.3rem !important;
        text-align: center;
    }
}

/* ============================================================
   FOOTER - MOBILNI POPRAVKI (POENOTENJE)
   ============================================================ */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 20px !important;
    }

    .footer-brand p {
        font-size: 0.85rem;
        padding: 0 10px;
    }

    .footer-links ul {
        align-items: center !important;
    }

    .footer-links a {
        font-size: 0.88rem;
    }

    .contact-item {
        justify-content: center !important;
        font-size: 0.88rem;
    }

    .footer-bottom-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 8px !important;
    }

    .footer-badges {
        justify-content: center !important;
        flex-wrap: wrap;
    }

    .footer-main {
        padding: 36px 0 !important;
    }
}

/* ============================================================
   SPLOŠNA BESEDILA - MOBILNA PRILAGODITEV
   ============================================================ */
@media (max-width: 768px) {
    p {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .section-header {
        margin-bottom: 30px !important;
    }

    .section-tag {
        font-size: 0.75rem !important;
    }

    /* Camper kartice */
    .camper-card-title {
        font-size: 1.1rem !important;
    }

    .camper-card-desc {
        font-size: 0.85rem !important;
    }

    /* Feature ikone */
    .feature-icon {
        width: 50px !important;
        height: 50px !important;
    }

    /* Splošni pogoji */
    .terms-section {
        padding: 40px 0 !important;
    }
}

/* ============================================================
   REZERVACIJSKA FORMA - MOBILNI POPRAVKI
   ============================================================ */
@media (max-width: 768px) {
    .reservation-form-wrapper {
        padding: 20px 12px !important;
        margin: 0 !important;
        border-radius: 12px !important;
        box-shadow: var(--shadow-md) !important;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important;
        padding: 12px 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .select-wrapper {
        width: 100% !important;
        position: relative;
        display: block;
    }

    .select-wrapper select {
        width: 100% !important;
        max-width: 100% !important;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        padding-right: 35px !important;
    }

    .form-submit .btn {
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* ============================================================
   CAMPER PODSTRANI - CENIK IN FORMA
   ============================================================ */
@media (max-width: 768px) {
    .camper-pricing-section {
        padding: 40px 0 !important;
    }

    .camper-reservation-section {
        padding: 40px 0 !important;
    }
}

/* ============================================================
   SPLOŠNI OVERFLOW POPRAVEK
   ============================================================ */
html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px !important;
    }
}

/* ============================================================
   NAV-CTA GUMB - PREPREČITEV PRELOMA BESEDILA
   ============================================================ */
.nav-cta {
    white-space: nowrap !important;
    font-size: 0.85rem !important;
    padding: 10px 16px !important;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .nav-link {
        font-size: 0.88rem;
        padding: 8px 10px;
    }
    .nav-cta {
        font-size: 0.82rem !important;
        padding: 9px 14px !important;
    }
}

@media (max-width: 992px) {
    .nav-link {
        font-size: 0.82rem;
        padding: 8px 8px;
    }
    .nav-cta {
        font-size: 0.78rem !important;
        padding: 8px 12px !important;
    }
    .logo-new {
        height: 42px !important;
        max-width: 160px !important;
    }
}

/* ============================================================
   POPRAVKI - MOBILNI MENI, PILL CENIK, KONTAKT REDESIGN
   ============================================================ */

/* --- MOBILNI MENI: FIX OVERFLOW --- */
@media (max-width: 768px) {
    .navbar .container {
        padding: 0 16px;
        overflow: hidden;
    }
    .nav-menu {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
        padding: 80px 16px 30px !important;
    }
    .nav-item, .nav-link, .megamenu-content, .megamenu-item {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* --- MOBILNI MENI: MEGAMENU AVTODOMI EXPANDAN PO DEFAULT --- */
@media (max-width: 768px) {
    /* Megamenu "Naši avtodomi" je privzeto odprt v mobilnem meniju */
    .megamenu.mobile-default-open .megamenu-content {
        display: block !important;
    }
    .megamenu.mobile-default-open > .nav-link .fa-chevron-down {
        transform: rotate(180deg);
    }
}

/* --- PILL CENIK DESIGN --- */
/* Zamenjamo price-row z pill stilom */
.pricing-pills-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 18px 18px;
}

.pricing-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--off-white);
    border-radius: 50px;
    padding: 10px 16px 10px 14px;
    gap: 10px;
    border: 1.5px solid #e2e8f0;
    transition: var(--transition);
}

.pricing-pill:hover {
    border-color: var(--primary-color);
    background: #f0fdfa;
    transform: translateX(2px);
}

.pill-nights {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    flex: 1;
    min-width: 0;
}

.pill-nights-icon {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pill-nights-icon i {
    font-size: 11px;
    color: #fff;
}

.pill-price {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.pill-price .old-price {
    font-size: 0.72rem;
    color: #aaa;
    text-decoration: line-through;
}

.pill-price-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.season-pricing-card.high .pill-price-badge {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-color));
}

.season-pricing-card.low .pill-price-badge {
    background: linear-gradient(135deg, #1e293b, #334155);
}

/* Promo gumb - pill style */
.season-promo-btn-pill {
    margin: 4px 18px 14px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50px;
    padding: 10px 18px;
    text-align: center;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.season-promo-btn-pill i {
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
}

.promo-btn-label {
    font-size: 0.76rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.promo-btn-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.85);
}

@media (max-width: 600px) {
    .pricing-pills-container {
        padding: 12px 12px 14px;
        gap: 7px;
    }
    .pricing-pill {
        padding: 8px 12px 8px 10px;
    }
    .pill-nights {
        font-size: 0.76rem;
    }
    .pill-price-badge {
        font-size: 0.78rem;
        padding: 4px 10px;
    }
    .pill-nights-icon {
        width: 22px;
        height: 22px;
    }
}

/* ============================================================
   KONTAKT STRAN - POPOLN REDESIGN (2025 TREND)
   ============================================================ */

/* Hero header za kontakt - parallax feel z blob ozadjem */
.contact-hero {
    position: relative;
    padding: 140px 0 70px;
    background: var(--secondary-color);
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 80% at 10% 50%, rgba(13,148,136,0.35) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 90% 20%, rgba(59,130,246,0.2) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 50% 90%, rgba(20,184,166,0.2) 0%, transparent 60%);
}

.contact-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: blobFloat 8s ease-in-out infinite alternate;
}

.contact-hero-blob-1 {
    width: 400px; height: 400px;
    background: var(--primary-color);
    top: -100px; left: -100px;
    animation-delay: 0s;
}

.contact-hero-blob-2 {
    width: 300px; height: 300px;
    background: var(--accent-color);
    bottom: -80px; right: -50px;
    animation-delay: -3s;
}

@keyframes blobFloat {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(30px, 20px) scale(1.05); }
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13,148,136,0.25);
    border: 1px solid rgba(20,184,166,0.4);
    color: #5eead4;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.15;
}

.contact-hero-content h1 .accent {
    background: linear-gradient(135deg, #14b8a6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 500px;
    margin: 0 auto 24px;
}

/* Breadcrumb - subtle */
.contact-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

.contact-breadcrumb a {
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.contact-breadcrumb a:hover { color: var(--primary-light); }
.contact-breadcrumb i { font-size: 0.6rem; }

/* Kontaktne info kartice - floating iznad forme */
.contact-info-strip {
    background: var(--white);
    padding: 0;
    position: relative;
    z-index: 2;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    transform: translateY(-40px);
    margin-bottom: -20px;
}

.contact-info-card {
    background: #fff;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    border-right: 1px solid #f1f5f9;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-info-card:hover::before { opacity: 0.04; }

.contact-info-card:last-child { border-right: none; }

.contact-info-card:hover {
    box-shadow: inset 0 -3px 0 var(--primary-color);
}

.contact-info-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.contact-info-icon-wrap.accent-blue {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.contact-info-icon-wrap.accent-dark {
    background: linear-gradient(135deg, #1e293b, #334155);
}

.contact-info-icon-wrap.accent-pink {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.contact-info-icon-wrap i {
    font-size: 20px;
    color: #fff;
}

.contact-info-card-body {
    position: relative;
    z-index: 1;
}

.contact-info-card-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 4px;
}

.contact-info-card-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2px;
    display: block;
}

.contact-info-card-value a {
    color: var(--secondary-color);
}
.contact-info-card-value a:hover { color: var(--primary-color); }

.contact-info-card-sub {
    font-size: 0.72rem;
    color: var(--gray);
}

/* Socialni gumbi v kartici */
.contact-social-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.contact-social-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.contact-social-pill.fb {
    background: #e8f0fe;
    color: #1877f2;
}
.contact-social-pill.fb:hover {
    background: #1877f2;
    color: #fff;
}

.contact-social-pill.ig {
    background: #fce7f3;
    color: #e1306c;
}
.contact-social-pill.ig:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

/* Glavno kontakt območje */
.contact-main-section {
    padding: 60px 0 80px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.contact-main-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

/* Leva stran - info bloki */
.contact-side-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-side-block {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.contact-side-block:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 24px rgba(13,148,136,0.1);
}

.contact-side-block-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.contact-side-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-side-icon i { color: #fff; font-size: 18px; }
.contact-side-icon.blue { background: linear-gradient(135deg, #3b82f6, #6366f1); }
.contact-side-icon.dark { background: linear-gradient(135deg, #1e293b, #334155); }

.contact-side-block-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.contact-side-block p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Delovni čas blok */
.contact-hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    padding: 6px 0;
    border-bottom: 1px solid #f1f5f9;
}

.contact-hours-list li:last-child { border-bottom: none; }

.contact-hours-list .day {
    color: var(--text-light);
    font-weight: 500;
}

.contact-hours-list .time {
    color: var(--secondary-color);
    font-weight: 700;
}

.contact-hours-list .time.open {
    color: var(--primary-color);
}

/* Map embed blok */
.contact-map-block {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    height: 180px;
    position: relative;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map-placeholder {
    text-align: center;
    color: var(--dark-gray);
}

.contact-map-placeholder i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
}

.contact-map-placeholder p {
    font-size: 0.85rem;
    margin: 0;
    font-weight: 600;
}

.contact-map-placeholder span {
    font-size: 0.78rem;
    color: var(--gray);
}

/* Forma wrapper - desna stran */
.contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 36px 32px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.09);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--accent-color));
    border-radius: 20px 20px 0 0;
}

.contact-form-card-header {
    margin-bottom: 28px;
}

.contact-form-card-header h2 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 6px;
}

.contact-form-card-header p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0;
}

/* Form stils */
.contact-form-modern .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form-modern .form-group {
    margin-bottom: 16px;
}

.contact-form-modern label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.contact-form-modern input,
.contact-form-modern select,
.contact-form-modern textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-dark);
    background: #f8fafc;
    transition: var(--transition);
    outline: none;
    box-sizing: border-box;
}

.contact-form-modern input:focus,
.contact-form-modern select:focus,
.contact-form-modern textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
}

.contact-form-modern .input-with-icon {
    position: relative;
}

.contact-form-modern .input-with-icon i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 14px;
    pointer-events: none;
}

.contact-form-modern .input-with-icon input,
.contact-form-modern .input-with-icon select {
    padding-left: 40px;
}

.contact-form-modern textarea {
    resize: vertical;
    min-height: 110px;
}

.contact-form-modern select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.contact-form-submit-btn {
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
}

.contact-form-submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13,148,136,0.3);
}

.contact-form-submit-btn:active { transform: translateY(0); }

.contact-form-disclaimer {
    font-size: 0.75rem;
    color: var(--gray);
    text-align: center;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.contact-form-disclaimer i { color: var(--primary-color); }

/* Success / error state */
.contact-success-msg {
    display: none;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border: 2px solid #6ee7b7;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin-top: 16px;
}

.contact-success-msg i {
    font-size: 2.2rem;
    color: #059669;
    display: block;
    margin-bottom: 10px;
}

.contact-success-msg h4 {
    color: #065f46;
    margin-bottom: 6px;
}

.contact-success-msg p {
    color: #047857;
    font-size: 0.88rem;
    margin: 0;
}

/* Kontakt razdelek - mobilno */
@media (max-width: 900px) {
    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
        transform: translateY(-30px);
    }
    .contact-info-card {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }
    .contact-info-card:nth-child(odd) {
        border-right: 1px solid #f1f5f9;
    }
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .contact-side-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .contact-hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .contact-info-cards {
        grid-template-columns: 1fr 1fr;
        transform: translateY(-20px);
    }
    .contact-hero {
        padding: 120px 0 60px;
    }
    .contact-hero-content h1 {
        font-size: 1.75rem;
    }
    .contact-side-info {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 24px 18px 22px;
    }
    .contact-form-modern .form-row {
        grid-template-columns: 1fr;
    }
    .contact-info-card {
        padding: 20px 14px;
    }
    .contact-info-icon-wrap {
        width: 44px;
        height: 44px;
    }
}

