/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e91e8c;
    --secondary-color: #6366f1;
    --dark-blue: #1e1b4b;
    --purple: #8b5cf6;
    --teal: #14b8a6;
    --light-bg: #f8f9ff;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-light: #64748b;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
    max-width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.desktop-menu {
    display: flex;
}

/* Mobile menu styles */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu {
    display: none;
}

/* Test - show mobile menu always on mobile for debugging */
@media (max-width: 768px) {
    .mobile-menu {
        display: block !important;
    }
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

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

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
    align-items: center;
}

.language-switcher .lang-option {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}



/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 50%, #1e3a8a 100%);
}

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

.hero-text {
    color: var(--white);
}

.accent-line {
    width: 220px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--purple) 100%);
    margin-bottom: 2rem;
    border-radius: 2px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-description p {
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color) 0%, #d946ef 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(233, 30, 140, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(233, 30, 140, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark-blue);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.detail-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.detail-links .btn {
    margin: 0;
}

.hero-image {
    position: relative;
    height: 500px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: 10%;
    right: 10%;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--teal);
    bottom: 10%;
    left: 10%;
}

/* Services Overview Section */
.services-overview {
    padding: 6rem 0;
    background: var(--light-bg);
}

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

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

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    color: var(--secondary-color);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card > h2 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem;
    color: var(--dark-blue) !important;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Support for dynamic heading tags from CMS */
.service-card-title {
    margin-bottom: 1rem;
    color: var(--dark-blue);
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-title h1 {
    font-size: 1.8rem !important;
    font-weight: 700;
    margin: 0;
}

.service-card-title h2 {
    font-size: 1.5rem !important;
    font-weight: 700;
    margin: 0;
}

.service-card-title h3 {
    font-size: 1.3rem !important;
    font-weight: 600;
    margin: 0;
}

.service-card-title p {
    font-size: 1rem !important;
    font-weight: 500;
    margin: 0;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-card-description,
.service-card-description p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-link {
    display: inline-block;
    color: var(--dark-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

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

/* Service Detail Sections */
.service-detail {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.weby-section {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: var(--white);
}

.aplikace-section {
    background: var(--white);
}

.grafika-section {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: var(--white);
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.detail-content.reverse {
    direction: rtl;
}

.detail-content.reverse > * {
    direction: ltr;
}

.detail-illustration {
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.detail-illustration img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.detail-illustration svg {
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 400px;
}

.detail-text h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

/* Support for dynamic heading tags from CMS */
.detail-title {
    margin-bottom: 1.5rem;
}

.detail-title h1 {
    font-size: 2.8rem !important;
    font-weight: 700;
    margin: 0;
}

.detail-title h2 {
    font-size: 2.3rem !important;
    font-weight: 700;
    margin: 0;
}

.detail-title h3 {
    font-size: 1.9rem !important;
    font-weight: 600;
    margin: 0;
}

.detail-title p {
    font-size: 1.2rem !important;
    font-weight: 500;
    margin: 0;
}

.detail-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.detail-description,
.detail-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.aplikace-section .detail-text {
    color: var(--text-dark);
}

.aplikace-section .detail-text p {
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-blue);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.contact-grid-centered {
    max-width: 800px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
}

.contact-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.contact-column p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.contact-column a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-column a:hover {
    color: var(--primary-color);
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.btn-chat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(90deg, var(--primary-color) 0%, #d946ef 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(233, 30, 140, 0.4);
    transition: all 0.3s;
}

.btn-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(233, 30, 140, 0.5);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .services-overview {
        padding: 4rem 0;
    }

    .service-detail {
        padding: 4rem 0;
    }

    .nav-menu {
        gap: 1rem;
    }

    .detail-text h2 {
        font-size: 2rem;
    }

    .detail-title h1 {
        font-size: 2.3rem;
    }

    .detail-title h2 {
        font-size: 2rem;
    }

    .detail-title h3 {
        font-size: 1.7rem;
    }

    .detail-title p {
        font-size: 1.1rem;
    }

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

    .detail-illustration {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 1rem 0;
        position: fixed;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
    }

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

    /* Hide desktop menu on mobile */
    .desktop-menu {
        display: none !important;
    }

    /* Show mobile hamburger button */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        gap: 4px;
        z-index: 1001;
        position: relative;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-dark);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    /* Hamburger animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

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

    /* Mobile dropdown menu */
    .mobile-menu {
        position: absolute !important;
        top: 100% !important;
        right: 0 !important;
        background: white !important;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        min-width: 200px;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-10px) !important;
        transition: all 0.3s ease;
        z-index: 1000 !important;
        padding: 1rem 0;
        display: block !important;
    }

    .mobile-menu.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    .mobile-menu a {
        display: block;
        padding: 12px 20px;
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 500;
        transition: background-color 0.3s ease;
    }

    .mobile-menu a:hover {
        background-color: var(--light-bg);
    }

    .mobile-language-switcher {
        display: flex;
        gap: 8px;
        padding: 12px 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        margin-top: 8px;
    }

    .mobile-language-switcher .lang-option {
        padding: 8px 16px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        border: 2px solid rgba(100, 116, 139, 0.2);
        min-width: 40px;
        text-align: center;
    }

    .mobile-language-switcher .lang-option:not(.active) {
        background: rgba(255, 255, 255, 0.95);
        color: var(--text-dark);
    }

    .mobile-language-switcher .lang-option.active {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border-color: var(--primary-color);
    }

    /* Removed all mobile menu styles */

    /* Removed mobile hamburger button styles */

    /* Mobile dropdown menu */
    .mobile-menu {
        position: absolute;
        top: 100%;
        right: 0;
        width: 250px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-menu-content {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-menu-content a {
        padding: 0.8rem 1rem;
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 500;
        border-radius: 8px;
        transition: all 0.3s ease;
        background: rgba(248, 250, 252, 0.5);
    }

    .mobile-menu-content a:hover {
        background: rgba(233, 30, 140, 0.1);
        color: var(--primary-color);
    }

    .mobile-language-switcher {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .logo {
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .logo img {
        height: 45px;
        width: auto;
        display: block;
    }

    .hero-section {
        padding-top: 100px !important;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 10px;
    }

    .navbar {
        padding: 0.8rem 0;
        background: rgba(255, 255, 255, 0.98);
    }

    .nav-wrapper {
        align-items: center;
        min-height: auto;
        justify-content: space-between;
    }

    .logo {
        font-size: 1.2rem;
        flex-shrink: 0;
        display: flex !important;
        align-items: center;
        gap: 6px;
    }

    .logo img {
        height: 45px;
        width: auto;
        display: block !important;
    }

    /* Desktop menu remains hidden on mobile */
    .desktop-menu {
        display: none !important;
    }

    .hero-section {
        padding-top: 130px !important;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 1rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-card-title {
        min-height: auto;
    }

    .service-card-title h1 {
        font-size: 1.5rem;
    }

    .service-card-title h2 {
        font-size: 1.3rem;
    }

    .service-card-title h3 {
        font-size: 1.1rem;
    }

    .service-card-title p {
        font-size: 0.9rem;
    }

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

    .detail-text h2 {
        font-size: 1.8rem;
    }

    .detail-title h1 {
        font-size: 2rem;
    }

    .detail-title h2 {
        font-size: 1.7rem;
    }

    .detail-title h3 {
        font-size: 1.4rem;
    }

    .detail-title p {
        font-size: 1rem;
    }

    .detail-text p {
        font-size: 1rem;
    }

    .detail-description,
    .detail-description p {
        font-size: 1rem;
    }

    .contact-section h2 {
        font-size: 2rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .logo img {
        height: 38px;
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }

    .mobile-menu-content {
        padding: 1rem;
        gap: 0.8rem;
    }

    .mobile-menu-content a {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }

    .hero-section {
        padding-top: 85px !important;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem 0;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(15px);
        box-shadow: 0 1px 15px rgba(0, 0, 0, 0.03);
    }

    .nav-wrapper {
        padding: 0 5px;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 1rem;
        display: flex !important;
        align-items: center;
        gap: 4px;
        flex-shrink: 0;
    }

    .logo img {
        height: 35px;
        width: auto;
        display: block !important;
    }

    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
    }

    .mobile-menu-content {
        padding: 0.8rem;
        gap: 0.6rem;
    }

    .mobile-menu-content a {
        padding: 0.6rem 0.7rem;
        font-size: 0.85rem;
    }

    .nav-menu {
        font-size: 0.75rem;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .nav-menu a {
        padding: 0.2rem 0.4rem;
        font-size: 0.75rem;
    }

    .language-switcher {
        gap: 4px;
    }

    .language-switcher .lang-option {
        padding: 4px 8px;
        font-size: 0.7rem;
        min-width: 35px;
    }

    .hero-section {
        padding-top: 120px !important;
        padding-bottom: 2rem;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .accent-line {
        width: 150px;
        margin-bottom: 1.5rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .service-card-title h1 {
        font-size: 1.3rem;
    }

    .service-card-title h2 {
        font-size: 1.1rem;
    }

    .service-card-title h3 {
        font-size: 1rem;
    }

    .service-card-title p {
        font-size: 0.85rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-card-description,
    .service-card-description p {
        font-size: 0.9rem;
    }

    .detail-text h2 {
        font-size: 1.5rem;
    }

    .detail-title h1 {
        font-size: 1.7rem;
    }

    .detail-title h2 {
        font-size: 1.5rem;
    }

    .detail-title h3 {
        font-size: 1.3rem;
    }

    .detail-title p {
        font-size: 0.95rem;
    }

    .detail-text p {
        font-size: 0.9rem;
    }

    .detail-description,
    .detail-description p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
    }

    .chat-button {
        bottom: 1rem;
        right: 1rem;
    }

    .btn-chat {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.hero-text,
.service-card,
.detail-text {
    animation: fadeInUp 0.8s ease-out;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.desktop-menu {
    display: flex;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile menu styles moved to media query */

/* Active state defined in media query */

/* Mobile menu content styles moved to media query */

/* Enhanced Language Switcher Styles */
.language-switcher {
    display: flex !important;
    gap: 8px !important;
    align-items: center;
    margin-left: 1rem;
}

.language-switcher .lang-option {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid rgba(100, 116, 139, 0.2);
    position: relative;
    min-width: 50px;
    justify-content: center;
}

.language-switcher .lang-option:not(.active) {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    border-color: rgba(30, 41, 59, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.language-switcher .lang-option.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 3px 12px rgba(233, 30, 140, 0.4);
}

.language-switcher .lang-option:not(.active):hover {
    background: rgba(233, 30, 140, 0.1);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.language-switcher .lang-option.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(233, 30, 140, 0.6);
}

/* Clean language switcher without flags - text only */

/* Automation Animation */
.automation-animation {
    max-width: 100%;
    width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.automation-animation:hover {
    transform: scale(1.05);
}

/* White separator section */
.white-separator {
    width: 100%;
    padding: 60px 0;
    background: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.white-rectangle {
    width: 100%;
    height: 80px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 0 20px;
}

/* Responsive white separator */
@media (max-width: 768px) {
    .white-separator {
        padding: 40px 0;
    }
    
    .white-rectangle {
        height: 60px;
        margin: 0 15px;
    }
}
