/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: hsl(229, 100%, 11%);
    background-color: hsl(0, 0%, 100%);
}

/* CSS Variables - Design System */
:root {
    --primary: hsl(75, 100%, 54%);
    --primary-foreground: hsl(229, 100%, 11%);
    --secondary: hsl(229, 100%, 11%);
    --secondary-foreground: hsl(0, 0%, 100%);
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(229, 100%, 11%);
    --muted: hsl(0, 0%, 96%);
    --muted-foreground: hsl(229, 30%, 35%);
    --border: hsl(0, 0%, 90%);
    --radius: 0.75rem;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary), hsl(75, 80%, 45%));
    --gradient-secondary: linear-gradient(135deg, var(--secondary), hsl(229, 80%, 20%));
    --gradient-subtle: linear-gradient(180deg, var(--background), var(--muted));

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    color: var(--muted-foreground);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--secondary-foreground);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--secondary-foreground);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
}

.btn-full {
    width: 100%;
}

.icon {
    font-size: 1.2em;
    margin-left: 0.25rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 1rem 0;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background: var(--foreground);
    transition: var(--transition);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 1.5rem;
    height: 2px;
    background: var(--foreground);
    transition: var(--transition);
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}

.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.mobile-menu.active {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--foreground);
    padding: 0.5rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.mobile-menu a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--background) 0%, var(--muted) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 6rem 0 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsla(75, 100%, 54%, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    color: var(--primary);
}

.highlight-large {
    color: var(--primary);
    font-size: 1.2em;
}

.underline {
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    text-align: left;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Free Consultation Section */
.free-consultation {
    padding: 5rem 0;
    background: linear-gradient(135deg, hsla(75, 100%, 54%, 0.1) 0%, hsla(75, 100%, 54%, 0.05) 100%);
    text-align: center;
}

.consultation-content {
    max-width: 800px;
    margin: 0 auto;
}

.gift-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

.consultation-title {
    margin-bottom: 2rem;
    line-height: 1.2;
}

.consultation-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-xl);
    border: 4px solid hsla(75, 100%, 54%, 0.2);
}

.consultation-description {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.consultation-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--muted-foreground);
}

@media (min-width: 640px) {
    .consultation-features {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}

.consultation-btn {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--gradient-secondary);
    color: white;
}

.services .section-header h2,
.services .section-header p {
    color: white;
}

.services .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.service-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.material-symbols-outlined {
    font-size: 2rem;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    color: white;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--primary);
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 5rem 0;
    background: var(--gradient-subtle);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 4rem 0;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, hsla(75, 100%, 54%, 0.2), hsla(229, 100%, 11%, 0.2));
    color: var(--secondary);
    font-size: 2rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.process-step:hover .step-number,
.process-step:hover .step-icon {
    transform: scale(1.1);
}

.process-step h3 {
    margin-bottom: 1rem;
}

.process-benefits {
    background: linear-gradient(135deg, hsla(229, 100%, 11%, 0.1), hsla(75, 100%, 54%, 0.1));
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    margin-top: 5rem;
}

.process-benefits h3 {
    margin-bottom: 1rem;
}

.process-benefits p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.benefits-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--gradient-secondary);
    color: white;
}

.pricing .section-header h2,
.pricing .section-header p {
    color: white;
}

.pricing .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

.pricing-card.popular {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: var(--primary);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.pricing-card.popular .pricing-icon {
    background: var(--secondary);
    color: var(--primary);
}

.pricing-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 2rem auto 1.5rem;
}

.pricing-card h3 {
    color: inherit;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.pricing-description {
    font-size: 0.875rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    color: var(--secondary);
}

.pricing-description2 {
    font-size: 0.875rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    color: var(--primary);
}

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

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
}

.pricing-note p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
}

/* Consultation Section */
.consultation-section {
    padding: 5rem 0;
    background: var(--gradient-secondary);
    color: white;
    text-align: center;
}

.consultation-section-content {
    max-width: 800px;
    margin: 0 auto;
}

.consultation-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.consultation-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--background);
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.phone-contact {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-xl);
    border: none;
}

.phone-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.phone-contact h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.phone-info {
    background: linear-gradient(135deg, hsla(75, 100%, 54%, 0.1), hsla(229, 100%, 11%, 0.1));
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.phone-info p {
    font-size: 1.125rem;
    color: var(--secondary);
    margin-bottom: 0rem;
    margin-top: 2rem;
}

.phone-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.phone-number:hover {
    color: hsla(229, 100%, 11%, 0.9);
    transform: scale(1.05);
}

.availability {
    color: var(--muted-foreground);
    font-size: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    background: linear-gradient(135deg, hsla(75, 100%, 54%, 0.1), hsla(229, 100%, 11%, 0.1));
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: none;
}

.contact-card h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: hsla(75, 100%, 54%, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.help-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.help-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.help-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.help-dot.secondary {
    background: var(--secondary);
}

.help-item strong {
    color: var(--secondary);
    font-weight: 600;
}

.help-item p {
    font-size: 0.875rem;
    margin: 0;
}

.coverage {
    text-align: center;
}

.coverage h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.coverage p {
    font-size: 0.875rem;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--secondary-foreground);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-brand {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-brand {
        text-align: left;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-logo {
        justify-content: flex-start;
    }
}

.footer-logo-img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-section {
        text-align: left;
    }
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0.5rem 0;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .social-links {
        align-items: flex-start;
    }
}


.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: default;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.875rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Scroll animations */
section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

section.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.3);
        --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.3);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

a[href^="mailto"],
.phone-number,            /* e-mail je u teba aj s touto triedou */
.contact-card p,          /* v karte "Email" je e-mail ako čistý text */
.social-link {            /* vo footeri je e-mail ako odkaz */
  overflow-wrap: anywhere; /* moderné prehliadače – zalom kdekoľvek */
  word-break: break-word;  /* fallback pre staršie */
  hyphens: auto;           /* povolí prípadné delenie */
  display: inline-block;   /* umožní rešpektovať max-width */
  max-width: 100%;
}