/* ================================================================
   Pomocná ruka – Hodinový manžel | Professional Website Styles
   ================================================================ */

/* ========== CSS VARIABLES ========== */
:root {
    /* Warm color palette */
    --primary: #C2642B;
    --primary-dark: #A04E1A;
    --primary-light: #E8945A;
    --primary-glow: rgba(194, 100, 43, 0.25);

    --accent: #D4A574;
    --accent-light: #F0D9C0;

    --bg: #FFFBF7;
    --bg-warm: #FFF5EB;
    --bg-section: #FDF0E6;
    --bg-dark: #2C1810;

    --text: #3D2213;
    --text-light: #7A5C4A;
    --text-muted: #A08775;

    --white: #FFFFFF;
    --border: rgba(194, 100, 43, 0.12);

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-py: clamp(4rem, 8vw, 7rem);
    --container-px: clamp(1.25rem, 4vw, 2rem);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(60, 34, 19, 0.06);
    --shadow-md: 0 8px 30px rgba(60, 34, 19, 0.08);
    --shadow-lg: 0 16px 50px rgba(60, 34, 19, 0.12);
    --shadow-glow: 0 8px 40px rgba(194, 100, 43, 0.2);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

/* ========== UTILITY ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* ========== ANIMATIONS ========== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

.animate-on-scroll:nth-child(5) {
    transition-delay: 0.4s;
}

.animate-on-scroll:nth-child(6) {
    transition-delay: 0.5s;
}

@keyframes float {

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

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 var(--primary-glow);
    }

    50% {
        box-shadow: 0 0 0 16px rgba(194, 100, 43, 0);
    }
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    background: rgba(255, 251, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    box-shadow: 0 4px 30px rgba(60, 34, 19, 0.08);
    border-bottom: 1px solid var(--border);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text);
    z-index: 1001;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(194, 100, 43, 0.06);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 60%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.55rem 1.2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s var(--ease);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text);
    border-radius: 4px;
    transition: all 0.4s var(--ease);
    transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--bg) 0%, var(--bg-warm) 50%, var(--bg-section) 100%);
    padding: calc(5rem + var(--section-py)) 0 var(--section-py);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(194, 100, 43, 0.08) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite 2s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    background: radial-gradient(circle, rgba(194, 100, 43, 0.05) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite 1s;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(194, 100, 43, 0.08);
    border: 1px solid rgba(194, 100, 43, 0.15);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    color: var(--text);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(194, 100, 43, 0.2);
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: all 0.35s var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(194, 100, 43, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(194, 100, 43, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(194, 100, 43, 0.04);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Hero Photo Grid */
.hero-photos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 480px;
}

.hero-photo {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.hero-photo:nth-child(1) {
    transform: rotate(-2deg);
}

.hero-photo:nth-child(2) {
    transform: rotate(1.5deg) translateY(10px);
}

.hero-photo:nth-child(3) {
    transform: rotate(1deg) translateY(-5px);
}

.hero-photo:nth-child(4) {
    transform: rotate(-1.5deg) translateY(5px);
}

.hero-photo:hover {
    transform: rotate(0deg) translateY(-4px) scale(1.04) !important;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.hero-photo img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-bounce 2s infinite;
    color: var(--text-muted);
    z-index: 2;
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(194, 100, 43, 0.08);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--text);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-divider {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 4px;
    margin: 0 auto;
}

.section-desc {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

/* ========== ABOUT ========== */
.about {
    padding: var(--section-py) 0;
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.about-card p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.98rem;
}

.about-card p:last-of-type {
    margin-bottom: 1.5rem;
}

.about-card strong {
    color: var(--text);
}

.about-quote {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-section) 100%);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
    border-left: 4px solid var(--primary);
    position: relative;
}

.about-quote svg {
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.about-quote p {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    font-style: italic;
    margin-bottom: 0;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.35s var(--ease);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(194, 100, 43, 0.2);
}

.stat-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(194, 100, 43, 0.08);
    color: var(--primary);
    flex-shrink: 0;
}

.stat-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
    color: var(--text);
}

.stat-card p {
    font-size: 0.88rem;
    color: var(--text-light);
}

/* ========== SERVICES ========== */
.services {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(194, 100, 43, 0.2);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(194, 100, 43, 0.08) 0%, rgba(212, 165, 116, 0.12) 100%);
    color: var(--primary);
    transition: all 0.4s var(--ease);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--text);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: rgba(194, 100, 43, 0.1);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ========== AVAILABILITY ========== */
.availability {
    padding: clamp(2rem, 5vw, 4rem) 0;
    background: var(--bg);
}

.availability-banner {
    background: linear-gradient(135deg, #FFF5EB 0%, #FFECD2 100%);
    border: 2px solid rgba(194, 100, 43, 0.2);
    border-radius: var(--radius-xl);
    padding: 2.5rem 3rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.availability-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(194, 100, 43, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.availability-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    flex-shrink: 0;
}

.availability-content h3 {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.availability-content > p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    max-width: 600px;
}

.availability-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.avail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.avail-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.avail-item strong {
    color: var(--text);
}

@media (max-width: 768px) {
    .availability-banner {
        flex-direction: column;
        padding: 1.75rem;
        gap: 1.25rem;
    }

    .availability-icon {
        width: 56px;
        height: 56px;
    }

    .availability-details {
        flex-direction: column;
        gap: 0.6rem;
    }
}

/* ========== PORTFOLIO ========== */
.portfolio {
    padding: var(--section-py) 0;
    background: var(--bg);
}

/* Before/After Section */
.before-after-section {
    margin-bottom: 3rem;
}

.subsection-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    text-align: center;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.before-after-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease);
}

.before-after-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.ba-label {
    display: block;
    padding: 0.75rem 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.ba-img {
    position: relative;
    overflow: hidden;
}

.ba-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s var(--ease);
}

.before-after-item:hover .ba-img img {
    transform: scale(1.03);
}

.ba-tag {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.2rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 100px;
    z-index: 2;
}

.ba-before {
    background: rgba(220, 53, 69, 0.85);
    color: var(--white);
}

.ba-after {
    background: rgba(40, 167, 69, 0.85);
    color: var(--white);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.portfolio-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.portfolio-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.portfolio-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(44, 24, 16, 0.7) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1rem;
    transition: opacity 0.4s var(--ease);
}

.portfolio-overlay span {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(10px);
    transition: transform 0.4s var(--ease);
}

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

.portfolio-item:hover .portfolio-overlay span {
    transform: translateY(0);
}

/* ========== CONTACT ========== */
.contact {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-section) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

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

.contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.35s var(--ease);
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.contact-card-phone {
    border-left: 4px solid var(--primary);
}

.contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(194, 100, 43, 0.08);
    color: var(--primary);
    flex-shrink: 0;
}

.contact-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 700;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-phone {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.contact-phone:hover {
    color: var(--primary-dark);
}

.contact-email {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    display: block;
    word-break: break-all;
}

.contact-email:hover {
    color: var(--primary-dark);
}

.contact-note {
    font-size: 0.82rem !important;
    color: var(--text-muted) !important;
    margin-top: 0.15rem;
}

/* Social links in contact */
.contact-socials {
    margin-top: 0.5rem;
}

.contact-socials h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s var(--ease);
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-facebook:hover {
    background: #1877F2;
    color: var(--white);
    border-color: #1877F2;
}

.social-instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    border-color: #dc2743;
}

.social-seznam:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* CTA Card */
.cta-card {
    background: linear-gradient(150deg, var(--bg-dark) 0%, #1A0D07 100%);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(194, 100, 43, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.cta-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
}

.cta-region {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-region svg {
    color: var(--primary-light);
    flex-shrink: 0;
}

.cta-region strong {
    color: var(--white);
}

.cta-card .btn-primary {
    animation: pulse-glow 3s infinite;
    position: relative;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-dark);
    padding: 2rem 0;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s var(--ease);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-copy {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-photos-grid {
        max-width: 360px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        min-width: 200px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 251, 247, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
        padding: 2rem;
        transition: right 0.45s var(--ease);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.8rem 1.25rem;
        width: 100%;
        text-align: left;
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .hero {
        min-height: auto;
        padding: calc(5rem + 2rem) 0 3rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .hero-trust {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .hero-photos-grid {
        max-width: 320px;
        gap: 0.75rem;
    }

    .hero-photo:nth-child(1),
    .hero-photo:nth-child(2),
    .hero-photo:nth-child(3),
    .hero-photo:nth-child(4) {
        transform: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .about-card {
        padding: 1.75rem;
    }

    .about-card p {
        font-size: 0.92rem;
    }

    .about-stats {
        flex-direction: column;
    }

    .stat-card {
        min-width: auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 1.5rem;
    }

    .service-icon {
        margin: 0;
        width: 56px;
        height: 56px;
        min-width: 56px;
    }

    .service-badge {
        top: 0.75rem;
        right: 0.75rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .portfolio-item img {
        height: 160px;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ba-img img {
        height: 150px;
    }

    .subsection-title {
        font-size: 1.1rem;
    }

    /* Contact mobile */
    .contact-card {
        padding: 1.25rem;
        gap: 1rem;
    }

    .contact-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .contact-icon svg {
        width: 24px;
        height: 24px;
    }

    .contact-email {
        font-size: 0.88rem;
    }

    .contact-socials {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .social-link {
        padding: 0.55rem 1rem;
        font-size: 0.85rem;
    }

    .cta-card {
        padding: 1.75rem;
    }

    .cta-card h3 {
        font-size: 1.25rem;
    }

    /* Footer mobile */
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
        font-size: 0.88rem;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Small phones */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 0.4rem 0.8rem;
    }

    .about-card {
        padding: 1.25rem;
    }

    .about-card p {
        font-size: 0.88rem;
    }

    .cta-card {
        padding: 1.5rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item img {
        height: 200px;
    }

    .ba-img img {
        height: 120px;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .contact-phone {
        font-size: 1rem;
    }

    .contact-email {
        font-size: 0.82rem;
    }
}

/* Overlay for mobile menu */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 24, 16, 0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.nav-overlay.visible {
    opacity: 1;
    pointer-events: all;
}