:root {
    --primary-color: #9C27B0;
    --secondary-color: #E040FB;
    --accent-color: #CE93D8;
    --dark-bg: #1a1625;
    --card-bg: #2a2535;
    --text-primary: #ffffff;
    --text-secondary: #b8b5c4;
    --cocktail-red: #E63946;
    --cocktail-orange: #F28C33;
    --cocktail-yellow: #F2CC33;
    --cocktail-green: #4DCC66;
    --cocktail-blue: #3399E6;
    --cocktail-purple: #9966CC;
    --gradient-1: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-2: linear-gradient(135deg, var(--cocktail-purple), var(--cocktail-blue));
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Normal scroll behavior */
html, body {
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 22, 37, 0.95);
    backdrop-filter: blur(12px);
    z-index: 800;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 700;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.logo-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 900;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    transform-origin: center;
}

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

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

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

.btn-primary {
    background: var(--gradient-1);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(156, 39, 176, 0.4);
    color: #ffffff;
}

/* Contact form submit button */
.contact-form .btn-primary {
    width: 200px;
    margin: 0 auto;
    display: block;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 48px;
    min-width: 140px;
    font-size: 16px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-scale.animate {
    opacity: 1;
    transform: scale(1);
}

/* Hero section elements should be visible by default */
.hero-text {
    opacity: 1;
    transform: translateX(0);
    padding-right: 200px;
    max-width: 600px;
}

.hero-image {
    opacity: 1;
    transform: translateX(0);
}

/* App Store Button */
.app-store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    height: 48px;
    min-width: 140px;
}

.app-store-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.app-store-button-lg {
    height: 60px;
    padding: 14px 32px;
    min-width: 180px;
    border-radius: 14px;
}

.app-store-button-lg .apple-logo svg {
    width: 28px;
    height: 28px;
}

.app-store-button-lg .download-text {
    font-size: 10px;
}

.app-store-button-lg .store-text {
    font-size: 18px;
}

.app-store-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.apple-logo {
    display: flex;
    align-items: center;
    color: white;
}

.app-store-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 2px;
}

.download-text {
    font-size: 9px;
    font-weight: 300;
    color: white;
    line-height: 1;
}

.store-text {
    font-size: 15px;
    font-weight: 600;
    color: white;
    line-height: 1;
}

/* Hero Download Section */
.download-section {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-qr-code:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.qr-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: white;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.qr-text {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
    text-align: center;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 16px;
}

.hero-section {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

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

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary-color);
    top: 50%;
    right: -150px;
    animation-delay: 7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--cocktail-blue);
    bottom: -100px;
    left: 30%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    margin-left: -20px;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
    margin-left: -20px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    margin-left: -20px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-left: -20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    max-width: 200px;
    width: 100%;
    position: relative;
    z-index: 2;
    animation: floatPhone 4s infinite ease-in-out;
}

.phone-mockup img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 20px;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

.floating-card {
    position: absolute;
    background: var(--card-bg);
    padding: 6px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: floatCard 3s infinite ease-in-out;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 112px;
    height: 132px;
    overflow: hidden;
}

.card-1 {
    top: 0%;
    left: -30%;
    animation-delay: 0s;
}

.card-2 {
    top: 5%;
    right: -35%;
    animation-delay: 0.5s;
}

.card-3 {
    top: 60%;
    right: -15%;
    animation-delay: 1s;
}

.card-4 {
    bottom: 35%;
    left: -35%;
    animation-delay: 1.5s;
}

.card-5 {
    top: 25%;
    right: -10%;
    animation-delay: 2s;
}

.card-6 {
    top: 20%;
    left: -10%;
    animation-delay: 2.5s;
}

.card-7 {
    bottom: 25%;
    right: -35%;
    animation-delay: 3s;
}

.card-8 {
    bottom: 5%;
    left: -15%;
    animation-delay: 3.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(1deg); }
    50% { transform: translateY(-15px) rotate(0deg); }
    75% { transform: translateY(-8px) rotate(-1deg); }
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(0.5deg); }
    50% { transform: translateY(-10px) rotate(0deg); }
    75% { transform: translateY(-5px) rotate(-0.5deg); }
}

.cocktail-icon {
    font-size: 32px;
}

.cocktail-image {
    width: 100px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.features-section {
    padding: 80px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 64px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(156, 39, 176, 0.3);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    color: white;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
}

.qr-section {
    padding: 120px 0;
    background: var(--card-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.qr-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.qr-text h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
}

.qr-text p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.qr-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.qr-step {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.qr-code-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.qr-code-wrapper {
    background: white;
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.qr-code-image {
    width: 280px;
    height: 280px;
    display: none;
}

.qr-loader {
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(156, 39, 176, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.qr-helper-text {
    color: var(--text-secondary);
    font-size: 14px;
}

.cta-section {
    padding: 120px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}


.page-header {
    padding: 140px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, var(--card-bg) 0%, transparent 100%);
}

.page-header h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

.contact-section {
    padding: 40px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-method {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    height: 120px;
    align-items: center;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    color: white;
}

.method-info h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.method-info a,
.method-info p {
    color: var(--text-secondary);
    text-decoration: none;
}

.method-info a:hover {
    color: var(--text-primary);
}

.social-links-large h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.social-buttons {
    display: flex;
    gap: 12px;
}

.social-button {
    flex: 1;
    padding: 12px 16px;
    background: var(--card-bg);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 14px;
}

.social-button:hover {
    background: var(--gradient-1);
    transform: translateY(-2px);
}

.contact-form-wrapper {
    background: var(--card-bg);
    padding: 48px;
    border-radius: var(--border-radius);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    padding: 16px;
    border-radius: 12px;
    margin-top: 16px;
}

.form-message.success {
    background: rgba(77, 204, 102, 0.1);
    border: 1px solid var(--cocktail-green);
    color: var(--cocktail-green);
}

.form-message.error {
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid var(--cocktail-red);
    color: var(--cocktail-red);
}

.content-section {
    padding: 80px 0;
}

.content-wrapper {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.content-body {
    flex: 3;
    max-width: 800px;
}

.content-sidebar {
    flex: 1;
    position: sticky;
    top: 120px;
    height: fit-content;
    align-self: flex-start;
}

@media (max-width: 768px) {
    .content-section {
        padding: 40px 0;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 32px;
    }

    .content-sidebar {
        position: static;
        order: -1;
    }

    .content-body {
        max-width: 100%;
    }

    .page-header {
        padding: 100px 0 30px;
    }

    .page-header h1 {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .page-header p {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .content-section {
        padding: 20px 0;
    }

    .content-wrapper {
        gap: 24px;
    }

    .page-header {
        padding: 100px 0 24px;
    }

    .page-header h1 {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .page-header p {
        font-size: 14px;
    }

    .content-body h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .content-body h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .content-body p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .content-body ul, .content-body ol {
        margin-bottom: 16px;
    }

    .content-body li {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 8px;
    }
}


.content-body h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 48px 0 16px;
}

.content-body h2:first-child {
    margin-top: 0;
}

.content-body h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 32px 0 12px;
}

.content-body p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-body ul {
    color: var(--text-secondary);
    margin: 16px 0 16px 24px;
    line-height: 1.8;
}

.content-body a {
    color: var(--secondary-color);
    text-decoration: none;
}

.content-body a:hover {
    text-decoration: underline;
}

.cta-box {
    background: var(--card-bg);
    padding: 32px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 48px;
}

.cta-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.cta-box p {
    margin-bottom: 24px;
}

.content-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    align-self: flex-start;
}

.sidebar-card {
    background: var(--card-bg);
    padding: 24px;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
}

.sidebar-card h3,
.sidebar-card h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 12px;
}

.sidebar-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

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

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: rgba(26, 22, 37, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        transform: translateX(-100%);
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content,
    .qr-content,
    .contact-grid,
    .content-wrapper {
        display: grid;
        grid-template-columns: 1fr;
    }
    
    .content-sidebar {
        position: static;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .floating-card {
        display: none;
    }

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

    .section-title,
    .page-header h1 {
        font-size: 36px;
    }

    .content-sidebar {
        position: static;
    }
}

@media (min-width: 641px) and (max-width: 968px) {
    .floating-card {
        width: 112px;
        height: 132px;
        overflow: hidden;
    }

    .hero-image {
        max-width: 500px;
    }
}

@media (max-width: 640px) {
    .mobile-menu-toggle {
        display: flex !important;
    }

    .hero-section {
        min-height: auto;
        padding: 80px 0 40px;
        overflow: visible;
    }

    .hero-background {
        display: none !important;
    }

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

    .hero-title {
        font-size: 32px;
        text-align: center;
        margin-bottom: 16px;
        line-height: 1.2;
        margin-left: 0;
    }

    .hero-description {
        text-align: center;
        font-size: 16px;
        margin-bottom: 16px;
        line-height: 1.5;
        max-width: 100%;
        padding: 0 20px;
        margin-left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        max-width: 100%;
    }

    .hero-buttons {
        margin-left: 0;
    }

    .hero-stats {
        margin-left: 0;
    }

    .hero-image {
        order: 1;
        margin-top: -40px;
        margin-bottom: 16px;
        position: relative;
        width: 100%;
        max-width: 280px;
        height: 400px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        overflow: visible;
        padding-top: 20px;
    }

    .phone-mockup {
        max-width: 180px;
        width: 180px;
        height: auto;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .phone-mockup img {
        width: 100%;
        height: auto;
        max-height: 360px;
    }

    .floating-card {
        display: flex;
        position: absolute;
        background: var(--card-bg);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 4px;
        animation: floatCard 3s ease-in-out infinite;
        z-index: 1;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        width: 68px;
        height: 83px;
        overflow: hidden;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .floating-card.card-1 {
        top: 23%;
        right: -20%;
        animation-delay: 0s;
    }

    .floating-card.card-2 {
        top: 35%;
        right: -20%;
        animation-delay: 0.5s;
    }

    .floating-card.card-3 {
        top: 50%;
        right: -8%;
        animation-delay: 1s;
    }

    .floating-card.card-4 {
        bottom: 2%;
        left: 0%;
        animation-delay: 1.5s;
    }

    .floating-card.card-5 {
        top: 15%;
        right: -10%;
        animation-delay: 2s;
    }

    .floating-card.card-6 {
        top: 42%;
        left: -5%;
        animation-delay: 2.5s;
    }

    .floating-card.card-7 {
        bottom: 15%;
        right: -20%;
        animation-delay: 3s;
    }

    .floating-card.card-8 {
        bottom: 18%;
        left: -15%;
        animation-delay: 3.5s;
    }

    .cocktail-image {
        width: 60px;
        height: 75px;
        border-radius: 10px;
        object-fit: cover;
        display: block;
        flex-shrink: 0;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}

/* Language Selector Styles */
.language-selector {
    margin-left: 20px;
}

.language-btn {
    background: #f0f0f0;
    color: #666;
    border: 2px solid #ddd;
    padding: 6px 12px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
}

.language-btn.active {
    background: linear-gradient(135deg, #9C27B0, #E040FB);
    color: white;
    border-color: #9C27B0;
    box-shadow: 0 2px 8px rgba(156, 39, 176, 0.3);
}

.language-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.language-btn.active:hover {
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.4);
}

@media (max-width: 768px) {
    .language-selector {
        margin-left: 0;
        margin-top: 10px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
        padding-right: 0;
    }

    .floating-card {
        display: block;
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 8px;
        animation: floatCard 3s ease-in-out infinite;
        z-index: 10;
    }

    .floating-card.card-1 {
        top: 23%;
        left: -15%;
        animation-delay: 0s;
    }

    .floating-card.card-2 {
        top: 35%;
        right: -20%;
        animation-delay: 0.5s;
    }

    .floating-card.card-3 {
        top: 50%;
        right: -10%;
        animation-delay: 1s;
    }

    .floating-card.card-4 {
        top: 5%;
        right: -20%;
        animation-delay: 1.5s;
    }

    .floating-card.card-5 {
        top: 15%;
        right: -10%;
        animation-delay: 2s;
    }

    .floating-card.card-6 {
        top: 42%;
        left: -5%;
        animation-delay: 2.5s;
    }

    .floating-card.card-7 {
        bottom: 15%;
        right: -25%;
        animation-delay: 3s;
    }

    .floating-card.card-8 {
        bottom: 18%;
        left: -15%;
        animation-delay: 3.5s;
    }

    .cocktail-image {
        width: 50px;
        height: 60px;
        border-radius: 8px;
        object-fit: cover;
    }

    .phone-mockup {
        max-width: 250px;
        max-height: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .floating-card {
        display: block;
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 8px;
        animation: floatCard 3s ease-in-out infinite;
        z-index: 10;
    }

    .floating-card.card-1 {
        top: 23%;
        left: -15%;
        animation-delay: 0s;
    }

    .floating-card.card-2 {
        top: 35%;
        right: -20%;
        animation-delay: 0.5s;
    }

    .floating-card.card-3 {
        top: 50%;
        right: -10%;
        animation-delay: 1s;
    }

    .floating-card.card-4 {
        top: 5%;
        right: -20%;
        animation-delay: 1.5s;
    }

    .floating-card.card-5 {
        top: 15%;
        right: -10%;
        animation-delay: 2s;
    }

    .floating-card.card-6 {
        top: 42%;
        left: -5%;
        animation-delay: 2.5s;
    }

    .floating-card.card-7 {
        bottom: 15%;
        right: -25%;
        animation-delay: 3s;
    }

    .floating-card.card-8 {
        bottom: 18%;
        left: -15%;
        animation-delay: 3.5s;
    }

    .cocktail-image {
        width: 50px;
        height: 60px;
        border-radius: 8px;
        object-fit: cover;
    }
}

/* Social Media Icons */
.icon-instagram {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: all 0.3s ease;
}

.icon-instagram:hover {
    fill: #E4405F;
    transform: scale(1.1);
}

