/* ========================================
   CORE VARIABLES & RESET
   ======================================== */
:root {
    --beige: #F5F1ED;
    --terracotta: #D17B5C;
    --charcoal: #2D2D2D;
    --cream: #F9F6F2;
    --white: #FFFFFF;
    --text-primary: #2D2D2D;
    --text-secondary: #5A5A5A;
    --text-light: #8A8A8A;
    --font-serif: 'DM Serif Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

html { scroll-behavior: smooth; }

/* ========================================
   FOOTER (Enoten in očiščen)
   ======================================== */
.footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 5rem 0 2rem 0;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
    align-items: start;
}

/* Logotip v nogi */
.footer-logo-img {
    max-width: 140px;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-description {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-heading {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    border-bottom: 2px solid var(--terracotta);
    display: inline-block;
    padding-bottom: 5px;
}

/* --- ODDPRAVA MODRE BARVE --- */
/* Vse povezave v nogi naj bodo privzeto sive in brez podčrtaja */
.footer a, 
.footer a:visited, 
.footer a:active,
.footer-links a,
.footer-contact-link {
    color: #b0b0b0 !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

/* Barva ob preletu z miško (hover) */
.footer a:hover, 
.footer-links a:hover,
.footer-contact-link:hover {
    color: var(--terracotta) !important;
    padding-left: 5px; /* Nežen premik ob hoverju */
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.contact-item .icon {
    min-width: 25px;
    font-size: 1.1rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #888;
    font-size: 0.85rem;
}

/* ========================================
   RESPONSIVE (Odzivnost)
   ======================================== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    .footer-brand, .contact-item {
        align-items: center;
        justify-content: center;
    }
    .footer-heading {
        margin: 0 auto 1.5rem auto;
    }
    .footer-logo-img {
        margin-left: auto;
        margin-right: auto;
    }
}
/* ========================================
   REVEAL ANIMACIJA
   ======================================== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ========================================
   HEADER & NAVIGACIJA
   ======================================== */
.header { position: fixed; top: 0; left: 0; right: 0; background: rgba(255,255,255,0.98); box-shadow: 0 2px 8px rgba(0,0,0,0.05); z-index: 1000; }
.nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.logo img { height: 45px; width: auto; }
.nav-menu { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-menu > li { position: relative; }
.nav-menu a { text-decoration: none; color: var(--charcoal); font-weight: 500; transition: 0.3s; }
.nav-menu a:hover { color: var(--terracotta); }
.nav-cta { background: var(--terracotta); color: white !important; padding: 0.6rem 1.5rem; border-radius: 50px; font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }

/* JEZIKOVNI PREKLOPNIK */
.lang-switcher { display: flex; align-items: center; gap: 0.3rem; font-size: 0.85rem; font-weight: 600; }
.lang-btn { text-decoration: none; color: var(--text-secondary); padding: 0.25rem 0.5rem; border-radius: 4px; transition: 0.2s; letter-spacing: 0.05em; }
.lang-btn:hover { color: var(--terracotta); background: rgba(209,123,92,0.08); }
.lang-btn.active { color: var(--terracotta); font-weight: 700; }
.lang-sep { color: #ccc; font-weight: 300; }
.lang-switcher-mobile { display: flex; align-items: center; gap: 0.3rem; font-size: 0.9rem; font-weight: 600; padding: 0.5rem 0; border-top: 1px solid var(--beige); margin-top: 0.5rem; }

/* MOBILNI MENI */
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.8rem; cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; gap: 1rem; padding: 1.5rem; background: white; position: absolute; top: 100%; left: 0; right: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.mobile-menu.active { display: flex; }
.mobile-menu a { text-decoration: none; color: var(--charcoal); font-weight: 500; font-size: 1rem; }

/* SKUPNI STILI SEKCIJ */
.section { padding: 6rem 0; }
.section-beige { background: var(--beige); }
.section-white { background: var(--white); }
.section-title { font-family: var(--font-serif); font-size: 2.5rem; text-align: center; margin-bottom: 1rem; }
.section-desc { text-align: center; max-width: 700px; margin: 0 auto 4rem; color: var(--text-secondary); }

/* GUMBI */
.btn-primary { background: var(--terracotta); color: white; padding: 1rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 600; transition: 0.3s; box-shadow: 0 4px 10px rgba(209,123,92,0.3); display: inline-block; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(209,123,92,0.4); background: #c06a4b; color: white; }
.btn-outline { background: transparent; color: var(--terracotta); border: 2px solid var(--terracotta); padding: 1rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 600; transition: 0.3s; display: inline-block; }
.btn-outline:hover { background: var(--terracotta); color: white; }

/* ICON BOX */
.icon-box { width: 60px; height: 60px; background: rgba(209,123,92,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: var(--terracotta); font-size: 1.8rem; }
.icon-box svg { width: 32px; height: 32px; stroke-width: 1.5; }
.icon-svg { width: 18px; height: 18px; stroke: #b0b0b0; flex-shrink: 0; }

/* HERO */
.hero { padding: 140px 0 80px; background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-title { font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.15; margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; color: var(--terracotta); }
.hero-subtitle { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 2.5rem; line-height: 1.8; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image-wrapper { position: relative; }
.hero-image-wrapper img { width: 100%; border-radius: 24px; box-shadow: 0 15px 30px rgba(0,0,0,0.08); position: relative; z-index: 2; }
.hero-blob { position: absolute; top: -10%; right: -10%; width: 120%; height: 120%; background: var(--beige); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; z-index: 1; opacity: 0.6; }

/* PORTFOLIO GRID */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.portfolio-item { position: relative; border-radius: 16px; overflow: hidden; background: var(--charcoal); text-decoration: none; }
.portfolio-item img { width: 100%; height: 250px; object-fit: cover; opacity: 0.8; transition: 0.5s; }
.portfolio-item:hover img { opacity: 0.4; transform: scale(1.05); }
.portfolio-info { position: absolute; bottom: 20px; left: 20px; color: white; }
.portfolio-info h3 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 0.3rem; }
.portfolio-info p { font-size: 0.9rem; opacity: 0.8; }

/* SERVICES GRID */
.services-grid { display: grid; gap: 2rem; grid-template-columns: repeat(4, 1fr); }
.service-card { background: white; padding: 2.5rem 2rem; border-radius: 16px; transition: 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.03); }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); border-color: var(--terracotta); }
.service-card h3 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 0.8rem; }

/* FEATURES GRID */
.features-grid { display: grid; gap: 2.5rem; grid-template-columns: repeat(3, 1fr); }
.feature-card { background: white; padding: 2.5rem; border-radius: 20px; transition: 0.3s; text-align: center; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.feature-card .icon-box { margin-left: auto; margin-right: auto; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { justify-content: center; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .mobile-menu-btn { display: block; }
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .lang-switcher { display: none; }
}

/* ===== VIZUALI HOMEPAGE SECTION ===== */
.section-vizuali {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--cream) 0%, white 100%);
    overflow: hidden;
}
.vizuali-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.vizuali-tag {
    display: inline-block;
    background: rgba(209,123,92,0.12);
    border: 1px solid rgba(209,123,92,0.3);
    color: var(--terracotta);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.section-vizuali .section-title { text-align: left; margin-bottom: 1.2rem; }
.section-vizuali .section-title em { font-style: italic; color: var(--terracotta); }
.vizuali-lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}
.vizuali-body {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}
.vizuali-features { margin-bottom: 2rem; }
.vizuali-feat {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    color: var(--charcoal);
}
.vf-icon {
    width: 28px; height: 28px; min-width: 28px;
    background: rgba(209,123,92,0.12);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--terracotta);
}
.vf-icon svg { width: 16px; height: 16px; }
.vizuali-cta { display: inline-flex; align-items: center; margin-top: 0.5rem; }

/* Phone mockup (homepage) */
.vizuali-mockup {
    position: relative;
    display: flex;
    justify-content: center;
}
.phone-mockup {
    width: 210px;
    background: #1a1a2e;
    border-radius: 30px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    position: relative;
    z-index: 2;
}
.phone-screen {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    padding: 12px;
}
.ig-post { }
.ig-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.ig-avatar {
    width: 28px; height: 28px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 50%;
}
.ig-username { }
.ig-name  { font-size: 0.7rem; font-weight: 700; color: #111; display: block; }
.ig-handle{ font-size: 0.6rem; color: #888; display: block; }
.ig-image {
    background: linear-gradient(135deg, #d17b5c 0%, #c4614a 100%);
    border-radius: 12px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.ig-mockup-text { text-align: center; color: white; }
.ig-promo-tag { font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; opacity: 0.8; }
.ig-headline { font-weight: 700; font-size: 0.95rem; font-family: serif; line-height: 1.2; margin: 4px 0; }
.ig-subline  { font-size: 1.5rem; font-weight: 700; }
.ig-caption  { display: flex; gap: 8px; font-size: 0.65rem; color: #555; padding: 4px 0; }
.ig-stories-row { display: flex; gap: 6px; margin-top: 10px; }
.ig-story {
    flex: 1;
    height: 50px;
    border-radius: 8px;
}
.story-1 { background: linear-gradient(135deg, #d17b5c, #c4614a); }
.story-2 { background: linear-gradient(135deg, #2d1b4e, #1a2740); }
.story-3 { background: linear-gradient(135deg, #f5ede8, #ead5c9); }
.story-add {
    flex: 0 0 30px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #888; font-size: 1rem; font-weight: 300;
}
.vizuali-badge {
    position: absolute;
    bottom: -10px;
    right: -20px;
    background: white;
    border-radius: 50px;
    padding: 10px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--charcoal);
    white-space: nowrap;
    z-index: 3;
}

/* Nav active state - trenutna stran */
.nav-menu a.nav-current {
    color: var(--terracotta) !important;
    font-weight: 600;
}
.nav-link-new {
    font-weight: 600;
}
.nav-link-new.nav-current {
    color: var(--terracotta) !important;
}
.mobile-menu a.nav-current {
    color: var(--terracotta) !important;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .vizuali-grid { grid-template-columns: 1fr; gap: 3rem; }
    .vizuali-mockup { margin-top: 1rem; }
}

/* ===== APRIL PROMO ===== */
.promo-banner {
    background: linear-gradient(135deg, #c4614a 0%, #d17b5c 100%);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    color: white;
}
.promo-fire { font-size: 1.6rem; flex-shrink: 0; }
.promo-text { flex: 1; }
.promo-text strong { display: block; font-size: 1rem; font-weight: 700; }
.promo-text span { font-size: 0.85rem; opacity: 0.88; }
.promo-countdown { text-align: center; flex-shrink: 0; background: rgba(0,0,0,0.15); border-radius: 10px; padding: 0.5rem 1rem; }
.promo-days { display: block; font-size: 1.8rem; font-weight: 700; line-height: 1; }
.promo-days-lbl { font-size: 0.65rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.05em; }

/* Sale badge na kartici */
.pc-sale-tag {
    position: absolute;
    top: 12px; left: 14px;
    background: #e03d2e;
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
    letter-spacing: 0.04em;
}
/* Prečrtana originalna cena */
.pc-original {
    font-size: 0.95rem;
    color: #bbb;
    text-decoration: line-through;
    margin-right: 4px;
    font-weight: 400;
}

/* ===== PACKAGE FEATURES LIST ===== */
.pc-features { margin: 1rem 0 0.75rem; display: flex; flex-direction: column; gap: 0.45rem; }
.pc-feat { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-secondary); }
.pc-feat-ico { font-size: 0.85rem; width: 18px; flex-shrink: 0; }
.pc-feat-muted { opacity: 0.4; }
.pc-feat-highlight { color: var(--terracotta); font-weight: 600; }

/* ===== ENKRATNI EXTRAS ===== */
.pkg-extras { margin-top: 1.5rem; }
.pkg-extra-title { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-secondary); margin-bottom: 0.85rem; }
.pkg-extra-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pkg-extra-card { background: var(--cream); border-radius: 14px; padding: 1rem 1.1rem; display: flex; align-items: center; gap: 0.85rem; border: 1px solid #f0ece8; }
.pkg-extra-full { grid-column: 1 / -1; background: linear-gradient(135deg, #fdf5f1, #fef9f7); border-color: rgba(209,123,92,0.3); }
.pec-ico { font-size: 1.4rem; flex-shrink: 0; }
.pec-name { font-size: 0.88rem; font-weight: 600; color: var(--charcoal); }
.pec-desc { font-size: 0.78rem; color: var(--text-secondary); margin-top: 2px; }
.pec-price { margin-left: auto; font-weight: 700; color: var(--terracotta); font-size: 0.9rem; white-space: nowrap; flex-shrink: 0; }
@media (max-width: 640px) { .pkg-extra-grid { grid-template-columns: 1fr; } }

/* ===== LOYALTY BOX ===== */
.loyalty-box { background: linear-gradient(135deg, #fdf5f1, #fef9f7); border: 1px solid rgba(209,123,92,0.2); border-radius: 16px; padding: 1.5rem; margin-top: 1.5rem; }
.loyalty-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.loyalty-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.loyalty-ico { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.loyalty-item strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--charcoal); }
.loyalty-item span { font-size: 0.78rem; color: var(--text-secondary); }
@media (max-width: 768px) { .loyalty-grid { grid-template-columns: 1fr; } }

/* ===== INCLUDED BOX ===== */
.included-box { background: white; border: 1px solid #f0ece8; border-radius: 16px; padding: 1.5rem 1.75rem; margin-top: 2rem; }
.included-title { font-size: 0.9rem; font-weight: 700; color: var(--charcoal); margin-bottom: 1rem; }
.included-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.6rem; }
.included-item { font-size: 0.85rem; color: var(--text-secondary); display: flex; align-items: center; gap: 0.4rem; }
@media (max-width: 768px) { .included-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .included-grid { grid-template-columns: 1fr; } }

/* ===== ONBOARDING BOX ===== */
.onboarding-box { background: var(--beige); border-radius: 16px; padding: 1.75rem; margin-top: 2rem; }
.onboarding-title { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 1.5rem; color: var(--charcoal); text-align: center; }
.onboarding-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; position: relative; }
.onboarding-steps::before { content: ''; position: absolute; top: 13px; left: 5%; right: 5%; height: 2px; background: rgba(209,123,92,0.25); z-index: 0; }
.ob-step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.6rem; position: relative; z-index: 1; }
.ob-num { width: 28px; height: 28px; min-width: 28px; background: var(--terracotta); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.75rem; box-shadow: 0 0 0 4px var(--beige); }
.ob-step span:last-child { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.45; }
@media (max-width: 768px) {
    .onboarding-steps { grid-template-columns: 1fr; }
    .onboarding-steps::before { display: none; }
    .ob-step { flex-direction: row; text-align: left; }
    .ob-num { box-shadow: none; flex-shrink: 0; }
}

/* ===== INLINE ADDON TOGGLE ON CARD ===== */
.pc-addon-row { margin-top: 0.85rem; padding-top: 0.75rem; border-top: 1px solid #f0ece8; }
.pc-addon-toggle { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; user-select: none; }
.pc-addon-toggle input[type="checkbox"] { display: none; }
.pc-addon-box {
    width: 20px; height: 20px; min-width: 20px;
    border: 2px solid #ddd; border-radius: 5px;
    background: white; transition: 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.pc-addon-toggle input:checked + .pc-addon-box {
    background: var(--terracotta);
    border-color: var(--terracotta);
}
.pc-addon-toggle input:checked + .pc-addon-box::after {
    content: '✓'; color: white; font-size: 0.7rem; font-weight: 700;
}
.pc-addon-label { font-size: 0.82rem; color: var(--text-secondary); }
.pc-addon-label strong { color: var(--terracotta); }

/* ===== SIMPLE SUMMARY BOX ===== */
.calc-summary-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.cs-left { flex: 1; }
.cs-title { font-family: var(--font-serif); font-size: 1.2rem; color: white; margin-bottom: 1rem; }
.cs-rows { display: flex; flex-direction: column; gap: 0.5rem; }
.cs-row { display: flex; justify-content: space-between; font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.cs-right { text-align: center; min-width: 160px; }
.cs-total-lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.5); margin-bottom: 0.3rem; }
.cs-total { font-size: 2.2rem; font-weight: 700; color: white; margin-bottom: 1.25rem; line-height: 1; }
@media (max-width: 640px) {
    .calc-summary-inner { flex-direction: column; }
    .cs-right { width: 100%; }
}

/* ===== VIZUALI INLINE INQUIRY FORM ===== */
.vizuali-inquiry {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2.5rem;
    margin-top: 3rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
    border-radius: 24px;
    padding: 2.5rem;
    color: white;
    align-items: start;
}
.viq-placeholder { text-align: center; padding: 2rem 1rem; color: rgba(255,255,255,0.4); }
.viq-placeholder-ico { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.viq-placeholder p { font-size: 0.9rem; line-height: 1.6; margin: 0; }

.viq-summary { display: flex; flex-direction: column; gap: 0.5rem; padding: 1.5rem; background: rgba(255,255,255,0.07); border-radius: 14px; }
.viq-sum-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.45); margin-bottom: 0.25rem; }
.viq-sum-row { display: flex; justify-content: space-between; font-size: 0.9rem; color: rgba(255,255,255,0.75); padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.viq-sum-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 0.75rem; margin-top: 0.25rem; }
.viq-sum-total span { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.viq-sum-total strong { font-size: 1.7rem; font-weight: 700; color: #e8956b; }

.viq-form-title { font-family: var(--font-serif); font-size: 1.3rem; color: white; margin: 0 0 1.5rem; }
.viq-form { display: flex; flex-direction: column; gap: 1rem; }
.viq-field { display: flex; flex-direction: column; gap: 0.35rem; }
.viq-field label { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.05em; }
.viq-field input,
.viq-field textarea {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 0.92rem;
    transition: border-color 0.2s;
    font-family: inherit;
    resize: none;
}
.viq-field input::placeholder,
.viq-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.viq-field input:focus,
.viq-field textarea:focus { outline: none; border-color: rgba(209,123,92,0.6); background: rgba(255,255,255,0.1); }
.viq-submit {
    width: 100%;
    padding: 1rem;
    background: var(--terracotta);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.25s;
    margin-top: 0.5rem;
}
.viq-submit:hover:not(:disabled) { background: #c4614a; transform: translateY(-1px); }
.viq-submit:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.viq-note { font-size: 0.75rem; color: rgba(255,255,255,0.35); text-align: center; margin: 0; }

@media (max-width: 900px) {
    .vizuali-inquiry { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .vizuali-inquiry { padding: 1.5rem; }
}

/* ========================================
   NAV DROPDOWN — Storitve (Vizuali, Nepremičnine)
   ======================================== */

/* Trigger gumb (Storitve) */
.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--charcoal);
    font-weight: 500;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
    transition: color 0.3s ease;
}
.nav-dropdown-trigger:hover { color: var(--terracotta); }
.nav-dropdown-trigger.has-current { color: var(--terracotta); font-weight: 600; }

/* Puščica ▾ */
.nav-dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
    margin-top: 1px;
}
.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown.is-open .nav-dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    padding: 0.5rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1001;
}

/* Nevidni "bridge" — preprečuje zaprtje med gumbom in panelom */
.nav-dropdown::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
}

/* Open state: hover ali click */
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Postavke v dropdownu */
.nav-dropdown-menu li { margin: 0; }
.nav-dropdown-menu a {
    display: block;
    padding: 0.7rem 1rem;
    color: var(--charcoal) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}
.nav-dropdown-menu a:hover {
    background: var(--cream);
    color: var(--terracotta) !important;
}
.nav-dropdown-menu a.nav-current {
    color: var(--terracotta) !important;
    font-weight: 600;
    background: rgba(209,123,92,0.06);
}

/* Mobile: dropdown postane razgrnjen seznam */
@media (max-width: 768px) {
    .mobile-menu .mobile-dropdown-title {
        font-weight: 700;
        color: var(--text-light);
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        padding-top: 0.5rem;
        margin-bottom: -0.3rem;
    }
    .mobile-menu .mobile-dropdown-item {
        padding-left: 1rem;
        position: relative;
    }
    .mobile-menu .mobile-dropdown-item::before {
        content: "—";
        position: absolute;
        left: 0;
        color: var(--terracotta);
    }
}