/* --- ZÁKLADNÉ RESETOVANIE A PREMENNÉ --- */
:root {
    --primary-black: #0b0b0b;
    --secondary-black: #121212;
    --light-black: #1a1a1a;
    --gold: #d4af37;
    --gold-hover: #f3cf65;
    --gold-light: rgba(212, 175, 55, 0.1);
    --text-light: #f5f5f5;
    --text-muted: #aaaaaa;
    --text-dark: #222222;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- REUSABLE ŠTÝLY (GRID, KONTENERY) --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.max-width-md {
    max-width: 800px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}

.section-padding {
    padding: 100px 0;
}

.bg-alt {
    background-color: var(--secondary-black);
}

.gold-text {
    color: var(--gold);
}

.text-center {
    text-align: center;
}

/* --- OZNAČENIA A NADPISY SEKCIÍ --- */
.section-badge {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 40px;
}

.section-header {
    margin-bottom: 60px;
}

/* --- TLAČIDLÁ --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    border-radius: 0;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--primary-black);
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: 16px;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* --- HEADER & NAVIGÁCIA --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 24px 0;
}

.site-header.scrolled {
    background-color: rgba(11, 11, 11, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--gold);
    font-weight: 400;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
}

.btn-nav {
    border: 1px solid var(--gold);
    padding: 10px 20px;
    margin-left: 10px;
}

.btn-nav:hover {
    background-color: var(--gold);
    color: var(--primary-black);
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--white);
}

/* --- HERO SEKCIA --- */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(11, 11, 11, 0.822), rgba(11, 11, 11, 0.829)), url('https://images.pexels.com/photos/1714203/pexels-photo-1714203.jpeg?_gl=1*1p60hlx*_ga*NDYwOTEyMzM4LjE3ODE4MDUyNjY.*_ga_8JE65Q40S6*czE3ODI0MTk3MjIkbzMkZzEkdDE3ODI0MjAwMzkkajYwJGwwJGgw') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 750px;
}

.hero-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

/* --- O NÁS SEKCIA --- */
.about-image-wrapper {
    position: relative;
    height: 500px;
    background: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?auto=format&fit=crop&w=800&q=80') no-repeat center center/cover;
    box-shadow: var(--shadow);
}

.about-luxury-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--gold);
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.experience-badge {
    text-align: center;
    color: var(--primary-black);
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.body-text {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 300;
}

.about-signatures {
    display: flex;
    gap: 24px;
    margin-top: 30px;
}

.signature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* --- NAŠE SLUŽBY --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background-color: var(--light-black);
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background-color: rgba(26, 26, 26, 0.6);
    border-color: rgba(212, 175, 55, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
}

/* --- PREČO SI VYBRAŤ NÁS --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-item {
    display: flex;
    flex-direction: column;
}

.why-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
    background-color: var(--light-black);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.why-item h4 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 600;
}

.why-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

/* --- POSTUP SPOLUPRÁCE --- */
.steps-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.step-card {
    background-color: var(--primary-black);
    padding: 35px 25px;
    border-left: 2px solid var(--gold);
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.15);
    position: absolute;
    top: 15px;
    right: 20px;
}

.step-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

/* --- REFERENCIE SLIDER --- */
.testimonials-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    background-color: var(--secondary-black);
    padding: 60px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.testimonials-slider {
    position: relative;
    min-height: 220px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.rating {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.5;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
}

.testimonial-company {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
}

.slider-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* --- FAQ ACCORDION --- */
.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background-color: var(--primary-black);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--gold);
}

.accordion-header .icon {
    font-size: 0.9rem;
    transition: var(--transition);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 0 24px;
}

.accordion-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding-bottom: 24px;
    font-weight: 300;
}

.accordion-item.active {
    border-color: rgba(212, 175, 55, 0.3);
}

.accordion-item.active .accordion-header {
    color: var(--gold);
}

.accordion-item.active .icon {
    transform: rotate(45deg);
    color: var(--gold);
}

/* --- KONTAKTNÁ SEKCIA & FORMULÁR --- */
.info-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-link-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    font-size: 1.4rem;
    color: var(--gold);
    background-color: var(--secondary-black);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.info-text span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.info-text a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--transition);
}

.info-text a:hover {
    color: var(--gold);
}

.info-text p {
    color: var(--white);
    font-size: 1rem;
    font-weight: 400;
}

.luxury-form {
    background-color: var(--secondary-black);
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.form-group-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.luxury-form label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.luxury-form input, .luxury-form textarea {
    background-color: var(--primary-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 18px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 0;
    transition: var(--transition);
}

.luxury-form input:focus, .luxury-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.form-response {
    margin-top: 20px;
    font-size: 0.95rem;
    text-align: center;
}

.form-response.success {
    color: #4bb543;
}

.form-response.error {
    color: #ff3333;
}

/* --- MAPA --- */
.map-container {
    filter: grayscale(1) invert(0.92) contrast(1.2);
    line-height: 0;
}

/* --- FOOTER --- */
.site-footer {
    background-color: #050505;
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 20px 0;
    max-width: 400px;
    font-weight: 300;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: var(--text-muted);
    background-color: var(--light-black);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--gold);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    background-color: var(--primary-black);
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #666666;
}

/* --- ANIMÁCIE PRI SCROLLOVANÍ --- */
.scroll-anim {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-up {
    transform: translateY(40px);
}

.fade-left {
    transform: translateX(40px);
}

.fade-right {
    transform: translateX(-40px);
}

.scroll-anim.appear {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- RESPONSIVE DIZAJN (MEDIA QUERIES) --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .section-padding {
        padding: 70px 0;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    
    /* Mobilné navigácie */
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background-color: var(--gold);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background-color: var(--gold);
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--primary-black);
        z-index: 1000;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        border-left: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        justify-content: center;
        height: 100%;
        gap: 30px;
        padding-left: 40px;
        align-items: flex-start;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .btn-nav {
        margin-left: 0;
        padding: 12px 28px;
    }
    
    .about-image-wrapper {
        height: 350px;
    }
    
    .luxury-form {
        padding: 30px 20px;
    }
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-grid, .why-grid, .steps-timeline {
        grid-template-columns: 1fr;
    }
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .btn-secondary {
        margin-left: 0;
    }
    .testimonials-slider-container {
        padding: 30px 20px;
    }
    .testimonial-text {
        font-size: 1.1rem;
    }
}
.logo-image {
    width:50px;
    height: auto;
    transform:translateX(-23px)
}