﻿/* doremiredo Music Center - Clean CSS */

:root {
    --brand-red: #E11D48;
    --brand-cream: #FDFCFB;
    --slate-1000: #134E8E;
    --slate-900: #0f172a;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --white: #ffffff;
    --max-width: 1280px;
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--slate-900);
    background-color: var(--brand-cream);
    line-height: 1.5;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    tracking: -0.025em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--max-width); /* ostaje 1280px za desktop */
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.hero-section,
.programs-section,
.about-section,
.pricing-section,
.contact-section {
    overflow-x: hidden;
    position: relative;
}

/* Typography Helpers */
.italic {
    font-style: italic;
}

.font-bold {
    font-weight: 700;
}

.highlight-red {
    color: var(--brand-red);
}

.highlight-red-bold {
    color: var(--brand-red);
    font-weight: 700;
}

.highlight-bold {
    font-weight: 700;
    color: var(--brand-red);
}

.highlight-italic {
    color: var(--brand-red);
    font-style: italic;
    font-weight: 700;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
}

@media (max-width: 768px) {
    .site-header {
        position: sticky;
    }
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* dodano */
}

.logo-wrapper {
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.logo-fallback {
    display: none; /* Shown via JS onerror */
    align-items: center;
    gap: 0.75rem;
}

.icon-circle {
    padding: 0.5rem;
    border-radius: 9999px;
    max-width: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
}

.desktop-nav .nav-list {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .desktop-nav .nav-list {
        display: flex;
    }
}

.nav-link {
    font-weight: 500;
    color: var(--slate-700);
}

    .nav-link:hover {
        opacity: 0.7;
    }

.btn-enroll {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    background-color: var(--brand-red);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

    .btn-enroll:hover {
        background-color: rgba(225, 29, 72, 0.9);
    }

/* Mobile toggle s dvije ikone */
.mobile-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-menu, .icon-x {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon-menu svg, .icon-x svg {
        width: 24px;
        height: 24px;
    }

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }
}

/* Header Scrolled State */
.site-header.scrolled {
    background-color: var(--brand-red);
    color: var(--white);
    padding: 0.75rem 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

    .site-header.scrolled .nav-link {
        color: var(--white);
    }

    .site-header.scrolled .mobile-link {
        color: var(--slate-900);
    }

        .site-header.scrolled .mobile-link:hover {
            color: var(--brand-red);
        }

    .site-header.scrolled .btn-enroll {
        background-color: var(--white);
        color: var(--brand-red);
    }

    .site-header.scrolled .mobile-toggle {
        color: var(--white);
    }

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--slate-100);
    transition: all 0.3s ease-in-out;
    transform-origin: top;
    display: block; /* Kada nije hidden */
    opacity: 1;
    transform: scaleY(1);
}

    .mobile-menu.hidden {
        display: none !important;
        opacity: 0;
        transform: scaleY(0);
    }

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
}

.mobile-link {
    font-size: 1.125rem;
    font-weight: 500;
}

    .mobile-link:hover {
        color: var(--brand-red);
    }

.btn-mobile-enroll {
    background-color: var(--brand-red);
    color: var(--white) !important;
    text-align: center;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
    background-color: var(--brand-cream);
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 0.5rem;
        padding-bottom: 1rem;
    }
}

/*.bg-shape {
    position: absolute;
    border-radius: 9999px;
    filter: blur(64px);
    z-index: -1;
}

.bg-shape-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background-color: rgba(225, 29, 72, 0.05);
}

.bg-shape-2 {
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background-color: rgba(225, 29, 72, 0.1);
}*/

.hero-container {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-title {
    font-size: 3.75rem;
    line-height: 0.9;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--slate-600);
    margin-bottom: 2.5rem;
    max-width: 32rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: var(--brand-red);
    color: var(--white);
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

    .btn-primary:hover {
        transform: translateY(-4px);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    }

.btn-secondary {
    padding: 1rem 2rem;
    background-color: var(--white);
    color: var(--slate-900);
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
}

    .btn-secondary:hover {
        background-color: var(--slate-50);
    }

.hero-image-wrapper {
    position: relative;
}

.main-hero-image {
    position: relative;
    z-index: 10;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: rotate(2deg);
}

@media (max-width: 768px) {
    .main-hero-image {
        box-shadow: none;
    }
}

    .main-hero-image img {
        width: 100%;
        aspect-ratio: 4/5;
        object-fit: cover;
    }

.decorative-image {
    position: absolute;
    z-index: 20;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--white);
    display: none;
}

@media (min-width: 768px) {
    .decorative-image {
        display: block;
    }
}

.xylophone-1 {
    top: -3rem;
    right: -3rem;
    width: 12rem;
    height: 12rem;
    transform: rotate(-6deg);
}

.bg-circle-glow {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 10rem;
    height: 10rem;
    background-color: rgba(225, 29, 72, 0.1);
    border-radius: 9999px;
    z-index: -1;
}

@media (max-width: 768px) {
    .bg-circle-glow {
        display: none;
    }
}

/* Programs Section */
.programs-section {
    padding-top: 6rem;
    padding-bottom: 1rem;
    background-color: var(--white);
    min-height: 800px;
}

.section-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 5rem;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .section-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.section-subtitle {
    color: var(--brand-red);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.75rem;
    }
}

.header-description {
    color: var(--slate-500);
    max-width: 24rem;
}

.programs-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .program-card-container.priority {
        grid-column: 1 / span 1;
    }
}

.program-card-container {
    position: relative;
    height: 500px;
    perspective: 1000px;
    isolation: isolate; /* ⭐ KLJUČNO */
    transform: translateZ(0); /* stvara novi stacking context */
    contain: layout;
}

@media(min-width: 768px) {
    .program-card-container {
        height: 550px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .program-card-container.priority {
        grid-column: span 2;
    }
}

.program-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

    .program-card.flipped {
        transform: rotateY(180deg);
    }

.card-front, .card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 2.5rem;
    overflow: hidden;
    border: 1px solid var(--slate-100);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);

    transform: translateZ(0);
}

.card-front {
    background-color: var(--white);
    display: flex;
    flex-direction: column;
}

.card-image {
    height: 12rem;
    position: relative;
    overflow: hidden;
}

    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.program-card-container:hover .card-image img {
    transform: scale(1.1);
}


.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.card-icon {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.icon-rose {
    background-color: #f43f5e;
}

.icon-amber {
    background-color: #f59e0b;
}

.icon-indigo {
    background-color: #6366f1;
}

.icon-emerald {
    background-color: #10b981;
}

.icon-green {
    background-color: green;
}

.card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-text {
    color: var(--slate-500);
    margin-bottom: 2rem;
}

.flip-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--brand-red);
}

    .flip-btn:hover {
        gap: 0.75rem;
    }

.priority-badge {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background-color: var(--brand-red);
    color: var(--white);
    font-size: 10px;
    font-weight: 900;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-back {
    background-color: var(--slate-1000);
    color: var(--white);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transform: rotateY(180deg);
}

.unflip-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.1);
}

    .unflip-btn:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

.card-details {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--slate-300);
    margin-bottom: 2rem;
}

.btn-card-action {
    margin-top: auto;
    width: 100%;
    padding: 1rem;
    background-color: var(--brand-red);
    color: var(--white);
    border-radius: 1rem;
    font-weight: 700;
    text-align: center;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--brand-cream);
    overflow: hidden;
}

@media (max-width: 768px) {
    .about-section {
        padding-bottom: 1rem;
    }
}

.about-container {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .about-container {
        display: grid;
        grid-template-columns: 1fr; /* Jedna kolona na mobitelu */
        gap: 2rem; /* Malo manji razmak */
    }

    /* Stavite about-content PRVI (na vrh) */
    .about-content {
        order: 1;
    }

    /* Stavite about-image-wrapper DRUGI (ispod teksta) */
    .about-image-wrapper {
        order: 2;
    }
}

.about-image-wrapper {
    position: relative;
}

@media (min-width: 1024px) {
    .about-container {
        align-items: flex-start;
    }

    .about-image-wrapper {
        margin-top: 5rem;
    }
}

.main-about-image {
    position: relative;
    z-index: 10;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .main-about-image {
        box-shadow: none;
    }
}

    .main-about-image img {
        width: 100%;
        aspect-ratio: 4/5;
        object-fit: cover;
    }

.bg-circle-accent {
    position: absolute;
    bottom: -2.5rem;
    right: -2.5rem;
    width: 16rem;
    height: 16rem;
    background-color: var(--brand-red);
    border-radius: 9999px;
    opacity: 0.1;
    z-index: -1;
}

@media (max-width: 768px) {
    .bg-circle-accent {
        display: none;
    }
}

.bg-pill-accent {
    position: absolute;
    top: 50%;
    left: -3rem;
    transform: translateY(-50%);
    width: 6rem;
    height: 12rem;
    background-color: var(--slate-900);
    border-radius: 9999px;
    opacity: 0.05;
    z-index: -1;
}

.leader-badge {
    position: absolute;
    bottom: 1rem;
    right: -2rem;
    z-index: 20;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--slate-100);
    max-width: 17.5rem;
}

@media (max-width: 768px) {
    .leader-badge {
        bottom: -3rem;
        right: 0;
        z-index: 20;
        /* Smanjenje */
        padding: 1.25rem;
        max-width: 14rem;
        /* Centriranje sadržaja */
        text-align: center;
    }

    .leader-name {
        font-size: 1.1rem;
    }

    .leader-title {
        font-size: 0.75rem;
    }

    .leader-quote {
        font-size: 0.8rem;
    }
}

.leader-name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.leader-title {
    color: var(--brand-red);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.leader-quote {
    color: var(--slate-500);
    font-size: 0.875rem;
    font-style: italic;
}

.about-description {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin-top: 1rem;
}

    .about-description strong {
        color: black;
        font-weight: 900;
    }

.about-features {
    margin-top: 2.5rem;
}

    .about-features li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

.feature-icon {
    margin-top: 0.25rem;
    padding: 0.25rem;
    border-radius: 9999px;
    background-color: rgba(225, 29, 72, 0.1);
    color: var(--brand-red);
}

.about-leader {
    padding-top: 1rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--slate-200);
}

.stat-number {
    font-size: 2.25rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.stat-label {
    color: var(--slate-500);
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 700;
}


/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background-color: var(--slate-900);
    color: var(--white);
}

@media (max-width: 768px) {
    .pricing-section {
        padding-bottom: 1rem;
    }
}

.pricing-container {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .pricing-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-intro {
        display: flex;
        flex-direction: column;
    }

    .pricing-intro .btn-download {
        align-self: center;
    }
}

.pricing-description {
    color: var(--slate-400);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    padding-top: 2rem;
}

.pricing-features {
    margin-bottom: 3rem;
}

    .pricing-features li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

.check-icon {
    background-color: var(--brand-red);
    padding: 0.25rem;
    border-radius: 9999px;
    display: flex;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background-color: var(--brand-red);
    color: var(--white);
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

    .btn-download:hover {
        background-color: rgba(225, 29, 72, 0.9);
    }

.pricing-card-wrapper {
    position: relative;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 3rem;
    backdrop-filter: blur(4px);
}

    .pricing-card .card-header {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .pricing-card .card-subtitle {
        color: var(--brand-red);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .pricing-card .card-title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }

    .pricing-card .card-description {
        color: var(--slate-400);
    }

    .pricing-card .detail-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 1.5rem;
    }

    .pricing-card .detail-label {
        color: var(--slate-300);
    }

    .pricing-card .card-price-box {
        margin-top: 3rem;
        padding: 1.5rem;
        background-color: rgba(225, 29, 72, 0.1);
        border: 1px solid rgba(225, 29, 72, 0.2);
        border-radius: 1rem;
        text-align: center;
    }

.price-label {
    color: var(--slate-400);
    font-size: 0.875rem;
}

.price-value {
    font-size: 3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.price-unit {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--slate-400);
}

.bg-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background-color: rgba(225, 29, 72, 0.2);
    border-radius: 9999px;
    filter: blur(100px);
    z-index: -1;
}

@media (max-width: 768px) {
    .bg-card-glow {
        display: none;
    }
}

/* Na mobilnim uređajima, poništi sve transformacije za pricing sekciju */
@media (max-width: 768px) {
    .pricing-card-wrapper.reveal-right,
    .pricing-card-wrapper.reveal-left,
    .pricing-intro.reveal-left,
    .pricing-intro.reveal-right {
        transform: translateX(0) !important;
        opacity: 1 !important; /* Osiguraj da su vidljivi */
    }

    /* Također, smanji padding na kartici da bolje stane */
    .pricing-card {
        padding: 1.5rem; /* Sa 3rem na 1.5rem */
    }

    /* Spriječi da brojevi idu u novi red */
    .price-value {
        font-size: 2.5rem; /* Malo manji font */
        white-space: nowrap; /* Spriječi lomljenje "50€/mj" */
    }

    .price-unit {
        font-size: 1rem;
    }
}


/* Q&A Section */
.qna-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--brand-cream) 0%, #ffffff 100%);
}

.qna-grid {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.qna-item {
    background-color: var(--white);
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--slate-100);
    transition: all 0.3s ease;
}

.qna-question {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--slate-900);
    border-radius: 1.5rem;
}

    .qna-question h4 {
        font-size: 1.1rem;
        margin: 0;
        font-weight: 600;
        flex: 1;
        padding-right: 1.5rem;
    }

.qna-icon {
    color: var(--brand-red);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background-color: rgba(225, 29, 72, 0.1);
}

.qna-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 2rem;
    color: var(--slate-600);
    line-height: 1.6;
    border-top: 0px solid transparent;
}

    .qna-answer strong {
        color: #000000;
        font-weight: 900;
    }

/* Aktivan state */
.qna-item.active .qna-answer {
    max-height: none;
    padding: 0 2rem 1.5rem 2rem;
    border-top: 1px solid var(--slate-100);
}

.qna-item.active .qna-icon {
    transform: rotate(180deg);
    background-color: var(--brand-red);
    color: white;
}

.qna-item:hover {
    
}

.qna-contact-link {
    color: var(--brand-red);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

    .qna-contact-link:hover {
        opacity: 0.8;
    }

/* Mobile */
@media (max-width: 768px) {
    .qna-section {
        padding: 4rem 0;
    }

    .qna-question {
        padding: 1.25rem 1.5rem;
    }

        .qna-question h4 {
            font-size: 1rem;
        }

    .qna-icon {
        width: 28px;
        height: 28px;
    }

    .qna-answer {
        padding: 0 1.5rem;
    }

    .qna-item.active .qna-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
}


/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background-color: var(--white);
}

@media (max-width: 768px) {
    .contact-section {
        padding-bottom: 1rem;
    }
}

.contact-container {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-description {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.method-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background-color: var(--brand-cream);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.method-label {
    color: var(--slate-400);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.method-value {
    font-size: 1.25rem;
    font-weight: 700;
}

.contact-form-wrapper {
    background-color: var(--brand-cream);
    padding: 2.5rem;
    border-radius: 3rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--slate-700);
    text-transform: uppercase;
}

.form-input, .form-select, .form-textarea {
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--slate-200);
    background-color: var(--white);
    outline: none;
    transition: var(--transition);
}

    .form-input:focus, .form-select:focus, .form-textarea:focus {
        border-color: var(--brand-red);
        box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
    }

.btn-submit {
    padding: 1.25rem;
    background-color: var(--brand-red);
    color: var(--white);
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

.map-wrapper {
    margin-top: 6rem;
    height: 450px;
    border-radius: 3rem;
    overflow: hidden;
    position: relative;
    border: 8px solid var(--white);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.map-wrapper iframe {
    filter: grayscale(1);
    transition: filter 0.7s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0);
}

.map-overlay {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: var(--white);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.map-address {
    font-weight: 700;
}

.map-city {
    font-size: 0.75rem;
    color: var(--slate-500);
}

/* Footer Styles */
.site-footer {
    background-color: var(--brand-cream);
    padding-top: 6rem;
    padding-bottom: 3rem;
}

@media (max-width: 768px) {
    .site-footer {
        padding-top: 1rem;
    }
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--slate-500);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: var(--white);
    border: 1px solid var(--slate-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-600);
}

    .social-link:hover {
        background-color: var(--brand-red);
        color: var(--white);
    }

.footer-title {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-list li {
    margin-bottom: 1rem;
}

.footer-link {
    color: var(--slate-500);
}

    .footer-link:hover {
        color: var(--brand-red);
    }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--slate-500);
}

    .contact-item i {
        color: var(--brand-red);
        margin-top: 0.25rem;
    }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--slate-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: center;
    }
}

.copyright, .made-with {
    color: var(--slate-400);
    font-size: 0.875rem;
}

.heart {
    color: var(--brand-red);
}

/* Scroll Animations */
.reveal-left, .reveal-right, .reveal-up, .reveal-scale {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-scale {
    transform: scale(0.9);
}

.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

.map-wrapper {
    grid-column: 1 / -1; /* ⭐ ključ — preko obje kolone */
    width: 100%;
    max-width: var(--max-width);
    margin: 6rem auto 0;
}

@media (max-width: 768px) {
    .map-wrapper {
        margin: 1rem auto 0;
    }
}

.map-iframe {
    width: 100%;
    height: 100%;
    display: block;
}

