/*
Theme Name: Hello Child
Theme URI: https://trigy.cz
Description: Child theme for Hello Elementor
Author: Trigy
Template: hello-elementor
Version: 2.2.0
*/

/* VERSION 2 - Premium Water Solutions Design */

/* Google Fonts jsou načítány optimalizovaně přes functions.php (preconnect + combined request) */

/* Reset parent theme styles - DŮLEŽITÉ! */
.elementor *,
.elementor-widget *,
.hello-elementor * {
    all: revert;
}

/* Global Font Setup */
*,
h1 span,
.nav-menu .sub-menu li a,
p,
h4,
h5,
a,
button,
span,
strong,
li {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fix Chrome deprecation warning - explicitní h1 font-size */
h1 {
    font-size: var(--size-heading-hero);
    /* 57px → 44px → 34px (responzivní) */
    line-height: 1.2;
    font-weight: 700;
}

/* Specificky pro h1 v section (fix Chrome H1UserAgentFontSizeInSection warning) */
section h1 {
    font-size: var(--size-heading-big);
    /* 44px → 32px → 26px (responzivní) */
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
}

.gradient-orb.orb-2 {
    display: none !important;
}

:root {
    /* Premium color palette */
    --primary-navy: #8740bf;
    --primary-blue: #8740bf;
    --main-purple: #8740bf;
    --lighter-main-purple: #995bc5;
    --light-blue: #f1f5f9;
    --accent-teal: #F3E76A;
    --accent-darker-teal: #d6cc57;
    --success-emerald: #F3E76A;
    --warning-amber: #F3E76A;
    --neutral-slate: #596677;
    --dark-navy: #1e293b;

    /* Premium gradients */
    --gradient-primary: linear-gradient(135deg, #8740bf 0%, #8740bf 50%, #8740bf 100%);
    --gradient-cta: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
    --gradient-accent: linear-gradient(135deg, #F3E76A 0%, #F3E76A 100%);
    --gradient-glow: linear-gradient(135deg, rgba(121, 72, 156, 0.3) 0%, rgba(121, 72, 156, 0.3) 50%, rgba(121, 72, 156, 0.3) 100%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', monospace;

    --size-heading-hero: 57px;
    --size-heading-big: 44px;
    --size-heading-medium: 32px;
    --size-subtitle: 20px;
    --size-heading-small: 24px;
    --size-body: 16px;
    --size-small: 14px;

    /* Spacing scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Shadows & effects */
    --shadow-sm: 0 1px 2px 0 rgba(121, 72, 156, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(121, 72, 156, 0.1), 0 2px 4px -1px rgba(121, 72, 156, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(121, 72, 156, 0.1), 0 4px 6px -2px rgba(121, 72, 156, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(121, 72, 156, 0.1), 0 10px 10px -5px rgba(121, 72, 156, 0.04);
    --shadow-glow: 0 0 30px rgba(121, 72, 156, 0.3);
}

/* Top Contact Bar */
.top-contact-bar {
    background: var(--accent-teal);
    padding: 0;
    height: 40px;
    font-size: 0.875rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.top-contact-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

.brand-logo {
    display: block;
    margin: 8px;
}

.nav-contact-info {
    display: flex;
    justify-content: start;
    gap: var(--space-8);
    height: 40px;
    align-items: center;
    margin: auto;
}

.nav-contact-item {
    display: flex;
    gap: var(--space-1);
    color: var(--dark-navy);
    font-weight: 500;
    max-height: 40px;
    align-items: center;
}


.contact-icon {
    font-size: 1rem;
    max-height: 30px;
}

@media (max-width: 1024px) {
    :root {
        --size-heading-hero: 54px;
        --size-heading-big: 44px;
        --size-heading-medium: 30px;
        --size-subtitle: 18px;
        --size-heading-small: 22px;
        --size-body: 15px;
        --size-small: 13px;
    }
}

@media (max-width: 768px) {
    :root {
        --size-heading-hero: 44px;
        --size-heading-big: 32px;
        --size-heading-medium: 24px;
        --size-subtitle: 18px;
        --size-heading-small: 20px;
        --size-body: 15px;
        --size-small: 13px;
    }
}

/* Responsive typography for small         
      mobile devices */
@media (max-width: 480px) {
    :root {
        --size-heading-hero: 34px;
        --size-heading-big: 26px;
        --size-heading-medium: 22px;
        --size-subtitle: 16px;
        --size-heading-small: 18px;
        --size-body: 14px;
        --size-small: 12px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-size: var(--size-body);
    line-height: 1.6;
    color: var(--dark-navy);
    background: #ffffff;
    overflow-x: hidden;
    /* navbar + contact bar height */
}

/* Focus states for accessibility */
*:focus {
    outline: none;
}

button:focus,
a:focus {
    outline: none;
}

/* Premium Navbar */
.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    background: rgb(255, 255, 255);
    border-bottom: 1px solid rgba(121, 72, 156, 0.08);
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.navbar.scrolled {
    top: 0;
}


.navbar-brand .brand-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.logo-water-drop {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: var(--shadow-glow);
    position: relative;
}

.logo-water-drop::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50% 50% 50% 0;
}


.navbar-menu {
    display: flex;
    list-style: none;
    align-items: flex-start;
    gap: var(--space-8);
}

.nav-link {
    text-decoration: none;
    color: var(--neutral-slate);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: var(--space-2) 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-navy);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}


.premium-cta {
    position: relative;
    background: var(--gradient-cta);
    color: white;
    padding: var(--space-3) var(--space-6);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--size-body);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.premium-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.cta-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-glow);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.premium-cta:hover .cta-glow {
    opacity: 1;
}

/* Hero Section */
.hero-section {
    background: #ffffff;
    min-height: 900px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem 4rem 2rem;
}

/* Advanced Background Effects */
.background-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-accent);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #F3E76A, #FFFBE0);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }

    75% {
        transform: translate(20px, 10px) rotate(270deg);
    }
}

.water-flow {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    height: 200px;
    opacity: 0.6;
}

.flow-line {
    width: 90%;
    height: 100%;
}

/* Floating particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s infinite linear;
}

.particle-1 {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.particle-2 {
    left: 25%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle-3 {
    left: 45%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.particle-4 {
    left: 70%;
    animation-delay: 6s;
    animation-duration: 20s;
}

.particle-5 {
    left: 85%;
    animation-delay: 8s;
    animation-duration: 16s;
}

.particle-6 {
    left: 60%;
    animation-delay: 10s;
    animation-duration: 14s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Hero Content */
.hero-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    padding: 0;
    box-sizing: border-box;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2.5rem;
}

.hero-main-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

/* Premium Badge */
.premium-badge {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-6);
}

.badge-glow {
    position: absolute;
    inset: -4px;
    background: var(--gradient-glow);
    border-radius: 50px;
    filter: blur(8px);
    opacity: 0.7;
}

.badge-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 600;
    font-size: var(--size-body);
    padding: var(--space-3);
    color: var(--primary-navy);
}

.badge-content-firmy {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 600;
    font-size: var(--size-body);
    padding: var(--space-3);

    color: var(--primary-navy);
}

.hero-title {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-navy);
    margin: 0;
}
.home-title-line-after {
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.6;
}
.hero-gradient-text {
    background: linear-gradient(135deg, var(--main-purple) 0%, var(--lighter-main-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}
.home-title-line {
    font-size: var(--size-heading-hero) ;
    font-weight: 700;
    color: var(--dark-navy);
    letter-spacing: -1px;
    margin-bottom: 0.09em;
    line-height:  115%;
    font-family: "Work Sans", Arial, Helvetica, sans-serif;

}
.title-line {
    display: block;

}

.title-line:first-child {
    font-size: var(--size-heading-medium);
    font-weight: 700;
    color: var(--dark-navy);
    letter-spacing: 0.05em;
    margin-bottom: 0.09em;
}

.title-line:last-child {
    font-size: var(--size-heading-small);
    font-weight: 600;
    color: var(--neutral-slate);
    margin-top: 0.6em;
}


.gradient-text {
    background: linear-gradient(135deg, var(--main-purple) 0%, var(--lighter-main-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    font-size: var(--size-heading-hero);
    font-weight: 800;
    max-width: fit-content !important;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.6;
}

.hero-subtitle {
    font-size: var(--size-subtitle);
    line-height: 1.6;
    color: var(--neutral-slate);
    margin-bottom: var(--space-8);
    max-width: 600px;
    font-weight: 400;
}

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

.contact-icon {
    display: flex;
    align-items: center;
    margin: 3px;
}

.highlight-accent {
    color: var(--accent-darker-teal);
    font-weight: 600;
}

/* Features Grid */
.features-grid {
    display: grid;
    gap: var(--space-2);
    margin-bottom: var(--space-8);
}

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

    .projects-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        flex-direction: row;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        gap: 40px;
        margin-bottom: 60px;
        padding: 40px 40px;
       
    }

    /* Každá karta má stejnou šířku a chová se jako "slide" – podobně jako na mobilu */
    .projects-grid > * {
        flex: 0 0 400px;
        scroll-snap-align: center;
        /* malé odsazení mezi kartou a okrajem kontejneru */
        margin-bottom: 10px;
    }

    .contact-methods {
        display: flex;
        flex-direction: column;
    }

    .contact-content-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }

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

.feature-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    /* background: rgba(250, 250, 250, 0.8);
    border: 1px solid rgba(121, 72, 156, 0.13); */
    border-radius: 16px;
    transition: all 0.3s ease;
    /* box-shadow: var(--shadow-sm); */
}

/* .feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
} */

.feature-icon {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    z-index: 1;
    transition: transform 0.3s ease;
}

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

.icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #b6af51 0%, var(--lighter-main-purple) 100%);
    border-radius: 12px;
    opacity: 0.1;
}

.feature-title {
    font-weight: 600;
    color: var(--dark-navy);
    font-size: var(--size-body);
}

.feature-desc {
    font-size: var(--size-small);
    color: var(--neutral-slate);
}

/* CTA Section */
.cta-section {
    margin-bottom: var(--space-8);
}

.cta-buttons {
    min-width: 550px;
    max-height: 53px;
    display: flex;
    align-items: center;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

/* Reviews Badges - positioned in hero visual column */
.reviews-badges {
    display: flex;
    flex-direction: row;
    gap: var(--space-3);
    margin-top: var(--space-16);
    justify-content: center;

    align-items: center;
}

.review-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: auto;
    padding: var(--space-3) var(--space-4);
    border-radius: 12px;
    text-decoration: none;
    width: 100%;
    max-width: 300px;
}



.badge-icon {

    color: #f59e0b;
    font-weight: bold;
}

.badge-rating {
    font-weight: 900;
    color: var(--dark-navy);
    font-size: var(--size-body);
}

.badge-platform {
    color: var(--neutral-slate);
    font-weight: 500;
}

.badge-platform-firmy {
    margin: auto;
}

.primary-cta {
    position: relative;
    background: var(--gradient-cta);
    color: white;
    border: none;
    padding: var(--space-4) var(--space-8);
    border-radius: 16px;
    font-weight: 700;
    font-size: var(--size-body);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    outline: none;
    text-decoration: none;
}

.single-hero {
    padding-top: 60px;
}

.primary-cta:focus {
    outline: none;
    box-shadow: var(--shadow-lg), 0 0 0 3px rgba(121, 72, 156, 0.3);
}

.primary-cta:active {
    transform: translateY(-1px);
    transition: all 0.1s ease;
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.primary-cta:hover .button-shine {
    left: 100%;
}

.secondary-cta {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: var(--space-4) var(--space-6);
    border-radius: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    transition: all 0.3s ease;

}

.secondary-cta:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* Trust Section */
.trust-section {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-4) 0;
    border-top: 1px solid rgba(121, 72, 156, 0.1);
}

.trust-numbers {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.trust-number {
    font-weight: 800;
    font-size: var(--size-heading-small);
    color: var(--primary-blue);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease-out;
    display: inline-block;
    min-width: max-content;
    text-align: left;
    font-variant-numeric: tabular-nums;
}

.trust-number.animate {
    opacity: 1;
    transform: translateY(0);
}

.trust-label {
    font-size: 18px;
    color: var(--neutral-slate);
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(121, 72, 156, 0.2);
}



.review-stars {
    color: #f59e0b;
    font-size: var(--size-body);
    margin-bottom: var(--space-2);
}

.review-text,
.review p {
    font-style: italic;
    margin-bottom: var(--space-4);
    color: var(--neutral-slate);
}

.review-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

/* .author-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
} */
.review .top .social-icon img {
    border-radius: 10px;
    filter: brightness(1) invert(0);
    width: inherit;
}

.review .top .social-icon {
    width: 86px;
}

/* .author-name {
    font-weight: 600;
    color: var(--dark-navy);
}

.author-location {
    font-size: var(--size-small);
    color: var(--neutral-slate);
} */

.image-3d-container {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 25px 50px -12px rgba(121, 72, 156, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: 12px;
}

.main-hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    max-height: 600px;
}

.image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 25px 50px -12px rgba(121, 72, 156, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: 12px;
}

.main-hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.image-overlay {
    position: absolute;
    inset: 12px;
    background: var(--gradient-glow);
    border-radius: 16px;
    opacity: 0.1;
    pointer-events: none;
}

.floating-ui {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(121, 72, 156, 0.1);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    animation: floatUI 6s ease-in-out infinite;
}

.navbar {
    position: fixed;
    top: 40px;
    width: 100%;
    border-bottom: 1px solid #ffffff00;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

}

.stars-container {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: 0;
}

.navbar-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    padding: 0;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
}

.breadcrumbs {
    margin-bottom: var(--space-6);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-2);
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: var(--size-small);
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--neutral-slate);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 400;
}

.breadcrumb-item a:hover {
    color: var(--main-purple);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--main-purple);
    font-weight: 600;
}

.breadcrumb-separator {
    color: var(--neutral-slate);
    opacity: 0.5;
    user-select: none;
    font-size: 0.875rem;
}

.ui-1 {
    top: -5%;
    left: -14%;
    z-index: 1;
    width: 220px;
    padding: var(--space-3);
    animation-delay: 0s;
    display: flex;
    gap: var(--space-2);
}

.ui-1 .notification-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-self: center;
    justify-self: center;
}

.ui-2 {
    top: 60%;
    right: -15%;
    padding: var(--space-4);
    animation-delay: 2s;
}

.ui-3 {
    bottom: -5%;
    left: -4%;
    padding: var(--space-3);
    animation-delay: 4s;
    gap: var(--space-2);
}

@keyframes floatUI {

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

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

.ui-header {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-2);
}

.ui-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.ui-dot.green {
    background: var(--success-emerald);
}

.ui-dot.yellow {
    background: var(--warning-amber);
}

.ui-dot.red {
    background: #ef4444;
}

.ui-bar {
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin-bottom: var(--space-1);
    opacity: 0.7;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.metric-icon {
    font-size: 1.5rem;
}

.metric-number {

    font-weight: 800;
    color: var(--primary-blue);
    font-size: var(--size-body);
}

.metric-label {
    font-size: var(--size-small);
    color: var(--neutral-slate);
}

.notification-card {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    min-width: 200px;
}

.notification-icon {
    color: var(--success-emerald);
}

.notification-title {
    font-weight: 600;
    font-size: var(--size-body);
    color: var(--dark-navy);
}

.notification-time {
    font-size: var(--size-small);
    color: var(--neutral-slate);
}


.services-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

.services-intro {
    text-align: center;
    margin-bottom: var(--space-10);
}

.services-title {
    font-size: var(--size-heading);
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: var(--space-16);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--space-8);
    max-width: 1320px;
    margin: 0 auto;
}

.service-card {
    background: rgba(248, 250, 252, 0.8);
    padding: 2rem;
    text-align: left;
    transition: all 0.2s ease;
    border: 1px solid rgba(121, 72, 156, 0.1);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(121, 72, 156, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    color: var(--dark-navy);
}

.service-card:hover {
    transform: translateY(-8px);
    background: white;
    border-color: rgba(121, 72, 156, 0.2);
    box-shadow: 0 12px 40px rgba(121, 72, 156, 0.15);
}

.service-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto var(--space-8);
    display: flex;

    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    border-radius: 50%;
    position: relative;
}

.service-icon img {
    width: 120px;
    height: 120px;
    transition: transform 0.2s ease;
    filter: brightness(0) saturate(10000%) invert(40%) sepia(0%) saturate(100043%) hue-rotate(10deg) brightness(7000%) contrast(800%);
}

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

.service-title {
    text-align: left;
    padding-bottom: var(--space-3);
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: none;
}


.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: auto;
}

.service-features li {
    padding: var(--space-2) 0;
    padding-left: var(--space-6);
    position: relative;
    color: var(--dark-navy);
    font-weight: 500;
    line-height: 1.5;
    font-size: var(--size-small);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1em;
}

.service-features li::before {
    color: var(--primary-navy);
    font-size: 1.1em;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--accent-teal);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.particle-3 {
    width: 10px;
    height: 10px;
    bottom: 30%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}


.faq-section {
    background: #fff;
    padding: var(--space-24) 0;
    position: relative;
}

.faq-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

.faq-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.faq-subtitle {
    font-size: var(--size-subtitle);
    color: var(--neutral-slate);
    margin-top: var(--space-4);

}

.section-subtitle {
    font-size: var(--size-subtitle);
    color: var(--neutral-slate);
    margin-top: var(--space-4);
    margin: var(--space-8) auto var(--space-12) auto;
}

.faq-content {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
    flex-wrap: wrap;
}

.faq-category-btn {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(121, 72, 156, 0.1);
    border-radius: 16px;
    padding: var(--space-3) var(--space-6);
    font-weight: 600;
    color: var(--neutral-slate);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-category-btn:hover {
    border-color: var(--primary-navy);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.faq-category-btn.active {
    background: var(--primary-navy);
    color: white;
    border-color: var(--primary-navy);
}

.faq-questions {
    position: relative;
}

.faq-category-group {
    display: none;
}

.faq-category-group.active {
    display: block;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(121, 72, 156, 0.1);
    border-radius: 16px;
    margin-bottom: var(--space-4);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(121, 72, 156, 0.2);
    box-shadow: 0 8px 32px rgba(121, 72, 156, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6) var(--space-8);
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(121, 72, 156, 0.05);
}

.faq-question h3 {
    font-size: var(--size-body);
    font-weight: 600;
    color: var(--dark-navy);
    margin: 0;
    line-height: 1.4;
}

.faq-toggle {
    font-size: var(--size-small);
    color: var(--primary-navy);
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: var(--space-4);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 var(--space-8);
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 0 0 12px 12px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: var(--space-4) var(--space-8) var(--space-6);
}

.faq-item.active .faq-question {
    background: rgba(121, 72, 156, 0.05);
}

.faq-answer p {
    color: var(--neutral-slate);
    line-height: 1.6;
    margin: 0;
    font-size: var(--size-body);
}

.faq-cta {
    text-align: center;
    margin-top: var(--space-20);
    padding: var(--space-12) var(--space-8);
    background: rgba(121, 72, 156, 0.05);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.faq-cta-content h3 {
    font-size: var(--size-body);
    color: var(--dark-navy);
    margin-bottom: var(--space-3);
    font-weight: 700;
}

.faq-cta-content p {
    color: var(--neutral-slate);
    margin-bottom: var(--space-6);
    font-size: 1.1rem;
}


.projects-section {
    background: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}


.about-section {
    z-index: 1;
    overflow: hidden;
}

.section-title {
    max-width: 1320px;
    margin: 0 10px;
    font-size: var(--size-heading-big);
}


.about-section .section-title {
    font-size: var(--size-heading-big);
    font-weight: 600;
    color: #101828;
    margin-bottom: 0;
    text-align: start;

    position: relative;

}

.about-content {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;

}

.about-main-col {
    flex: 1 1 0;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    height: 100%;
}

.about-content-top {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.highlight-text {
    background: var(--accent-teal);
    color: var(--dark-navy);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}


.contact-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr 380px;
    gap: 40px;
    margin-top: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 8px;
}

.hours-item span:first-child {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.hours-item span:last-child {
    font-weight: 700;
    color: var(--accent-teal);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: var(--accent-teal);
    padding: 48px 40px;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.contact-form-header h3 {
    z-index: 5;
    font-size: var(--size-body);
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 12px;

    letter-spacing: -0.02em;
}

.contact-form-header p {
    color: var(--dark-navy);
    font-size: var(--size-body);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
    opacity: 0.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dropdown-header {
    font-size: var(--size-body);
}

.form-group label {
    font-size: var(--size-body);
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 4px;
}

.form-control {
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    font-size: var(--size-body);

    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    color: var(--dark-navy);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 4px rgba(121, 72, 156, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
    background: white;
    transform: translateY(-1px);
}

.form-control:hover:not(:focus) {
    border-color: rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.form-control::placeholder {
    color: #94a3b8;
}

select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.checkbox-group {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: var(--size-body);
    line-height: 1.5;
}

.checkbox-input {
    display: none;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background: white;
    position: relative;
    transition: all 0.2s;
    margin-top: 2px;
}

.checkbox-input:checked+.checkbox-custom {
    background: var(--primary-navy);
    border-color: var(--primary-navy);
}

.checkbox-input:checked+.checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text a {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.contact-submit-btn {
    position: relative;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 16px;
    font-size: var(--size-body);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    margin-top: 24px;
    width: 100%;

    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(121, 72, 156, 0.4);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.contact-submit-btn:hover .button-shine {
    left: 100%;
}

.error-message {
    color: #dc2626;
    font-size: var(--size-body);
    margin-top: 4px;
    display: block;
}

.form-messages {
    margin-top: 24px;
}

.success-message,
.error-message-global {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.success-message {
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.error-message-global {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.message-icon {
    font-size: 1.25rem;
    margin-top: 2px;
}

.message-text {
    flex: 1;
    font-size: var(--size-body);
}


.reviews-circles-section {
    width: 100%;
    padding: 0 0 var(--space-6) 0;
}

.reviews-intro {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    margin-bottom: var(--space-6);
    text-align: center;
}

.reviews-label {
    font-size: 0.9rem;
    color: var(--neutral-slate);
    font-weight: 500;
}

.reviews-count {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.reviews-circles {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    gap: var(--space-1);
    padding: 0 var(--space-2);
}

.review-circle.size-xxs .circle-avatar {
    width: 35px;
    height: 35px;
}

.review-circle.size-xs .circle-avatar {
    width: 40px;
    height: 40px;
}

.review-circle.size-s .circle-avatar {
    width: 45px;
    height: 45px;
}

.review-circle.size-sm .circle-avatar {
    width: 50px;
    height: 50px;
}

.review-circle.size-md .circle-avatar {
    width: 60px;
    height: 60px;
}

.review-circle.size-lg .circle-avatar {
    width: 70px;
    height: 70px;
}

.review-circle.size-xl .circle-avatar {
    width: 80px;
    height: 80px;
    border-width: 4px;
}

.review-circle {
    position: relative;
    cursor: pointer;
}

.circle-avatar {
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    background: var(--gradient-primary);
}

.circle-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.review-circle:hover .circle-avatar {
    transform: scale(1.1);
    border-color: #F3E76A;
    box-shadow: 0 0 20px rgba(243, 231, 106, 0.4), var(--shadow-lg);
}

.review-circle:hover .circle-avatar img {
    transform: scale(1.05);
}

.review-popup {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, white 0%, #fafbff 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(121, 72, 156, 0.1);
    border-radius: 16px;
    padding: var(--space-4);
    box-shadow: var(--shadow-xl);
    width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.review-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.95);
}

.review-circle:hover .review-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.popup-content {
    text-align: center;
}

.review-popup .review-stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: var(--space-2);
}

.review-popup .review-text {
    font-size: var(--size-body);
    line-height: 1.5;
    color: var(--dark-navy);
    margin-bottom: var(--space-3);
    font-style: italic;
}

.review-popup .review-author {
    font-size: var(--size-body);
    color: var(--neutral-slate);
    font-weight: 600;
}


.services-overview-section {
    background: #fff;
    padding: var(--space-20) 0;
    position: relative;
}

.services-overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 40% at 50% 0%, #ffffff 0%, transparent 70%);
    pointer-events: none;
}

.services-overview-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    margin-bottom: var(--space-20);
}

.section-title {
    font-size: var(--size-heading-big);
    font-weight: 800;
    background: linear-gradient(85deg, var(--lighter-main-purple) 10%, var(--main-purple) 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 0;
    text-align: center;
    position: relative;
    display: inline-block;
    padding: 0 var(--space-4);
}

.services-clients-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    margin: var(--space-10) 0 var(--space-8) 0;
}

.clients-text {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    justify-content: center;
}

.client-text-item {
    font-size: var(--size-small);
    font-weight: 600;

    transition: color 0.3s ease;
}

.client-separator {
    color: var(--neutral-slate);
    font-size: 1.2rem;
    opacity: 0.6;
}

.clients-icons {
    display: flex;
    gap: var(--space-3);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.client-icon-rect {
    width: fit-content;
    height: 40px;
    background: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0.5rem;
    justify-content: center;
    gap: var(--space-2);
    box-shadow: 0 4px 16px rgba(121, 72, 156, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(121, 72, 156, 0.1);
    border-radius: 5px;
    color: var(--primary-blue);
}

.client-icon-rect:hover {
    background: var(--primary-navy);
    box-shadow: 0 6px 20px rgba(121, 72, 156, 0.15);
    border-color: var(--primary-navy);
    color: var(--accent-teal);
    border-bottom: var(--accent-teal) 2px solid;
}

.client-icon-rect img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
    transition: filter 0.3s ease;
}

.client-icon-rect:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.services-tagline {
    font-size: var(--size-subtitle);
    color: var(--neutral-slate);
    text-align: center;
    margin: 0;
    font-weight: 500;
    font-style: italic;
}

/* Services list */
.services-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-24);
    margin-bottom: var(--space-20);
}

.service-item {
    display: grid;

    gap: var(--space-16);
    align-items: center;
    position: relative;
}

@media (max-width: 1320px) {
    .navbar-container {
        padding: 0 20px;
    }
    .services-overview-container{
        padding: 0 20px;
    }
}

@media (min-width: 1024px) {
    .service-item {
        grid-template-columns: 1fr 1fr;

    }

    .additional-services {

        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

/* Add divider line after each service except the last one */
.service-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: calc(-1 * var(--space-12));
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cdd2da, transparent);
    opacity: 0.6;
}

.service-item-reverse {
    direction: rtl;
}

.service-item-reverse .service-image,
.service-item-reverse .service-content {
    direction: ltr;
}

/* Service image */
.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(121, 72, 156, 0.12);
    transition: all 0.3s ease;
}

/* Service number - positioned as watermark */
.service-number {
    position: absolute;

    font-size: 25.5rem;
    font-weight: 900;
    color: var(--primary-navy);
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
    line-height: 1;
    user-select: none;
}

/* Main services positioning */
.service-item .service-number {
    position: absolute;
    left: 70%;
    top: 20%;
    transition: all 0.3s ease;
}

.headline-wraper {
    display: flex;
    gap: 12px;

}

.service-item-reverse .service-number {
    left: 20%;
    top: 20%;
    transition: all 0.3s ease;
}

/* Additional service cards positioning */
.additional-service-card .service-number {
    left: var(--space-5);
    top: var(--space-5);
    opacity: 0.5;
    font-size: 2.5rem;
    color: var(--primary-blue);
    z-index: 2;

}



/* Service review icon */
.service-review-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--accent-teal);
    border-radius: 50%;
    z-index: 3;
    opacity: 0.95;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(243, 231, 106, 0.3);
    border: 3px solid white;
}

.service-review-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-navy);
    transition: transform 0.3s ease;
}

.service-review-icon:hover {
    background: var(--accent-darker-teal);
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(243, 231, 106, 0.5);
}

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

/* Service review popup - covering portion of image */
.service-review-popup {
    position: absolute;
    top: 12.5%;
    left: 12.5%;
    width: 75%;
    height: 75%;
    background: rgba(30, 41, 59, 0.92);
    backdrop-filter: blur(8px);
    padding: var(--space-8);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 4;
}

/* Arrow pointing diagonally to user icon */
.service-review-popup::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
    background: rgba(30, 41, 59, 0.92);
    transform: rotate(45deg);
    border-top-right-radius: 2px;
    filter: drop-shadow(-1px -1px 2px rgba(0, 0, 0, 0.2));
}

.service-review-popup.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.service-review-popup .review-stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: var(--space-4);
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-review-popup .review-text {
    color: white;
    font-size: var(--size-body);
    line-height: 1.6;
    margin-bottom: var(--space-4);
    font-style: italic;
    font-weight: 500;
    max-width: 90%;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.service-review-popup .review-author {
    color: var(--accent-teal);
    font-size: var(--size-body);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-image:hover {
    /* transform: translateY(-8px); */
    box-shadow: 0 20px 60px rgba(121, 72, 156, 0.18);
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image:hover img {
    /* transform: scale(1.05); */
    filter: blur(2.5px);
}

/* Service content */
.service-content {
    padding: var(--space-8);
}

.service-title {
    font-size: var(--size-heading-medium);

    color: #363636;
    margin-bottom: var(--space-6);
    position: relative;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-darker-teal) 100%);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(243, 231, 106, 0.4);
}

.service-description {
    color: var(--dark-navy);
    margin-bottom: var(--space-8);
    line-height: 1.7;
    font-size: var(--size-body);
    text-align: left;
}

.service-description strong {
    background: var(--accent-teal);
    color: var(--dark-navy);
    font-weight: 500;
    padding: 2px 4px;
    border-radius: 3px;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-8) 0;
    display: grid;
    gap: var(--space-3);
}

.service-benefits li {
    color: var(--dark-navy);

    line-height: 1.7;
    font-size: var(--size-body);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    transition: all 0.2s ease;
    position: relative;
}

.service-benefits li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: none;
    color: var(--dark-navy);
    border: var(--primary-navy) 2px solid;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 900;
    flex-shrink: 0;
}





/* Service CTA Buttons Container */
.service-cta-buttons {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-4);
    align-items: center;
}

/* Service CTA Button - Matching Hero Section Style */
.service-cta-btn {
    position: relative;
    background: var(--gradient-cta);
    color: white;
    border: none;
    padding: var(--space-4) var(--space-8);
    border-radius: 16px;
    font-weight: 700;
    font-size: var(--size-body);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    flex-shrink: 0;
}

/* Secondary CTA Button */
.service-cta-btn-secondary {
    position: relative;
    background: rgba(255, 255, 255, 0.897);
    color: var(--primary-purple);
    text-decoration: none;
    padding: calc(var(--space-4) - 1px) var(--space-8);
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--size-body);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    overflow: hidden;
    max-height: 53px;
    z-index: 5;
    border: 2px solid rgba(121, 72, 156, 0.2);
    box-shadow: 0 4px 6px -1px rgba(121, 72, 156, 0.1);
}

.service-cta-btn-secondary .phone-icon {
    width: 20px;
    height: 20px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-cta-btn-secondary:hover .phone-icon {
    opacity: 0;
    transform: translateY(-5px);
}

/* Text switching on hover with smooth transition */
.service-cta-btn-secondary .btn-text-default,
.service-cta-btn-secondary .btn-text-hover {
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.service-cta-btn-secondary .btn-text-hover {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
}

.service-cta-btn-secondary .btn-text-default {
    white-space: nowrap;
}

.service-cta-btn-secondary:hover .btn-text-default {
    opacity: 0;
    transform: translateY(-5px);
}

.service-cta-btn-secondary:hover .btn-text-hover {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.service-cta-btn .button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.service-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.service-cta-btn:hover .button-shine {
    left: 100%;
}

.service-cta-btn-secondary:hover {
    background: rgba(121, 72, 156, 0.05);
    border-color: rgba(121, 72, 156, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(121, 72, 156, 0.2);
}

/* Additional Services Cards */
.additional-services {
    display: grid;
    gap: var(--space-8);
    margin: var(--space-20) 0;
}

.additional-service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(121, 72, 156, 0.1);
    border-radius: 24px;
    padding: var(--space-8);
    box-shadow: 0 8px 32px rgba(121, 72, 156, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.additional-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(121, 72, 156, 0.15);
    border-color: rgba(121, 72, 156, 0.2);
}

.additional-service-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.additional-service-title {
    font-size: var(--size-heading-small);
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: var(--space-4);
    margin-left: var(--space-8);
}

.additional-service-description {
    color: var(--dark-navy);
    font-size: var(--size-body);
    line-height: 1.6;
    margin-bottom: var(--space-6);
    flex-grow: 1;
}

.additional-service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6) 0;
}

.service-number-test {
    left: var(--space-5);
    opacity: 0.5;
    font-size: 2.7rem;
    color: var(--primary-blue);
    z-index: 2;
    font-weight: 900;
    line-height: 1;
}

.additional-service-features li {
    color: var(--dark-navy);
    font-size: var(--size-body);
    padding: var(--space-2) 0;
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.additional-service-features li::before {
    content: '✓';
    color: var(--accent-teal);
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

.additional-service-btn {
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
    padding: var(--space-3) var(--space-6);
    border-radius: 12px;
    font-weight: 600;
    font-size: var(--size-body);
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.additional-service-btn:hover {
    background: var(--primary-navy);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(121, 72, 156, 0.3);
}

/* Services CTA Section */
.services-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: var(--space-12);
    border-radius: 24px;
    border: 1px solid rgba(121, 72, 156, 0.1);
    box-shadow: 0 8px 32px rgba(121, 72, 156, 0.08);
}

.services-cta-title {
    font-size: var(--size-heading-small);
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: var(--space-2);
}

.services-cta-text {
    color: var(--neutral-body);
    font-size: var(--size-body);
    margin-bottom: var(--space-8);
    line-height: 1.6;
    text-decoration: none;
}

.services-cta-button {
    background: var(--gradient-cta);
    color: white;
    border: none;
    padding: var(--space-4) var(--space-8);
    border-radius: 16px;
    font-weight: 700;
    font-size: var(--size-body);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    margin-top: var(--space-4);
}

.services-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(34, 197, 94, 0.3);
}


/* Services Multi-Select Styling */
.services-label {
    font-size: var(--size-body);
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 16px;
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.service-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    padding: 16px 18px;
    border: 2px solid rgba(121, 72, 156, 0.1);
    border-radius: 12px;
    background: rgba(121, 72, 156, 0.02);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-checkbox:hover {
    border-color: rgba(121, 72, 156, 0.2);
    background: rgba(121, 72, 156, 0.04);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(121, 72, 156, 0.08);
}

.service-checkbox:has(input:checked) {
    border-color: var(--primary-navy);
    background: rgba(121, 72, 156, 0.05);
}

.service-checkbox input:checked+.checkbox-custom+.service-text {
    color: var(--primary-navy);
    font-weight: 600;
}

.service-text {
    font-size: var(--size-body);
    line-height: 1.4;
    color: var(--dark-navy);
    transition: all 0.2s;
}

.service-checkbox .checkbox-custom {
    margin-top: 2px;
}

/* ===================================
   PROJECTS SECTION STYLES
   =================================== */

.projects-content-wrapper {
    /* max-width: 1320px; */
    margin: 0 20px;
    padding: 0 20px;
    position: relative;
}

.projects-header {
    text-align: center;
    margin: 1rem;
    margin-top: 0;
}

.projects-subtitle {
    font-size: var(--size-subtitle);
    color: var(--neutral-slate);

    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

.projects-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 40px;
    margin-bottom: 0;
    
}

/* Navigační šipky u carouselu projektů (desktop) */
.projects-nav-arrows {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.projects-arrow {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(121, 72, 156, 0.18);
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
    cursor: pointer;
    transition: all 0.2s ease;
}

.projects-arrow:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
    background: #ffffff;
}

.projects-arrow:disabled {
    opacity: 0.4;
    cursor: default;
    box-shadow: none;
}

/* Schovat scrollbar a používat tečky jako indikátor pozice */
.projects-grid::-webkit-scrollbar {
    display: none;
}

.projects-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Tečky (indikátory) pod carousel projekty – i na desktopu */
.projects-dots,
.process-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 20px 0 30px 0;
    padding: 10px 0;
}

/* Základní vzhled teček (desktop i mobil) */
.projects-dot,
.process-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(121, 72, 156, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.projects-dot.active,
.process-dot.active {
    width: 24px;
    border-radius: 4px;
    background: #8740bf;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(121, 72, 156, 0.08);
    border: 1px solid rgba(121, 72, 156, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(121, 72, 156, 0.15);
    border-color: rgba(121, 72, 156, 0.1);
}

.project-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-navy);
    opacity: 0.9;
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-info {
    padding: 24px;
    
}

.project-title {
    font-size: var(--size-heading-small);
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.project-location {
    color: var(--primary-navy);
    font-weight: 600;
    font-size: var(--size-small);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.project-description {
    color: var(--neutral-slate);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: var(--size-body);
   
}

.project-specs {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.project-spec {
    font-size: var(--size-small);
    color: var(--dark-navy);
    font-weight: 500;
    padding: 2px 0;
}

.projects-cta {
    text-align: center;
    padding: 16px;
}

.projects-cta .service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    text-decoration: none;
}

.blog-section {
    background: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(243, 231, 106, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.blog-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(121, 72, 156, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.blog-section-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    background-color: white;
    text-align: center;
}

.blog-section-desc {
    color: var(--neutral-slate);
    font-size: var(--size-subtitle);
    margin: 16px auto 60px auto;
    text-align: center;
    max-width: 700px;
    font-weight: 500;
}

.blog-main-row {
    gap: 60px;
    align-items: flex-start;
    justify-content: space-between;
    display: flex;
    flex-direction: row;
}

.blog-hero-articles {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 2 1 0;
}

.blog-section .blog-hero-article {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(121, 72, 156, 0.08);
    border: 1px solid rgba(121, 72, 156, 0.05);
    display: flex;
    gap: 0;
    overflow: hidden;
    min-height: 240px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 350px;
}

.blog-section .blog-hero-article:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(121, 72, 156, 0.15);
    border-color: rgba(121, 72, 156, 0.1);
}

.blog-section .blog-img-wrapper {
    flex: 0 0 240px;
    min-width: 200px;
    max-width: 280px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: linear-gradient(135deg, rgba(121, 72, 156, 0.05), rgba(243, 231, 106, 0.05));
    position: relative;
    overflow: hidden;
}

.blog-section .blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.blog-section .blog-hero-article:hover .blog-image {
    transform: scale(1.05);
}

.blog-section .blog-hero-article-content {
    flex: 1 1 0;
    padding: 32px 32px 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
}

.blog-hero-article-content h3 {
    text-align: start;
    justify-content: start;
}

.blog-section .blog-hero-article-content h3 {

    font-size: 20px;
    font-weight: 700;
    color: var(--dark-navy);
    margin: 0 0 0 0;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.blog-section .blog-hero-article-content .meta {
    font-size: var(--size-small);
    color: var(--neutral-slate);
    display: flex;
    justify-content: start;
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-section .blog-author {
    color: var(--primary-navy);
    font-weight: 600;
}

.blog-section .blog-hero-article-content p {
    color: var(--neutral-slate);
    font-size: var(--size-body);
    margin-bottom: 16px;
    line-height: 1.6;
    text-align: start;
}

.blog-section .blog-categories-row {
    display: flex;
    gap: 12px;
    margin-top: auto;
    flex-wrap: wrap;
    align-items: center;
}

.category-button-child {
    background: rgba(121, 72, 156, 0.1);
    color: var(--primary-navy);
    font-size: var(--size-small);
    font-weight: 600;
    border-radius: 20px;
    padding: 6px 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid rgba(121, 72, 156, 0.2);
}

.category-button-child:hover {
    background: var(--primary-navy);
    color: white;
    border-color: var(--primary-navy);
}

.read {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-purple));
    color: white;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    box-shadow: 0 2px 8px rgba(121, 72, 156, 0.2);
}

.read:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(121, 72, 156, 0.3);
}

.blog-list {
    flex: 1 1 350px;
    background: linear-gradient(135deg, white 0%, #f8fafc 100%);
    border-radius: 20px;
    border: 1px solid transparent;
    box-shadow: 0 8px 25px rgba(121, 72, 156, 0.08);
    /*border: 1px solid rgba(121, 72, 156, 0.05); */
    padding: 2rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 300px;
    max-width: 400px;
    align-self: flex-start;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: sticky;
    top: 100px;
    min-height: 100%;
    max-height: 740px;
    overflow-y: auto;
}

.blog-list::-webkit-scrollbar {
    width: 6px;
}

.blog-list::-webkit-scrollbar-track {
    background: rgba(248, 250, 252, 0.5);
    border-radius: 10px;
}

.blog-list::-webkit-scrollbar-thumb {
    background: rgba(121, 72, 156, 0.2);
    border-radius: 10px;
}

.blog-list::-webkit-scrollbar-thumb:hover {
    background: rgba(121, 72, 156, 0.3);
}


.blog-list h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    text-align: left;
    position: relative;
    padding-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.blog-list h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-purple));
    border-radius: 2px;
}

.list-post {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    border-radius: 14px;
    padding: 0.875rem;
    background: none;
    position: relative;
    transition: all 0.3s ease;
}

.list-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(121, 72, 156, 0.12);
}

.list-post-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(121, 72, 156, 0.05), rgba(243, 231, 106, 0.05));
    flex-shrink: 0;
}

.list-post-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    justify-content: flex-start;
    text-align: left;
}

.list-post-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin: 0;
    line-height: 1.35;
    letter-spacing: -0.2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-post-date {
    font-size: 0.8125rem;
    color: var(--neutral-slate);
    margin: 0;
    font-weight: 500;
    opacity: 0.85;
}

.list-post .blog-categories-row {
    margin-top: 0.25rem;
    gap: 0.375rem;
    display: flex;
    flex-wrap: wrap;
}

.list-post .blog-categories-row .category-button-child {
    display: none;
}

.list-post .blog-categories-row .category-button-child:nth-child(1),
.list-post .blog-categories-row .category-button-child:nth-child(2) {
    display: inline-block;
}

.list-post .category-button-child {
    font-size: 0.6875rem;
    padding: 0.25rem 0.625rem;
    border-radius: 14px;
    font-weight: 600;
    background: rgba(121, 72, 156, 0.1);
    color: var(--primary-navy);
    border: 1px solid rgba(121, 72, 156, 0.2);
}

/* ===================================
   FOOTER STYLES
   =================================== */

.footer-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 60px 0 0;

    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(243, 231, 106, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(121, 72, 156, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo Section */
.footer-brand {
    max-width: 350px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-brand-symbol {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-purple));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.footer-water-symbol {
    width: 24px;
    height: 16px;
    position: relative;
}

.footer-wave {
    position: absolute;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: footerWaveFlow 2s ease-in-out infinite;
}

.footer-wave-1 {
    top: 2px;
    animation-delay: 0s;
}

.footer-wave-2 {
    top: 7px;
    animation-delay: 0.3s;
}

.footer-wave-3 {
    top: 12px;
    animation-delay: 0.6s;
}

@keyframes footerWaveFlow {

    0%,
    100% {
        transform: scaleX(1);
        opacity: 0.8;
    }

    50% {
        transform: scaleX(0.6);
        opacity: 1;
    }
}

.footer-brand-info {
    display: flex;
    flex-direction: column;
}

.footer-brand-name {

    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    line-height: 1;
}

.footer-brand-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.footer-company-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-stats {
    display: flex;
    gap: 30px;
}

.footer-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-weight: 700;
    color: var(--main-purple);
    font-size: 18px;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {

    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-purple));
    border-radius: 1px;
}

/* Social Links */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    filter: brightness(1) invert(1);
}

.social-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.social-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.social-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
}

.social-handle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transform: translateX(4px);
}

.link-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.2);

}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--primary-yellow);
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}


.person-photo {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(121, 72, 156, 0.2);
}

.person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.person-card:hover .person-photo img {
    transform: scale(1.05);
}

.person-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(121, 72, 156, 0.3);
}

.person-badge svg {
    width: 18px;
    height: 18px;
}

.person-info {
    margin-bottom: 28px;
}

.person-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 8px;

}

.person-role {
    font-size: 1.1rem;
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 4px;
}

.person-experience {
    font-size: 0.95rem;
    color: var(--neutral-slate);
    font-weight: 500;
}

.person-quote {
    background: rgba(121, 72, 156, 0.03);
    padding: 24px 20px;
    border-radius: 16px;
    margin-bottom: 24px;
    position: relative;
    border-left: 4px solid var(--primary-navy);
}

.quote-icon {
    position: absolute;
    top: -8px;
    left: 16px;
    font-size: 3rem;
    color: var(--primary-navy);
    opacity: 0.3;

}

.quote-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--neutral-slate);
    margin-bottom: 12px;
    font-style: italic;
    text-align: left;
}

.quote-author {
    font-size: 0.85rem;
    color: var(--primary-navy);
    font-weight: 600;
    text-align: right;
}

.person-contact-direct {
    padding-top: 20px;
    border-top: 1px solid rgba(121, 72, 156, 0.1);
}

.direct-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(121, 72, 156, 0.05);
    border-radius: 12px;
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.direct-contact-item:hover {
    background: rgba(121, 72, 156, 0.1);
    transform: translateY(-1px);
}

.direct-contact-item svg {
    width: 16px;
    height: 16px;
}

/* =========================
    CLEANING SERVICE CONTACT SECTION
========================= */

/* Contact Section Base - Consistent with site */
.contact-section {
    background: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Header Section */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.satisfaction-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-teal);
    color: var(--text-dark);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 32px;
    box-shadow: 0 8px 25px rgba(243, 231, 106, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.checkmark {
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(121, 72, 156, 0.3);
}

.contact-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;

}

.highlight {
    background: var(--accent-teal);
    padding: 0 6px;
    text-shadow: 3px 3px 0 var(--primary-color);
    color: #636a74;
}

.highlight-yellow {
    color: var(--accent-color);
    text-shadow: 3px 3px 0 var(--primary-color);
    position: relative;
}

.highlight-yellow::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
    opacity: 0.6;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);

    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.contact-subtitle span {
    margin: 0 8px;
}

/* Main Container with Background Shape */
.contact-main-container {
    position: relative;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-4);
    min-height: 700px;
}

/* Yellow Background Shape */
.yellow-background-shape {
    position: absolute;
    top: 0;
    right: -50px;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f1e04a 100%);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%, 15% 70%);
    z-index: 1;
    box-shadow: 0 25px 50px rgba(243, 231, 106, 0.4);
    border-radius: 0 0 0 50px;
}

/* CEO Photo Floating */
.ceo-photo-floating {
    position: absolute;
    top: 80px;
    right: 100px;
    z-index: 15;
    animation: gentle-float 6s ease-in-out infinite;
}

@keyframes gentle-float {

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

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

.contact-form-card {

    width: 100%;
    max-width: 100%;
    background: white;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(121, 72, 156, 0.15);
    border: 1px solid rgba(121, 72, 156, 0.1);
    padding: 16px 32px 32px;
    z-index: 20;
}

.contact-form-title {
    font-size: var(--size-heading-small);
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 32px;
    text-align: center;



}

/* Contact Section Styles */
.contact-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header .section-subtitle {
    font-size: var(--size-subtitle);
    color: var(--neutral-slate);

    max-width: 600px;
    margin: var(--space-4) auto 0 auto;
}

.contact-content-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}

.contact-form-card {
    background: white;
    border-radius: 24px;
    padding: var(--space-6);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(121, 72, 156, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.contact-form-title {
    font-size: var(--size-heading-small);
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: var(--space-4);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.form-row:has(.form-group:only-child) {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.form-group label {
    font-weight: 600;
    color: var(--dark-navy);
    font-size: var(--text-sm);
}

.form-control {
    padding: var(--space-3);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: var(--text-base);

    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 3px rgba(121, 72, 156, 0.1);
    transform: translateY(-1px);
}

.form-control::placeholder {
    color: #9ca3af;
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.services-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    margin-top: var(--space-2);
}

.service-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    cursor: pointer;
    padding: var(--space-3);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-checkbox:hover {
    background: rgba(121, 72, 156, 0.03);
    border-color: rgba(121, 72, 156, 0.1);
    transform: translateY(-1px);
}

.service-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
}

.service-checkbox input[type="checkbox"]:checked+.checkbox-custom {
    background: var(--primary-navy);
    border-color: var(--primary-navy);
    color: white;
}

.service-checkbox input[type="checkbox"]:checked+.checkbox-custom::after {
    content: '✓';
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.checkbox-text {
    font-size: var(--text-sm);
    color: var(--dark-navy);
    line-height: 1.4;
    font-weight: 500;
}

.service-checkbox input[type="checkbox"]:checked~.checkbox-text {
    color: var(--primary-navy);
    font-weight: 600;
}

.services-cta-buttons {
    display: flex;
    flex-direction: row;
    gap: var(--space-1);
    margin-top: var(--space-6);
    flex-wrap: wrap;
    align-items: center;
    justify-self: center;
}

.instagram-icon {
    width: 48px;
    height: 48px;
    color: white;
    flex-shrink: 0;
    margin-left: 2em;
}

.instagram {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary-blue);
    border: none;
    padding: var(--space-2) var(--space-3);
    border-radius: 12px;
    font-size: var(--text-m);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.instagram-footer {
    display: flex;
    align-items: center;
    color: var(--primary-blue);
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-m);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Consent Checkbox */
.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    cursor: pointer;
    align-items: center;
}

.consent-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.consent-checkbox input[type="checkbox"]:checked+.checkmark {
    background: var(--primary-navy);
    border-color: var(--primary-navy);
    color: white;
}

.consent-checkbox input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    font-size: 12px;
    font-weight: bold;
}

.consent-text {
    font-size: var(--text-sm);
    color: var(--neutral-slate);
    line-height: 1.5;
}

/* Submit Button */
.contact-submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: var(--space-4) var(--space-8);
    border-radius: 12px;
    font-size: var(--text-base);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: var(--space-4);
}

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

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: none;
    align-items: center;
    gap: var(--space-2);
}

/* Form Messages */
.form-messages {
    margin-top: var(--space-4);
}

.success-message,
.error-message-global {
    padding: var(--space-4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-weight: 500;
}

.success-message {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.error-message-global {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.error-message {
    color: #dc2626;
    font-size: var(--text-sm);
    margin-top: var(--space-1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-message.show {
    opacity: 1;
}

/* Contact Info Section */
.second-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    align-self: start;
    justify-content: flex-start;
    margin-top: 0;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-info-card {
    background: white;
    border-radius: 16px;
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(121, 72, 156, 0.08);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Enhanced Owner Card */
.owner-card {
    background: linear-gradient(135deg, white 0%, #fafbff 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    padding-bottom: var(--space-4);
}

.owner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.owner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Owner Header */
.owner-header {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    align-items: flex-start;
}

.owner-avatar {
    position: relative;
    flex-shrink: 0;
}

.owner-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: var(--shadow-md);
}

.owner-status {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: white;
    padding: 4px 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(121, 72, 156, 0.1);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s infinite;
}

.status-text {
    font-size: 11px;
    font-weight: 600;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Owner Info */
.owner-info {
    flex: 1;
}

.owner-name {

    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: var(--space-1);
    margin-top: 0;
}

.owner-title {
    color: var(--primary-navy);
    font-weight: 600;
    font-size: var(--text-sm);
    margin-bottom: var(--space-3);
    margin-top: 0;
}

.owner-credentials {
    display: flex;
    flex-direction: row;
    gap: 2px;

}

.icon {
    width: 44px;
    height: 44px;
}

.credential {
    font-size: 12px;
    color: var(--neutral-slate);
    background: rgba(121, 72, 156, 0.08);
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 500;
    width: fit-content;
}

/* Owner Quote */
.owner-quote {
    position: relative;
    background: rgba(243, 231, 106, 0.1);
    padding: var(--space-4);
    border-radius: 12px;
    border-left: 4px solid var(--accent-teal);
    margin-bottom: var(--space-6);
}

.quote-icon {
    position: absolute;
    top: -8px;
    left: 12px;
    font-size: 2rem;
    color: var(--primary-navy);
    font-weight: bold;
    background: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.quote-text {
    font-style: italic;
    color: var(--dark-navy);
    line-height: 1.6;
    margin: 0;
    padding-top: var(--space-2);
    font-size: var(--text-sm);
}

/* Owner Contact */
.owner-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.contact-owner-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: var(--space-3) var(--space-5);
    border-radius: 12px;
    font-weight: 600;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    position: relative;
    overflow: hidden;
}

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

.contact-owner-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact-owner-btn:hover::before {
    left: 100%;
}

.btn-icon {
    font-size: 1rem;
}

.response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    color: var(--neutral-slate);
    font-size: var(--text-xs);
    font-weight: 500;
}

.response-icon {
    color: var(--accent-teal);
}

/* Info Cards */
.info-icon {
    width: 24px;
    height: 24px;
    margin-bottom: var(--space-3);
}

.info-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(17%) sepia(17%) saturate(2478%) hue-rotate(222deg) brightness(94%) contrast(90%);
}

.info-content h4 {

    font-size: var(--text-base);
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: var(--space-2);
}

.info-content p {
    margin: 0;
}

.info-content a {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--accent-teal);
}

/* Unified Contact Card */
.unified-contact-card {
    background: linear-gradient(135deg, white 0%, #f8fafc 100%);
    border: 1px solid rgba(121, 72, 156, 0.12);
    padding: var(--space-8);
    padding-top: var(--space-6);
}

.unified-contact-header {
    text-align: center;
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid rgba(121, 72, 156, 0.1);
}

.unified-contact-title {

    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0;
    margin-top: 0;
}

.unified-contact-subtitle {
    color: var(--neutral-slate);
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
    margin: 0;

}

/* Contact Methods */
.contact-methods {

    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-2);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-method:hover {
    background: rgba(121, 72, 156, 0.03);
    border-color: rgba(121, 72, 156, 0.1);
    transform: translateX(4px);
}

.method-icon {
    width: 56px;
    height: 56px;
    background: rgba(121, 72, 156, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) saturate(100%) invert(17%) sepia(17%) saturate(2478%) hue-rotate(222deg) brightness(94%) contrast(90%);
}

.method-content {
    flex: 1;
    gap: var(--space-1);
}

.flex-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

.flex-row-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-2);
}

.method-title {

    font-size: var(--text-base);
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: var(--space-1);
    margin-top: 0;
}

.method-link {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-base);
    transition: color 0.3s ease;
    display: block;
    margin-bottom: var(--space-1);
}

.method-link:hover {
    color: var(--accent-teal);
}

.method-note {
    color: var(--neutral-slate);
    font-size: var(--text-xs);
    font-style: italic;
}

/* Contact Hours */
.contact-hours {
    background: rgba(243, 231, 106, 0.08);
    padding: var(--space-5);
    border-radius: 12px;
    border: 1px solid rgba(243, 231, 106, 0.2);
}

.hours-header {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.hours-icon {
    font-size: 1.2rem;
}

.hours-title {

    font-size: var(--text-base);
    font-weight: 600;
    color: var(--dark-navy);
    margin: 0;
}

.hours-schedule {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-2) 0;
    border-bottom: 1px solid rgba(121, 72, 156, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item.emergency {
    background: rgba(34, 197, 94, 0.1);
    padding: var(--space-2);
    border-radius: 6px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    margin-top: var(--space-2);
}

.day {
    font-weight: 500;
    color: var(--dark-navy);
    font-size: var(--text-sm);
}

.time {
    font-weight: 600;
    color: var(--primary-navy);
    font-size: var(--text-sm);
}

.hours-item.emergency .day,
.hours-item.emergency .time {
    color: #166534;
    font-weight: 600;
}

/* Form Decorative Pattern */
.form-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    pointer-events: none;
    overflow: hidden;
    border-top-right-radius: 24px;
}

.pattern-dots {
    position: absolute;
    top: 20px;
    right: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.dot {
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-navy), var(--accent-teal));
    border-radius: 50%;
    animation: dotPulse 4s ease-in-out infinite;
    opacity: 0.4;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.3s;
}

.dot:nth-child(3) {
    animation-delay: 0.6s;
}

.dot:nth-child(4) {
    animation-delay: 0.9s;
}

.dot:nth-child(5) {
    animation-delay: 1.2s;
}

.dot:nth-child(6) {
    animation-delay: 1.5s;
}

.dot:nth-child(7) {
    animation-delay: 1.8s;
}

.dot:nth-child(8) {
    animation-delay: 2.1s;
}

.dot:nth-child(9) {
    animation-delay: 2.4s;
}

@keyframes dotPulse {

    0%,
    80%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    40% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.pattern-lines {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 80px;
    height: 80px;
}

.line {
    position: absolute;
    background: linear-gradient(45deg, rgba(121, 72, 156, 0.1), rgba(243, 231, 106, 0.2));
    border-radius: 2px;
}

.line-1 {
    width: 30px;
    height: 2px;
    top: 10px;
    right: 10px;
    transform: rotate(45deg);
    animation: lineSlide 6s ease-in-out infinite;
}

.line-2 {
    width: 20px;
    height: 2px;
    top: 25px;
    right: 20px;
    transform: rotate(-45deg);
    animation: lineSlide 6s ease-in-out infinite;
    animation-delay: 2s;
}

.line-3 {
    width: 25px;
    height: 2px;
    top: 40px;
    right: 15px;
    transform: rotate(45deg);
    animation: lineSlide 6s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes lineSlide {

    0%,
    90%,
    100% {
        opacity: 0.2;
        transform: scale(1) rotate(45deg);
    }

    45% {
        opacity: 0.6;
        transform: scale(1.1) rotate(45deg);
    }
}

/* Animated Background Circles */
.contact-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(243, 231, 106, 0.1), rgba(121, 72, 156, 0.05));
    animation: circleFloat 12s ease-in-out infinite;
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    left: 20%;
    animation-delay: 4s;
}

.blog-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 3rem auto 0;
    padding: 1rem 2.5rem;
    background: none;
    color: var(--dark-navy) !important;
    font-size: var(--size-body);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;

    justify-content: center;
}

.blog-cta svg {
    transition: transform 0.3s ease;
}

.blog-cta:hover {
    scale: 1.05;
}

.blog-cta:hover svg {
    transform: translateX(4px);
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 15%;
    animation-delay: 8s;
}

@keyframes circleFloat {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.3;
    }

    33% {
        transform: translateY(-15px) translateX(10px) scale(1.1);
        opacity: 0.5;
    }

    66% {
        transform: translateY(10px) translateX(-8px) scale(0.9);
        opacity: 0.4;
    }
}

/* Enhanced Card Shine Effect */
.unified-contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: cardShine 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes cardShine {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: -100%;
    }
}

/* Pulsing Contact Methods */
.contact-method::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(121, 72, 156, 0.03), rgba(243, 231, 106, 0.03));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.contact-method:hover::before {
    opacity: 1;
}

/* Animated Icons in Contact Methods */
.method-icon {
    position: relative;
    overflow: hidden;
}

.method-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: iconGlint 3s ease-in-out infinite;
}

@keyframes iconGlint {

    0%,
    90%,
    100% {
        opacity: 0;
    }

    5%,
    15% {
        opacity: 1;
    }
}

/* Success Pop-up Modal */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(173 173 173 / 60%);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Zakázat transition při načtení stránky - zabrání problikávání */
.popup-overlay.no-transition,
.popup-overlay.no-transition .popup-container {
    transition: none !important;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: #FFFFFF;
    position: relative;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    transform: scale(0.8) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-overlay.show .popup-container {
    transform: scale(1) translateY(0);
}

.popup-content {
    background: none;
    border-radius: 24px;
    padding: var(--space-10);
    box-shadow: 0 25px 50px rgba(121, 72, 156, 0.2);
    border: 1px solid rgba(121, 72, 156, 0.1);
    position: relative;
    overflow: hidden;
}



/* Success Animation */
.success-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-8);
    position: relative;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: checkmarkScale 0.6s ease-out 0.2s both;
}

@keyframes checkmarkScale {
    0% {
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.1) rotate(45deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.popup-checkmark {
    width: 24px;
    height: 12px;
    border: solid white;
    border-width: 0 0 3px 3px;
    transform: rotate(-45deg);
    animation: checkmarkDraw 0.3s ease-out 0.8s both;
}

@keyframes checkmarkDraw {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }

    50% {
        width: 12px;
        height: 0;
        opacity: 1;
    }

    100% {
        width: 24px;
        height: 12px;
        opacity: 1;
    }
}

/* Success Particles */
.success-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    pointer-events: none;
}

.success-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-teal);
    border-radius: 50%;
    animation: particleExplosion 1s ease-out forwards;
}

.success-particles .particle:nth-child(1) {
    top: 20%;
    left: 50%;
    animation-delay: 1s;
}

.success-particles .particle:nth-child(2) {
    top: 50%;
    left: 80%;
    animation-delay: 1.1s;
}

.success-particles .particle:nth-child(3) {
    top: 80%;
    left: 50%;
    animation-delay: 1.2s;
}

.success-particles .particle:nth-child(4) {
    top: 50%;
    left: 20%;
    animation-delay: 1.3s;
}

.success-particles .particle:nth-child(5) {
    top: 30%;
    left: 30%;
    animation-delay: 1.4s;
}

@keyframes particleExplosion {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    20% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0) translate(40px, -40px);
    }
}

/* Pop-up Message */
.popup-message {
    text-align: center;
    margin-bottom: var(--space-8);
}

.popup-title {

    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: var(--space-4);
    margin-top: 0;
}

.popup-text {
    font-size: var(--text-base);
    color: var(--neutral-slate);
    line-height: 1.6;
    margin-bottom: var(--space-16);
    margin-top: 0;
}

.popup-features {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.popup-feature {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(121, 72, 156, 0.08);
    padding: var(--space-2) var(--space-3);
    border-radius: 20px;
    border: 1px solid rgba(121, 72, 156, 0.1);
}

.feature-icon {
    font-size: 1rem;
}

.feature-text {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--dark-navy);
}

/* Pop-up Actions */
.popup-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.popup-btn {
    padding: var(--space-4) var(--space-6);
    border-radius: 12px;
    font-weight: 600;
    font-size: var(--text-base);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    border: none;
    position: relative;
    overflow: hidden;
}

.popup-btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.popup-btn-secondary {
    background: white;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.popup-btn-secondary:hover {
    background: var(--primary-navy);
    color: white;
    transform: translateY(-2px);
}

/* Close Button */
.popup-close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(121, 72, 156, 0.1);
    border-radius: 50%;
    color: var(--dark-navy);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: rgba(121, 72, 156, 0.2);
    transform: rotate(90deg);
}


/* ============================================
   MOBILE NAVIGATION
   ============================================ */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--main-purple);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: calc(100vh);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Move navbar to top when mobile menu is open */
body.mobile-menu-open .navbar {
    top: 0 !important;
    z-index: 9999;
}


/* ============================================
   SECONDARY MENU - Services Navigation
   ============================================ */

.secondary-menu-section {
    background: #ffffff;
    padding: 3rem 2rem;
    text-align: center;

}

.secondary-menu-title {

    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-navy);
    text-align: center;
    margin: 0 0 2.5rem 0;
}

.secondary-menu-container {
    max-width: 1320px;
    margin: 2rem auto 0 auto;

}

.menu-secondarymenu {
    gap: auto;
}

/* Grid layout - 4 columns */
.services-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Parent menu item (column header) */
.services-menu>li {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: start;
}

/* Parent link - black heading */
.services-menu>li>a {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-navy);
    text-decoration: none;
    text-align: center;
    margin-bottom: 0.25rem;
    transition: color 0.2s ease;
}

.services-menu>li>a:hover {
    color: var(--main-purple);
}

.services-menu .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.services-menu .sub-menu li a {
    font-size: 1rem;
    font-weight: 400;
    color: var(--main-purple);
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
    margin-left: 10px;
    text-align: center;
}

.services-menu .sub-menu li a::before {
    content: "-";
    left: -10;
    margin-right: 10px;

}

.services-menu .sub-menu li a:hover {
    color: var(--lighter-main-purple);
    padding-left: 0.5rem;
}

.carousel-reviews-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    background: #ffffffff;
    position: relative;
}

.carousel-reviews-wrapper::before,
.carousel-reviews-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: calc((100% - 1200px) / 2);
    z-index: 10;
    pointer-events: none;
}

.carousel-reviews-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
}

.carousel-reviews-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
}

.carousel-headline {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1.5rem;
    position: relative;
    z-index: 20;
}

.carousel-rows-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.carousel-row {
    display: flex;
    gap: 20px;
    animation-duration: 220s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.carousel-row-ltr {
    animation-name: scrollLeftToRight;
}

.carousel-row-rtl {
    animation-name: scrollRightToLeft;
}

@keyframes scrollLeftToRight {
    0% {
        transform: translateX(-500%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes scrollRightToLeft {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-500%);
    }
}

.carousel-review-card {
    flex: 0 0 450px;
    min-width: 600px;
    min-height: 250px;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.carousel-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.carousel-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.carousel-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.carousel-author-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.carousel-author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.carousel-social-icon {
    width: 58px;
    height: auto;
    flex-shrink: 0;
}

.carousel-social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-stars {
    color: #FFA500;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.carousel-review-text {
    font-size: var(--size-body);
    line-height: 1.6;
    color: #444;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-review-card p {
    font-size: var(--size-body);
    line-height: 1.6;
    color: #444;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-images {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.carousel-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 1400px) {
    .review-badge {
        flex-wrap: wrap;
    }

    .carousel-reviews-wrapper::before,
    .carousel-reviews-wrapper::after {
        width: 100px;
    }
}

@media (max-width: 1200px) {
    .footer-main {
        gap: 20px;
    }

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

    .hero-main-row {
        grid-template-columns: 1fr;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.3rem;
        max-width: 100%;
        padding: 0;
        padding-left: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-section {
        padding: 6rem 1.5rem 3rem 1.5rem;
        padding-top: 120px;
        min-height: auto;
    }

    .image-3d-container {
        transform: none;
    }

    .floating-ui {
        display: none;
    }

    .hero-container {
        margin: 0;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 63px;
        right: -100%;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 10px 32px 32px;
        z-index: 988;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -4px 0 24px rgba(121, 72, 156, 0.15);

    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-menu .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .navbar-menu .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(121, 72, 156, 0.1);
    }

    .navbar-menu .nav-menu li:last-child {
        border-bottom: none;
    }

    .navbar-menu .nav-menu a {
        display: block;
        padding: 20px 16px;
        font-weight: 600;
        color: var(--dark-navy);
        text-decoration: none;
        transition: all 0.2s ease;
    }

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

    .navbar-menu .nav-menu a:hover,
    .navbar-menu .nav-menu a.active {
        background: rgba(121, 72, 156, 0.05);
        color: var(--main-purple);
        padding-left: 24px;
    }

    .navbar-menu .nav-menu .current-menu-item>a {
        background: rgba(121, 72, 156, 0.08);
        color: var(--main-purple);
        border-left: 4px solid var(--main-purple);
    }

    /* Sub-menu support (if needed) */
    .navbar-menu .nav-menu .sub-menu {
        padding-left: 20px;
        background: rgba(121, 72, 156, 0.02);
    }

    .navbar-menu .nav-menu .sub-menu a {
        padding: 16px 12px;

    }

    .particle {
        width: 6px;
        height: 6px;
    }

    .hero-container {
        padding: 8rem var(--space-6) var(--space-6);
        padding-top: 90px;
    }

    .hero-main-row {
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }

    .image-frame {
        max-width: 60%;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin-bottom: var(--space-6);
        max-width: 100%;
    }

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


    .cta-buttons {
        min-width: auto;
        gap: var(--space-4);
        margin-bottom: var(--space-6);
        flex-wrap: wrap;
    }

    .review-badge {
        max-width: 280px;
        padding: var(--space-2) var(--space-3);
    }

    .badge-platform,
    .trust-section {
        gap: var(--space-4);
        padding: 0;
    }

    .trust-text {
        display: none;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }


    .image-3d-container {
        transform: perspective(800px) rotateY(-3deg) rotateX(1deg);
    }

    .image-frame {
        padding: 10px;
    }

    .navbar {
        top: 24x;
    }

    .navbar-container {
        padding: var(--space-s) var(--space-l);
    }

    .brand-symbol {
        width: 45px;
        height: 45px;
    }

    .footer-bottom {
        padding: 20px 50px;
    }

    .ui-1,
    .ui-2,
    .ui-3 {
        display: none;
    }

    .services-section {
        padding: var(--space-16) 0;
    }

    .partners-container,
    .services-container {
        padding: 0 var(--space-6);
    }

    .partners-label {

        margin-bottom: var(--space-4);
    }

    .partners-track {
        gap: var(--space-10);
    }

    .partner-logo-premium {
        height: 40px;
    }

    .services-title {

        margin-bottom: var(--space-12);
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: var(--space-6);
    }

    .service-card {
        padding: 2rem;
    }

    .service-icon {
        width: 160px;
        height: 160px;
        margin-bottom: var(--space-6);
    }

    .service-icon img {
        width: 100px;
        height: 100px;
    }

    .service-title {
        margin-bottom: var(--space-3);
    }

    .service-description {
        margin-bottom: var(--space-6);
    }

    .service-features li {
        padding: var(--space-1) 0;
        padding-left: var(--space-5);
    }


    .navbar {
        padding: 0 20px;
    }

    .service-cta-btn {
        display: none;
    }

    .navbar-container {
        margin: 0;
        padding: 12px 32px;
        max-width: 100%;
    }

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

    .blog-main-row {
        flex-wrap: wrap;
    }

    .blog-hero-articles {
        width: 100%;
        flex: 1 1 100%;
    }

    .blog-list {
        width: 100%;
        flex: 1 1 100%;
        margin-top: 3rem;

    }
    
}

@media (max-width: 768px) {
    /* *:not(.navbar):not(.navbar *):not(.top-contact-bar):hover {
        background-color: inherit !important;
        color: inherit !important;
        transform: none !important;
        box-shadow: none !important;
      } */

    /* Breadcrumbs */
    .breadcrumb-list {
        font-size: 0.8125rem;
        gap: var(--space-1);
    }

    main {
        margin-top: 100px !important;
    }

    .breadcrumb-separator {
        font-size: 0.8125rem;
    }

    .projects-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 20px 0;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    .projects-grid>* {
        flex: 0 0 85%;
        scroll-snap-align: center;
        min-width: 280px;
    }

    .projects-grid::-webkit-scrollbar {
        display: none;
    }

    .projects-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .projects-grid {
        padding-left: 20px;
        padding-right: 20px;
    }

    .projects-grid>*:first-child {
        margin-left: 0;
    }

    .projects-grid>*:last-child {
        margin-right: 20px;
    }

    /* Scroll indikátory (tečky) pro mobilní */
    .projects-dots,
    .process-dots {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin: 20px 0 30px 0;
        padding: 10px 0;
        position: relative;
        z-index: 10;
    }

    /* Na mobilu skrýt šipky (swipe stačí) */
    .projects-nav-arrows {
        display: none;
    }

    .projects-dot,
    .process-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(121, 72, 156, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .projects-dot.active,
    .process-dot.active {
        width: 24px;
        border-radius: 4px;
        background: #8740bf;
    }

    .projects-dot:hover,
    .process-dot:hover {
        background: rgba(121, 72, 156, 0.6);
    }

    .top-contact-bar {
        padding: 0;
        max-height: 40px;
    }

    .contact-container {
        padding: 20px 0.125rem;
    }

    .top-contact-container .nav-contact-info {
        display: flex;
        flex-direction: row;
    }

    .nav-contact-info {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .service-content {
        padding: var(--space-6) 0;
    }

    .services-cta-text,
    .services-cta-buttons {
        margin: 0;
        justify-content: center;
    }

    .service-item .service-number,
    .service-item-reverse .service-number {
        left: 50%;
        top: 10%;
        transform: translateX(-50%);
    }

    .brand-logo {
        width: 120px;
        height: auto;
    }

    .navbar-menu {
        width: 100%;
        max-width: 100%;
    }

    .metric-card {
        gap: var(--space-2);
    }

    .particle {
        width: 4px;
        height: 4px;
        opacity: 0.4;
    }

    .hero-container {
        padding: 6rem var(--space-4) var(--space-4);
        padding-top: 70px;
    }

    .hero-content {
        padding: 0;
    }

    .hero-main-row {
        gap: var(--space-2);
    }

    .premium-badge {
        margin-bottom: var(--space-4);
    }

    .badge-content,
    .badge-content-firmy {
        padding: var(--space-2);
        gap: var(--space-1);
    }

    .badge-content img,
    .badge-content-firmy img {
        max-width: 97px;
    }

    .hero-title {
        margin-bottom: var(--space-8);
        line-height: 1.1;
    }

    .title-line {
        margin-bottom: 0.15em;
    }


    .additional-service-card {
        padding: var(--space-6) var(--space-4);
    }

    .services-cta {
        padding: var(--space-6) var(--space-4);
    }

    .gradient-text::after {
        bottom: -6px;
        height: 3px;
    }

    .hero-subtitle {
        line-height: 1.6;
        margin-bottom: var(--space-6);
    }

    .highlight-accent {
        font-weight: 600;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;

        margin-bottom: var(--space-6);
    }

    .feature-card {

        flex-direction: row;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .cta-section {
        margin-bottom: var(--space-2);
    }

    .cta-buttons {
        flex-direction: column;
        gap: var(--space-3);
        margin-bottom: var(--space-6);
        min-width: 100%;
        max-height: none;
        width: 100%;
    }

    .cta-buttons>* {
        width: 100%;
        justify-content: center;
    }

    .reviews-badges {
        flex-direction: column;
        margin-top: 0;
        gap: var(--space-3);
        width: 100%;
    }

    .review-badge {
        max-width: 100%;
        padding: var(--space-3);
        justify-content: center;
    }

    .badge-content {
        gap: var(--space-2);
    }

    .badge-platform {
        max-width: 120px;
    }

    .stars-container {
        gap: var(--space-1);
    }

    .primary-cta {
        padding: var(--space-3) var(--space-6);
        width: 100%;
        justify-content: center;
    }

    .single-hero {
        padding-top: 55px;
    }

    .secondary-cta {
        padding: var(--space-3) var(--space-5);
        width: 100%;
        justify-content: center;
    }

    .trust-numbers {
        gap: var(--space-3);

    }

    .trust-divider {
        height: 16px;
    }

    .reviews-section {
        margin-top: var(--space-4);
    }

    .review-item {
        padding: var(--space-4);
        max-width: 100%;
    }

    .author-avatar {
        width: 36px;
        height: 36px;
    }

    .image-3d-container {
        display: none;
        margin-top: 0;
    }

    .image-frame {
        padding: 8px;
        border-radius: 20px;
    }

    .main-hero-image {
        border-radius: 12px;
    }

    .image-overlay {
        inset: 8px;
        border-radius: 12px;
    }

    .floating-ui {
        display: none;
    }

    .service-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .notification-card {
        gap: var(--space-1);
        min-width: 160px;
    }

    .navbar {

        padding: 0;
        z-index: 999;
    }

    .navbar-container {
        padding: var(--space-2) var(--space-2);
    }

    .brand-container {
        gap: var(--space-2);
    }

    .brand-symbol {
        width: 40px;
        height: 40px;
    }

    .water-symbol {
        border-radius: 50%;
    }

    .brand-info {
        gap: 0;
    }

    .stars-container {
        gap: var(--space-1);
    }

    .services-section {
        padding: var(--space-12) 0;
    }

    .partners-container,
    .services-container {
        padding: 0 var(--space-4);
    }

    .partners-label {

        margin-bottom: var(--space-3);
    }

    .partners-carousel {
        mask: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
    }

    .footer-main {
        margin: 0 auto;
    }

    .partners-track {
        gap: var(--space-8);
    }

    .partner-logo-premium {
        height: 32px;
    }

    .services-intro {
        margin-bottom: var(--space-8);
    }

    .services-title {

        margin-bottom: var(--space-8);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .service-card:hover {
        transform: translateY(-4px);
    }

    .service-icon {
        width: 140px;
        height: 140px;
        margin-bottom: var(--space-6);
    }

    .service-icon img {
        width: 80px;
        height: 80px;
    }

    .service-title {

        margin-bottom: var(--space-3);
        padding-bottom: var(--space-2);
    }

    .service-title::after {
        width: 50px;
    }

    .service-description {

        margin-bottom: var(--space-6);
        line-height: 1.5;
    }

    .service-features {
        margin-top: var(--space-4);
    }

    .service-features li {

        padding: var(--space-1) 0;
        padding-left: var(--space-5);
        line-height: 1.4;
    }

    .floating-ui,
    .ui-1,
    .ui-2,
    .ui-3 {
        display: none;
    }

    .gradient-orb,
    .particle {
        display: none;
    }

    .navbar-container {
        max-width: 100vw;
    }

    .reviews-badges {
        width: 100%;
        max-width: 100%;
    }

    .hero-section,
    .services-section,
    .faq-section,
    .about-section,
    .projects-section,
    .blog-section,
    .contact-section {
        overflow-x: hidden;
        max-width: 100vw;

    }

    .highlight-accent {
        font-weight: 600;
    }

    .primary-cta {
        padding: var(--space-3) var(--space-6);
        min-height: 48px;
    }

    .secondary-cta {
        padding: var(--space-3) var(--space-5);
        min-height: 48px;
    }


    .contact-content-grid {
        padding: 0 0.5rem;
        grid-template-columns: 1fr;

    }


    .review-badge {
        padding: var(--space-2) var(--space-3);
        min-height: auto;
    }


    .premium-badge {
        margin-bottom: var(--space-4);
    }

    .hero-container {
        padding: 0;
    }

    .feature-card {
        padding: var(--space-2);
    }

    .service-card {
        padding: 1.5rem;
    }


    .service-icon {
        width: 120px;
        height: 120px;
    }

    .service-icon img {
        width: 80px;
        height: 80px;
    }

    .contact-methods {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

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

    .trust-item {
        display: flex;
    }

    .secondary-menu-container {
        margin: 1rem;
        margin-bottom: 0;
    }

    .navbar {
        top: 40px;
    }

    .navbar.scrolled {
        top: 0;
    }

    .hero-section {
        padding: 2rem 24px 0 24px;
        padding-top: 0;
        min-height: auto;
    }

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

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }

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

    .section-title {
        font-weight: 700;
    }

    .project-spec {
        color: var(--neutral-slate);
        line-height: 1.5;
    }

    .contact-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .contact-container {

        max-width: 100%;
    }

    .footer-column,
    .footer-main {
        width: content;
    }

    .contact-grid {
        padding: 0;
        gap: 20px;
    }

    .contact-form-card {
        padding: 16px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 16px;
        order: 2;
    }

    .second-column {
        width: 100%;
        max-width: 100%;
    }

    .contact-info-cards {
        width: 100%;
    }

    .contact-info-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-form-wrapper {
        padding: 0;
        margin: 0;
    }

    .contact-form {
        padding: 0;
    }

    .form-control {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .footer-main {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding-bottom: 30px;
        gap: 20px;
    }

    .footer-section {
        padding: 40px 0 0;
    }

    .footer-bottom {
        padding: 20px 5px;
    }

    .footer-bottom-content {
        padding: 0 16px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-copyright,
    .footer-bottom-links {
        width: 100%;
        justify-content: center;
    }

    .logo .brand-logo {
        width: 120px !important;
        height: auto;
        display: block;
    }

    .reviews-badges {
        flex-direction: row;
        gap: 0.35rem;
        margin-top: 0;
        padding: var(--space-1) var(--space-2);
    }

    .navbar-menu {
        width: 100%;
        max-width: 100%;
    }

    .scrolled {
        width: 100%;
        max-width: 100%;
    }

    .badge-icon {
        display: none;
    }

    .blog-list {
        display: none;
    }

    .blog-hero-article {
        flex-direction: column;
        max-width: 200px;
        box-shadow: var(--shadow-md);
    }

    .blog-hero-articles {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-inline: 1rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .blog-hero-articles {
        padding: var(--space-2) var(--space-2) var(--space-8) var(--space-2);
        background: #ffff;

    }

    .blog-section-wrapper {
        padding: 0;
    }

    .blog-section .blog-img-wrapper,
    .blog-img-wrapper img {
        max-width: 100%;
    }

    .blog-hero-articles::-webkit-scrollbar {
        display: none;
    }

    .blog-main-row {
        padding: 0 var(--space-4);
    }

    .blog-hero-article {
        min-width: 90%;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .blog-section .blog-img-wrapper img {
        max-width: 100%;
        height: auto;
        border-radius: 12px 12px 0 0;
    }

    /* Indikátory karuselu */
    .blog-section-wrapper {
        position: relative;
    }

    .blog-section::after {

        display: none;
    }

    .blog-hero-articles::after {
        content: '';
        display: block;
        min-width: 1rem;
        height: 1px;
    }

    .carousel-review-card {
        flex: 0 0 350px;
        min-width: 350px;
        padding: 20px;
    }

    .carousel-headline h2 {
        font-size: 2rem;
    }

    .carousel-row {
        animation-duration: 90s;
    }

    .carousel-reviews-wrapper::before,
    .carousel-reviews-wrapper::after {
        width: 60px;
    }

    .blog-cta {
        margin: 1rem 1rem;
        width: 90%;
        max-width: 400px;
    }
    .services-overview-container{
        padding: 0 15px;
    }
}


@media (max-width: 480px) {
    .carousel-review-card {
        flex: 0 0 300px;
        min-width: 300px;
        padding: 16px;
    }
    
    .carousel-headline h2 {
        font-size: 1.5rem;
    }

    .carousel-row {
        animation-duration: 80s;
    }

    .carousel-reviews-wrapper::before,
    .carousel-reviews-wrapper::after {
        width: 40px;
    }

    .stat-number,
    .trust-label {
        font-size: 13px;
        font-weight: 500;
    }

    .stat-text .stat-label {
        font-size: 13px;
    }

    .footer-brand-logo {
        height: 48px;
    }

    .navbar-menu {
        width: 100%;
        max-width: 100%;
    }

    .mobile-menu-toggle {
        padding: 6px;
    }

    .hamburger-line {
        width: 24px;
        height: 2.5px;
    }

    .hero-section {
        padding: 1rem 16px 0 16px;
        min-height: auto;
    }

    .hero-container {
        padding: 0;
    }

    .hero-content {
        gap: 1.55rem;
        padding-top: 0;
    }

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

    .gradient-text {
        font-weight: 800;

    }

    /* Hero Subtitle */
    .hero-subtitle {
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .nav-contact-item {
        padding: 3px 12px;
    }

    .contact-icon {
        width: 18px;
        height: 18px;
    }

    .stars-container {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: auto;
        margin-bottom: 0.95rem;
    }

    .feature-card {
        padding: 0.425rem;
        line-height: 1;
        gap: 0.625rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .blog-list {
        padding: 1.25rem;
        min-width: auto;
        max-width: 100%;
    }

    .blog-list h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
    }

    .list-post {
        gap: 0.75rem;
        padding: 0.625rem;
    }

    .list-post-image {
        width: 60px;
        height: 60px;
        border-radius: 10px;
    }

    .list-post-title {
        font-size: 0.8125rem;
    }

    .list-post-date {
        font-size: 0.7rem;
    }

    .list-post .category-button-child {
        font-size: 0.625rem;
        padding: 0.2rem 0.45rem;
    }

    .icon-bg {
        width: 90%;
        height: 90%;
        margin: auto auto;
    }

    .cta-section {
        margin-bottom: 0;
    }

    .cta-buttons {
        min-width: auto;
        max-height: none;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        margin-bottom: 1.25rem;
    }

    .primary-cta,
    .secondary-cta {
        width: 100%;
        justify-content: center;
        padding: 0.675rem 1.25rem;
    }

    .cta-arrow {
        font-size: 0.925rem;
    }

    .trust-section {
        flex-direction: row;
        align-items: center;
        gap: 0.675rem;
        padding: 0.875rem 0;
        text-align: center;
    }

    .trust-text {
        display: none;
    }

    .trust-numbers {
        flex-direction: row;
        gap: 0.75rem;
        width: 100%;
    }

    .trust-item {
        width: fit-content;

    }

    .trust-divider {
        display: none;
    }


    .review-badge {
        gap: 0;
        padding: 0;
        justify-content: center;
    }

    .services-section {
        padding: 2.5rem 0;
    }

    .services-container,
    .partners-container {
        padding: 0 1rem;
    }

    .services-title {
        margin-bottom: 1.5rem;
    }

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

    .service-card {
        padding: 1.25rem;
    }

    .service-icon {
        width: 140px;
        height: 140px;
        margin: 0 auto 1.25rem;
    }

    .service-icon img {
        width: 80px;
        height: 80px;
    }

    .service-title {
        margin-bottom: 0.75rem;
    }

    .service-description {
        margin-bottom: 1.25rem;
    }

    .service-features li {
        padding: 0.375rem 0;
        padding-left: 1.25rem;
    }


    .partners-label {
        margin-bottom: 1rem;
    }

    .partners-track {
        gap: 2rem;
    }

    .partner-logo-premium {
        height: 32px;
    }

    .about-section {
        padding: 2.5rem 0;
    }

    .about-content {
        padding: 0 1rem;
        flex-direction: column;
        gap: 1.75rem;
    }

    .about-main-col {
        min-width: auto;
        gap: 1rem;
    }

    .about-section .section-title {
        margin-bottom: 0.75rem;
    }

    .about-section .section-title::after {
        width: 50px;
        height: 3px;
        margin: 0.5rem auto 1rem 0;
    }

    .about-text {
        line-height: 1.6;
    }

    .about-list li {
        padding-left: 1.5rem;
    }

    .about-list li::before {
        top: 4px;
    }

    .about-quote-box {
        padding: 1rem 1.25rem;
        margin: 1rem 0 0 0;
    }

    .about-quote-author {
        margin-top: 0.5rem;
    }

    .about-cta-button {
        width: 100%;
        padding: 0.875rem 1.5rem;
        margin-top: 1rem;
    }

    .about-image-col {
        flex: 1;
        min-width: auto;
        min-height: auto;
        max-width: 100%;
    }

    .about-image-col img {
        max-width: 100%;
        min-height: auto;
        border-radius: 16px;
    }

    .image-frame {
        border-radius: 16px;
        padding: 0.5rem;
    }

    .image-3d-container {
        transform: perspective(800px) rotateY(-2deg) rotateX(1deg);
    }

    .projects-section {
        padding: 2.5rem 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .project-card {
        border-radius: 16px;
    }

    .project-image {
        height: 180px;
    }

    .project-overlay {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .project-info {
        padding: 1.25rem;
    }

    .project-title {
        margin-bottom: 0.5rem;
    }

    .project-location {
        margin-bottom: 0.75rem;
    }

    .project-description {
        margin-bottom: 1rem;
    }

    .services-menu .sub-menu li a {
        font-size: 14px;
    }

    .category-button-child {
        font-size: 0.75rem;
        padding: 0.375rem 0.875rem;
    }


    .blog-list {
        padding: 1.5rem;
        max-width: 100%;
    }

    .blog-list h3 {
        font-size: 1.125rem;
        margin-bottom: 0.875rem;
        padding-bottom: 0.625rem;
    }

    .list-post {
        gap: 0.875rem;
        padding: 0.75rem;
    }

    .list-post-image {
        width: 70px;
        height: 70px;
    }

    .list-post-title {
        font-size: 0.875rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .list-post-date {
        font-size: 0.75rem;
    }

    .list-post .category-button-child {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    .services-overview-section {
        padding: 2.5rem 0;
    }

    .services-overview-container {
        padding: 0 1rem;
    }

    .service-image img {
        max-height: 250px;
    }

    .services-header {
        margin-bottom: 2rem;
    }

    .section-title {
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }

    .services-clients-visual {
        gap: 0.75rem;
        margin: 1.25rem 0;
    }

    .clients-text {
        gap: 0.55rem;
        flex-direction: row;
    }

    .client-separator {
        display: none;
    }

    .client-icon-rect {
        height: 33px;
        padding: 0.275rem 0.55rem;
        gap: 0.275rem;
    }

    .client-icon-rect img {
        width: 20px;
        height: 20px;
    }

    .services-list {
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-item:not(:last-child)::after {
        bottom: calc(-1 * 1.25rem);
    }

    .service-item-reverse {
        direction: ltr;
    }

    .service-image {
        border-radius: 16px;
    }

    .service-item .service-number,
    .service-item-reverse .service-number {
        left: 50%;
        top: 40%;
        transform: translateX(-50%);
        opacity: 0.05;

    }

    .services-menu li a,
    .sub-menu li a {

        text-align: start !important;
    }

    .headline-wraper {
        flex-direction: column;
        gap: 0.5rem;
    }

    .service-benefits li {
        padding-left: 1.5rem;
        padding: 0;

    }

    .service-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .service-cta-btn,
    .service-cta-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem;
    }

    .service-cta-btn-secondary .phone-icon {
        width: 15px;
        height: 15px;
    }

    .additional-services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .additional-service-card {
        padding: 1.5rem 1.25rem;
    }

    .additional-service-description {
        margin-bottom: var(--space-2);
    }

    .additional-service-features li {
        padding: var(--space-1) 0;
    }

    .additional-service-features {

        margin-bottom: var(--space-4);
    }

    .additional-service-btn {
        padding: 0.75rem 1.25rem;
    }

    .services-cta {
        padding: 2rem 1.5rem;
    }

    .services-cta-buttons {
        padding: 0.875rem 1.5rem;
        gap: 0.55rem;
    }

    .instagram-icon {
        width: 24px;
        height: 24px;
        margin: 0;
    }

    .instagram {
        font-size: 0.9375rem;
    }

    .metrics-section {
        margin-bottom: 2rem;
    }

    .metrics-grid {
        flex-direction: column;
        gap: 1.25rem;
    }

    .metric {
        padding: 0.75rem 1.25rem;
    }

    .service-review-icon {
        width: 32px;
        height: 32px;
    }

    .service-review-popup {
        width: calc(100vw - 2rem);
        max-width: 280px;
        padding: 1rem;
    }

    .service-review-popup .review-stars {
        font-size: 1rem;
        margin: 0;
    }

    .review-author {
        font-size: 0.75rem;
    }

    .review-widgget-handeler {
        padding: 2.5rem 0;
    }

    .reviews-widget {
        padding: 1.875rem 0.75rem;
        margin: 0 auto;
    }

    .reviews-widget .grid {
        grid-template-columns: 1fr !important;
        gap: 0.875rem;
    }

    .r-headline {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .r-headline h2 {
        margin-bottom: 0.75rem;
    }

    .r-headline .section-subtitle {
        padding: 0 0.5rem;
    }

    .review {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }

    .review .top {
        gap: 0.75rem;
        margin-bottom: 0.875rem;
    }

    .icon {
        width: 48px;
        height: 48px;
    }

    .basic-text,
    .review p {
        line-height: 1.6;
        margin: 0.75rem 0;
    }

    .stars {
        font-size: 1.25rem;
        margin: 0.5rem 0 0.75rem 0;
    }

    .social-icon img {
        width: 20px;
        height: 20px;
    }

    .social-icon.firmy img {
        width: 28px;
        height: 28px;
    }

    .image-handeler {
        gap: 0.5rem;
        padding: 0.75rem 0 0 0;
    }

    .image-handeler img {
        border-radius: 8px;
    }

    .review-widgget-handeler .fade-effect {
        height: 350px;
    }

    .review-widgget-handeler .show-more-btn,
    .review-widgget-handeler .show-less-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .contact-section {
        padding: 2.5rem 0;
    }

    .contact-header {
        margin-bottom: 2rem;
    }

    .contact-header .section-title {
        margin-bottom: 0.75rem;
    }

    .contact-header .section-subtitle {
        padding: 0 0.5rem;
    }

    .contact-form-card {
        padding: 1.5rem 1.25rem;
        border-radius: 20px;
    }

    .contact-form-title {
        margin-bottom: 1.5rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .form-group {
        gap: 0.5rem;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-control {
        padding: 0.75rem;
        font-size: 13px;
        border-radius: 10px;
    }

    textarea.form-control {
        min-height: 100px;
    }

    .services-checkboxes {
        grid-template-columns: 1fr !important;
        gap: 0.75rem;
    }

    .service-checkbox {
        padding: 0.75rem;
        border-radius: 8px;
    }

    .checkbox-text {
        font-size: 13px;
    }

    .consent-text {
        font-size: 13px;
    }

    .contact-submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
        border-radius: 10px;
    }

    .form-messages {
        margin-top: 1rem;
    }

    .success-message,
    .error-message-global {
        padding: 0.875rem;
        font-size: 13px;
        border-radius: 10px;
    }

    .second-column {
        gap: 1.5rem;
    }

    .contact-info-cards {
        gap: 1.5rem;
    }

    .contact-info-card {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
    }

    .blog-cta {
        margin: 0.5rem 1rem;
        width: 90%;
        padding: 0.875rem 2rem;
        font-size: var(--size-body);
    }

    .owner-header {
        gap: 1rem;
        margin-bottom: 1.25rem;
    }

    .owner-avatar img {
        width: 64px;
        height: 64px;
    }

    .owner-status {
        padding: 3px 6px;
        border-radius: 10px;
    }

    .status-indicator {
        width: 6px;
        height: 6px;
    }

    .status-text {
        font-size: 9px;
    }

    .owner-name {
        font-size: 1.125rem;
    }

    .owner-title {
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
    }

    .owner-credentials {
        flex-direction: column;
        gap: 0.5rem;
    }

    .credential {
        font-size: 12px;
        padding: 3px 6px;
    }

    .owner-quote {
        padding: 1rem;
        border-radius: 10px;
        margin-bottom: 1.25rem;
    }

    .quote-icon {
        font-size: 1.5rem;
        width: 24px;
        height: 24px;
    }

    .quote-text {
        font-size: 13px;
        padding-top: 0.5rem;
    }


    .unified-contact-card {
        padding: 1.5rem 1.25rem;
    }

    .unified-contact-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .unified-contact-title {
        font-size: 1.125rem;
    }

    .unified-contact-subtitle {
        font-size: 13px;
    }

    .contact-methods {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .contact-method {
        gap: 1rem;
        padding: 0.25rem;
        border-radius: 10px;
    }

    .method-icon {
        width: 48px;
        height: 48px;
        border-radius: 8px;
    }

    .method-icon img {
        width: 24px;
        height: 24px;
    }

    .method-title {
        font-size: 13px;
        margin-bottom: 0.25rem;
    }

    .method-link {
        font-size: 13px;
        margin-bottom: 0.25rem;
    }

    .method-note {
        font-size: 12px;
    }

    .popup-container {
        margin: 0 1rem;
        width: calc(100% - 2rem);
        max-width: 400px;
    }

    .popup-content {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .popup-title {
        font-size: 1.375rem;
    }

    .popup-text {
        font-size: 13px;
    }

    .popup-features {
        gap: 0.75rem;
    }

    .popup-feature {
        gap: 0.5rem;
    }

    .feature-text {
        font-size: 13px;
    }

    .popup-actions {
        gap: 0.75rem;
        flex-direction: column;
    }

    .popup-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
        width: 100%;
    }

    .faq-section {
        padding: 2.5rem 0;
    }

    .faq-container {
        padding: 0 1rem;
    }

    .faq-header {
        margin-bottom: 2rem;
    }

    .faq-header .section-title {
        margin-bottom: 0.75rem;
    }

    .faq-subtitle {
        padding: 0 0.5rem;
    }

    .faq-content {
        max-width: 100%;
    }

    .faq-categories {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        padding: 0 0.25rem;
    }

    .faq-category-btn {
        padding: 0.625rem 1rem;
        border-radius: 12px;
    }

    .faq-questions {
        padding: 0;
    }

    .faq-item {
        margin-bottom: 0.875rem;
        border-radius: 12px;
    }

    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-question h3 {
        line-height: 1.4;
        padding-right: 0.5rem;
    }

    .faq-toggle {
        margin-left: 0.75rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding: 0.875rem 1.25rem 1.25rem;
    }

    .faq-answer p {
        line-height: 1.6;
    }

    .faq-cta {
        margin-top: 2rem;
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .faq-cta-content h3 {
        margin-bottom: 0.75rem;
    }

    .faq-cta-content p {
        margin-bottom: 1rem;
    }

    .brand-logo {
        max-width: 120px;
        height: auto;
        display: block;
        margin: 0;
    }

    .why-us-list li {
        padding-left: var(--space-6);
        margin-bottom: var(--space-3);
    }

    .nav-contact-info {
        gap: 5px !important;

    }

    .top-contact-container {
        padding: 0 !important;
    }

    .contact-container {
        padding-bottom: 0;
    }

    .service-review-popup {
        padding: 0;
    }

}

@media (max-width: 400px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .blog-hero-article p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-categories-row {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        gap: 0.5rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .blog-categories-row::-webkit-scrollbar {
        display: none;
    }

    .category-button-child {
        flex-shrink: 0;
    }

    .blog-hero-article {
        min-width: 95%;
    }
}