:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #d1fae5;
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-light: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    --dark: #111827;
    --light: #ffffff;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.25s ease;
}

/* ===================== LOGO STYLES ===================== */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-img {
        height: 35px;
        max-width: 130px;
    }
}

.logo i,
.logo-text {
    display: none;
}
/* ===================== END LOGO STYLES ===================== */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--light);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
    padding-top: 80px;
    font-display: swap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    opacity: 1 !important;
}

/* Fixed Header - No More Movement */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}


.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 5px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

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

/* Fixed Button Styles - Ensure They Don't Disappear */
.nav-login, .nav-cta, .btn, .btn-primary, .btn-secondary, .btn-hero-white {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-flex !important;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.nav-login {
    background: transparent;
    color: var(--dark);
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--gray-light);
    font-size: 0.9rem;
}

.nav-login:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--dark);
    cursor: pointer;
    z-index: 1002;
}

/* Hero Sections - Reduced Padding */
.hero {
    padding: 80px 0 60px;
    overflow: hidden;
    position: relative;
}

/* Home Hero */
.home-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.home-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.home-hero h2 {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 400;
}

/* Other Pages Hero */
.page-hero {
    text-align: center;
    padding: 100px 0 60px;
}

.page-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero h2 {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Hero Colors for Different Pages */
.page-hero.features-hero {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
}

.page-hero.features-hero h1,
.page-hero.features-hero h2 {
    color: white;
}

.page-hero.pricing-hero {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
}

.page-hero.pricing-hero h1,
.page-hero.pricing-hero h2 {
    color: white;
}

.page-hero.contact-hero {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
}

.page-hero.contact-hero h1,
.page-hero.contact-hero h2 {
    color: white;
}

/* Buttons - Fixed Styles */
.btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    opacity: 1 !important;
    visibility: visible !important;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

/* Button Hover Effect */
.btn-hover-effect {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hover-effect::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 ease;
    z-index: -1;
}

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

/* White Button for Hero */
.btn-hero-white {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
    border: 2px solid transparent;
    display: inline-flex !important;
}

.btn-hero-white:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    display: inline-flex !important;
}

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

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform-style: preserve-3d;
}

.hero-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transform: translateZ(20px);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-radius: 20px;
}

/* Enhanced QR Code Floating Animation */
.qr-float-left {
    position: absolute;
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 20;
    top: 30px;
    left: 30px;
    transform: translateZ(30px);
    animation: floatEnhanced 4s ease-in-out infinite;
}

.qr-float-left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

@keyframes floatEnhanced {
    0%, 100% {
        transform: translateY(0) translateZ(30px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) translateZ(30px) rotate(5deg);
    }
}

/* Client Logos - Always Color */
.client-logos {
    padding: 40px 0;
    background: var(--gray-light);
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.logo-scroll {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
}

.logo-item {
    min-width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-height: 50px;
    max-width: 100px;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 0.8;
    transition: var(--transition);
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Section Common */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-title p {
    color: var(--gray);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: white;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Use Cases - Big Images (5:4 Ratio) */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.use-case-item-modern {
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.use-case-image-modern {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.use-case-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.use-case-content-modern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    text-align: left;
}

.use-case-content-modern h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: white;
}

.use-case-content-modern p {
    font-size: 1rem;
    opacity: 0.9;
}

.use-case-item-modern:hover .use-case-image-modern img {
    transform: scale(1.05);
}

/* How It Works - Enhanced Numbers (NO PULSE EFFECT) */
.how-it-works-grid-new {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step-card-enhanced {
    text-align: center;
    flex: 0 1 300px;
    position: relative;
}

.step-number-enhanced {
    display: inline-block;
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    transition: var(--transition);
}

.step-card-enhanced:hover .step-number-enhanced {
    transform: scale(1.1) rotate(0deg);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

/* REMOVED PULSE EFFECT - Only hover shows */
.step-number-enhanced::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 50%, transparent 50%);
    background-size: 20px 2px;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    z-index: 0;
}

.step-card-enhanced:last-child .step-number-enhanced::after {
    display: none;
}

.step-image-enhanced {
    width: 200px;
    height: 355px;
    margin: 0 auto 25px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-image-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-image-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-card-enhanced h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.step-card-enhanced p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid var(--gray-light);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-light);
}

.faq-icon {
    transition: var(--transition);
    color: var(--primary);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 300px;
}

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

/* Benefits - 4 in one row */
.benefits-container {
    max-width: 1000px;
    margin: 40px auto 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-item {
    text-align: center;
    padding: 25px 20px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    position: relative;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
    color: white;
}

.benefit-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.benefit-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Dizmenu Experience - Images Only (No Title/Description) */
.experience-auto-scroll {
    padding: 60px 0;
    background: var(--gray-light);
}

.scroll-container {
    position: relative;
    margin-top: 40px;
    overflow: hidden;
    height: 320px;
}

.scroll-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: autoScrollHorizontal 40s linear infinite;
}

.scroll-container:hover .scroll-track {
    animation-play-state: paused;
}

@keyframes autoScrollHorizontal {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.experience-scroll-item {
    width: 180px;
    height: 320px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    flex-shrink: 0;
    position: relative;
}

.experience-scroll-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.experience-scroll-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.experience-scroll-item:hover img {
    transform: scale(1.1);
}

/* REMOVED Title and Description Styles for Dizmenu Experience */

/* Features Images Section */
.features-images {
    padding: 60px 0;
    background: var(--gray-light);
}

.features-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-image-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 300px;
    position: relative;
}

.feature-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), transparent);
    z-index: 1;
    transition: var(--transition);
}

.feature-image-card:hover::before {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), transparent);
}

.feature-image-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Pricing */
.pricing-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 30px auto 40px;
    background: white;
    padding: 6px;
    border-radius: 50px;
    max-width: 300px;
    box-shadow: var(--shadow);
}

.toggle-label {
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    flex: 1;
    text-align: center;
}

.toggle-label.active {
    background: var(--gradient-primary);
    color: white;
}

/* New Pricing Cards - Smaller */
.pricing-cards-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.pricing-card-new {
    background: white;
    padding: 25px 20px;
    border-radius: var(--radius);
    border: 2px solid var(--gray-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0 10px;
    position: relative;
    opacity: 1 !important;
}

.pricing-card-new:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.pricing-card-new.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
}

.popular-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    align-self: flex-start;
}

.premium-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6b7280, #9ca3af);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    align-self: flex-start;
}

.pricing-card-new h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.pricing-card-new > p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.price-container {
    margin: 15px 0;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-period {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 400;
}

.price-save {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 10px;
}

.pricing-features {
    list-style: none;
    margin: 20px 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray);
}

.pricing-features i {
    font-size: 0.9rem;
}

.pricing-features i.fa-check {
    color: var(--primary);
}

.pricing-features i.fa-times {
    color: #d1d5db;
}

.pricing-card-new .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 15px;
    padding: 12px;
    font-size: 0.9rem;
    opacity: 1 !important;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.contact-card {
    background: white;
    padding: 25px 20px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.contact-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Contact Section - 50/50 Layout */
.contact-section-split {
    padding: 60px 0;
}

.contact-container-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-image-side {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 600px;
}

.contact-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-side {
    padding: 40px;
}

.contact-form-side h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.contact-form-side > p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Contact Form - Clean Design */
.form-clean {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-clean {
    position: relative;
}

.input-clean {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    color: var(--dark);
}

.input-clean:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.input-clean::placeholder {
    color: var(--gray);
    opacity: 0.7;
}

select.input-clean {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 50px;
}

textarea.input-clean {
    min-height: 140px;
    resize: vertical;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Submit Button with Creative Hover */
.submit-btn-creative {
    background: var(--gradient-primary);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    opacity: 1 !important;
}

.submit-btn-creative::before {
    content: '';
    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.7s ease;
}

.submit-btn-creative:hover::before {
    left: 100%;
}

.submit-btn-creative:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

/* Final CTA - White Button */
.final-cta {
    padding: 70px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .btn-hero-white {
    background: white;
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
}

.final-cta .btn-hero-white:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.35);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ===================== FOOTER STYLES ===================== */
.footer {
    background: #111827;
    color: white;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* 30%-25%-20%-25% COLUMN DISTRIBUTION */
.footer-content {
    display: grid;
    grid-template-columns: 30% 25% 20% 25%; /* ← THIS IS THE KEY CHANGE */
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-section {
    margin-bottom: 20px;
}

/* Column 1 specific adjustments */
.footer-section:first-child {
    padding-right: 20px;
}

.logo-footer {
    display: block;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: all 0.25s ease;
}

/* Logo hover effect */
.logo-footer:hover .footer-logo {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Remove any logo text */
.logo-footer span,
.logo-footer .logo-text,
.logo-footer i {
    display: none;
}

.footer-description {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0; /* ← Changed from 15px to 0 */
    margin-bottom: 25px;
    max-width: 100%;
}

/* Social Media Styles for Column 1 */
.social-media {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-heading {
    font-size: 0.95rem;
    color: #d1d5db;
    margin-bottom: 15px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 0.9rem;
}

.social-icon:hover {
    background: #10b981;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #10b981;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.support-email {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.support-email i {
    color: #10b981;
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-size: 0.85rem;
}

/* Responsive Footer */
@media (max-width: 1100px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    /* Reset padding for responsive */
    .footer-section:first-child {
        padding-right: 0;
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-section:first-child {
        grid-column: span 1;
    }
    
    .footer-section {
        margin-bottom: 10px;
    }
    
    .footer-heading {
        margin-bottom: 20px;
    }
    
    .social-icons {
        gap: 8px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 30px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* =========================================== */
/* ADDITIONAL FIXES */
/* =========================================== */

/* Fix for button visibility */
body.loaded .btn,
body.loaded .btn-primary,
body.loaded .btn-secondary,
body.loaded .btn-hero-white,
body.loaded .nav-cta,
body.loaded .nav-login {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Enhanced text animation for hero */
.hero-text h1 {
    opacity: 1 !important;
}

/* Login Page Specific Styles */
.login-container {
    max-width: 450px;
    margin: 0 auto;
    padding: 50px 0;
}

.login-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.login-header {
    margin-bottom: 40px;
}

.login-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.login-header p {
    color: var(--gray);
    font-size: 1rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 10px;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--gray-light);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    transition: var(--transition);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.8rem;
    background: white;
    padding: 0 5px;
    color: var(--primary);
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 25px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray);
}

.forgot-password {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

.login-divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    color: var(--gray);
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-light);
}

.login-divider span {
    padding: 0 15px;
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    background: white;
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.login-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
    color: var(--gray);
}

.login-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* Spin animation for loading */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Page fade animation */
body.loaded {
    opacity: 1;
}

/* Prevent image layout shift */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================== CTA SECTION - UPDATED COLORS ===================== */
.cta-image-section {
    width: 100%;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cta-image-overlay {
    width: 95%;
    max-width: 1200px;
    min-height: 500px;
    background-image: url('https://zappp.app/dizimages/cta.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 30px;
    padding: 40px 40px; /* Reduced padding for MORE UP */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-main-text {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 20px; /* Reduced space */
    line-height: 1.1;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-top: 30px; /* MOVED MORE UP - from 40px to 30px */
    letter-spacing: -0.3px;
    
    /* GRADIENT TEXT COLOR - Using your website colors */
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 15px rgba(255, 255, 255, 0.3); /* White shadow for contrast */
}

.cta-image-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 2px; /* MOVED MORE UP - from 5px to 2px */
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Match Header Button Color */
.cta-image-buttons .btn-hero-white {
    background: var(--gradient-primary); /* Using your header button gradient */
    background: linear-gradient(135deg, #10b981 0%, #059669 100%); /* Your header color */
    color: white; /* White text like header button */
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4); /* Green shadow matching color */
}

.cta-image-buttons .btn-hero-white:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%); /* Darker on hover */
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.6);
}

.cta-image-buttons .btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-image-buttons .btn-hero-outline:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Optional: Add a subtle white overlay at bottom for better button visibility */
.cta-image-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    z-index: 1;
    pointer-events: none;
}

/* Ensure text and buttons are above overlay */
.cta-main-text,
.cta-image-buttons {
    z-index: 2;
}

/* For mobile - disable sticky effect */
@media (max-width: 768px) {
    .cta-image-section {
        padding: 40px 0;
    }
    
    .cta-image-overlay {
        background-attachment: scroll;
        min-height: 400px;
        padding: 30px 25px; /* Reduced on mobile too */
        width: 92%;
        border-radius: 20px;
    }
    
    .cta-main-text {
        font-size: 1.8rem;
        margin-top: 25px; /* More up on mobile */
        margin-bottom: 15px;
    }
    
    .cta-image-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 0; /* No margin on mobile */
    }
    
    .cta-image-buttons a {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 11px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cta-image-overlay {
        padding: 25px 20px; /* Reduced on mobile */
        min-height: 350px;
        border-radius: 18px;
    }
    
    .cta-main-text {
        font-size: 1.6rem;
        margin-top: 20px; /* More up on mobile */
        margin-bottom: 10px;
    }
    
    .cta-image-buttons a {
        max-width: 250px;
        padding: 10px 22px;
        font-size: 0.85rem;
    }
}

/* Adjust spacing around CTA */
.cta-image-section {
    margin-top: 40px;
    margin-bottom: 40px;
}
/* ===================== END CTA SECTION ===================== */

/* ===================== MOBILE RESPONSIVE FIXES ===================== */

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

@media (max-width: 768px) {
    /* Fix body padding for mobile */
    body {
        padding-top: 70px;
    }
    
    /* Mobile menu toggle - FIXED */
    .menu-toggle {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 1002;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 30px 40px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 1001;
        gap: 20px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 12px 0;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-login, .nav-cta {
        width: 100%;
        justify-content: center;
        margin: 5px 0;
    }
    
    /* Overlay when menu is open */
    .nav-links.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    /* Fix Home Hero Layout */
    .home-hero .hero-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .home-hero h1 {
        font-size: 2.5rem !important;
        text-align: center;
    }
    
    .home-hero h2 {
        font-size: 1.1rem !important;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-visual {
        width: 100% !important;
        height: 400px !important;
    }
    
    .qr-float-left {
        width: 100px !important;
        height: 100px !important;
        top: 20px !important;
        left: 20px !important;
    }
    
    /* Client Logos */
    .client-logos {
        padding: 30px 0 !important;
    }
    
    .logo-item {
        min-width: 100px !important;
        height: 50px !important;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .feature-card {
        padding: 25px 20px !important;
    }
    
    /* Use Cases Grid */
    .use-cases-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .use-case-image-modern {
        height: 250px !important;
    }
    
    /* How It Works - Stack vertically */
    .how-it-works-grid-new {
        flex-direction: column !important;
        align-items: center !important;
        gap: 60px !important;
    }
    
    .step-card-enhanced {
        flex: 0 1 100% !important;
        max-width: 300px;
    }
    
    .step-number-enhanced::after {
        display: none !important;
    }
    
    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    /* Pricing Cards */
    .pricing-cards-new {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        margin: 0 15px;
    }
    
    .pricing-card-new {
        margin: 0 !important;
    }
    
    /* FAQ */
    .faq-grid {
        margin: 30px auto 0 !important;
    }
    
    /* Contact Split Layout */
    .contact-container-split {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .contact-image-side {
        height: 300px !important;
        order: -1;
    }
    
    /* Input rows */
    .input-row {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    /* Footer Fixes */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }
    
    .footer-section:first-child {
        padding-right: 0 !important;
        grid-column: span 1 !important;
    }
    
    /* CTA Section */
    .cta-image-overlay {
        padding: 30px 20px !important;
        min-height: 350px !important;
    }
    
    .cta-main-text {
        font-size: 1.8rem !important;
        margin-top: 30px !important;
    }
    
    .cta-image-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-image-buttons a {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Experience Scroll */
    .scroll-container {
        height: 250px !important;
    }
    
    .experience-scroll-item {
        width: 140px !important;
        height: 250px !important;
    }
    
    /* WhatsApp button */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    /* Section padding */
    section {
        padding: 50px 0 !important;
    }
    
    .section-title h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    /* Extra small fixes */
    .home-hero h1 {
        font-size: 2rem !important;
    }
    
    .home-hero h2 {
        font-size: 1rem !important;
    }
    
    .hero-visual {
        height: 320px !important;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr !important;
    }
    
    .benefit-item {
        padding: 20px 15px !important;
    }
    
    .use-case-image-modern {
        height: 200px !important;
    }
    
    .step-image-enhanced {
        width: 160px !important;
        height: 285px !important;
    }
    
    .experience-scroll-item {
        width: 120px !important;
        height: 215px !important;
    }
    
    .footer {
        padding: 40px 0 20px !important;
    }
    
    .cta-main-text {
        font-size: 1.5rem !important;
        margin-top: 20px !important;
    }
    
    .cta-image-buttons a {
        max-width: 100%;
    }
    
    /* Pricing toggle */
    .pricing-toggle-container {
        flex-direction: column;
        width: 100%;
        max-width: 250px;
    }
    
    .toggle-label {
        width: 100%;
        text-align: center;
    }
}

/* Fix for images to prevent overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Ensure all buttons are visible */
.btn, .nav-cta, .nav-login {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-flex !important;
}

/* Mobile menu overlay fix */
@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
    }
}