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

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

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

/* Ensure logo is always visible */
.nav-logo .logo-img,
.logo-img,
.app-preview,
.screenshot-img {
    opacity: 1 !important;
    transition: none !important;
}

:root {
    /* ArcFlow App Theme Colors */
    --background-color: #1A1F25;
    --card-color: #242C37;
    --primary-gradient-start: #4B6EFF;
    --primary-gradient-end: #9C55FF;
    --secondary-color: #31E981;
    --text-color: #FFFFFF;
    --accent-color: #36C5F0;
    --error-color: #FF5252;
    --success-color: #31E981;
    --warning-color: #FFA726;
    --info-color: #2196F3;
    --border-color: rgba(255, 255, 255, 0.1);
    --text-secondary: rgba(255, 255, 255, 0.7);
    
    /* Responsive units */
    --nav-height: 70px;
    --container-padding: 20px;
    --mobile-padding: 16px;
    --section-padding: 80px;
    --mobile-section-padding: 60px;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(75, 110, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 110, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

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

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-gradient-start);
}

.btn-outline:hover {
    background: var(--primary-gradient-start);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(26, 31, 37, 0.95);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    min-height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity:1 !important;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    opacity: 1 !important; /* Ensure logo is always visible */
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.download-btn {
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    padding: 8px 16px;
    border-radius: 6px;
    color: var(--text-color);
}

.download-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(75, 110, 255, 0.3);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 6px;
    z-index: 1001;
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(75, 110, 255, 0.1), rgba(156, 85, 255, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Ensure hamburger is always visible */
    opacity: 1 !important;
    visibility: visible !important;
}

.hamburger:hover {
    background: linear-gradient(135deg, rgba(75, 110, 255, 0.2), rgba(156, 85, 255, 0.2));
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(75, 110, 255, 0.3);
}

.bar {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px auto;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    /* Fallback solid color */
    background-color: #4B6EFF;
    background: linear-gradient(90deg, var(--primary-gradient-start), var(--primary-gradient-end));
    border-radius: 2px;
    position: relative;
    transform-origin: center;
    opacity: 1;
    visibility: visible;
}

/* Simplified pseudo-elements for better visibility */
.bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(75, 110, 255, 0.3), rgba(156, 85, 255, 0.3));
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hamburger:hover .bar::before {
    opacity: 1;
}

.hamburger.active {
    background: linear-gradient(135deg, rgba(255, 82, 82, 0.2), rgba(255, 167, 38, 0.2));
    transform: rotate(180deg);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: linear-gradient(90deg, #FF5252, #FFA726);
}

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

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: linear-gradient(90deg, #FF5252, #FFA726);
}

.hamburger.active .bar::before {
    opacity: 0;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--card-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(75, 110, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(156, 85, 255, 0.1) 0%, transparent 50%);
}

/* Light Animated Patterns */
.animated-patterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0.3;
}

.pattern-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    opacity: 0.1;
    filter: blur(20px);
}

.pattern-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: float 15s infinite ease-in-out;
    animation-delay: 0s;
}

.pattern-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation: float 18s infinite ease-in-out;
    animation-delay: 2s;
}

.pattern-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation: float 12s infinite ease-in-out;
    animation-delay: 4s;
}

.pattern-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 5%;
    animation: float 20s infinite ease-in-out;
    animation-delay: 1s;
}

.pattern-5 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    right: 20%;
    animation: float 16s infinite ease-in-out;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-20px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(10px, -50px) rotate(180deg);
    }
    75% {
        transform: translate(30px, 20px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Additional wave animation */
.wave-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: linear-gradient(90deg, transparent, rgba(75, 110, 255, 0.05), transparent);
    animation: wave 15s linear infinite;
    opacity: 0.2;
    z-index: 0;
}

.wave-pattern:nth-child(2) {
    bottom: 20px;
    animation-delay: -5s;
    opacity: 0.1;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 80vh;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line-1,
.title-line-2 {
    display: block;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gradient-start);
}

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

.hero-image {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
    padding: 0 40px;
}

.app-preview {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    object-fit: cover;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--background-color), var(--background-color)) padding-box,
                linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end)) border-box;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    display: block;
}

.app-preview::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.7;
    filter: blur(2px);
}

.floating-card {
    position: absolute;
    background: rgba(36, 44, 55, 0.95);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    animation: float 6s ease-in-out infinite;
    border: 2px solid var(--primary-gradient-start);
    backdrop-filter: blur(15px);
    width: 180px;
    z-index: 20;
    transform: translateZ(0);
    will-change: transform;
    pointer-events: none;
}

.floating-card i {
    color: var(--primary-gradient-start);
    font-size: 1rem;
    filter: drop-shadow(0 0 8px rgba(75, 110, 255, 0.5));
}

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

.card-2 {
    top: 40%;
    right: -15%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 15%;
    left: -5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--background-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-color);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-card.featured-feature {
    border: 2px solid var(--primary-gradient-start);
    position: relative;
    background: linear-gradient(135deg, var(--card-color) 0%, rgba(75, 110, 255, 0.05) 100%);
}

.feature-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    color: var(--text-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--text-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

/* Pricing Section */
.pricing {
    padding: 60px 0;
    background: var(--card-color);
}

.user-count-control {
    background: transparent;
    padding: 0.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    width: 100%;
    margin: 0.75rem 0;
}

.user-count-control label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.1rem;
}

.pricing-slider {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
}

.pricing-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-gradient-start);
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(75, 110, 255, 0.5);
}

.pricing-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-gradient-start);
    cursor: pointer;
    border: none;
    box-shadow: 0 1px 4px rgba(75, 110, 255, 0.5);
}

.user-count-display {
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.pricing-card {
    background: var(--background-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--primary-gradient-start);
    transform: scale(1.03);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    color: var(--text-color);
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.price {
    margin-bottom: 0.25rem;
}

.price-per-user {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.period {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
    padding: 0 0.5rem;
}

.pricing-features li {
    padding: 0.4rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.pricing-features i {
    color: var(--success-color);
    font-size: 0.8rem;
}

/* Responsive Pricing Styles */
@media (max-width: 768px) {
    .pricing {
        padding: 40px 0;
    }
    
    .user-count-control {
        padding: 0.4rem;
        margin: 0.6rem 0;
    }
    
    .user-count-control label {
        font-size: 0.7rem;
    }
    
    .user-count-display {
        font-size: 0.8rem;
    }
    
    .pricing-grid {
        gap: 0.8rem;
        margin-top: 0;
    }
    
    .pricing-card {
        padding: 1rem;
    }
    
    .amount {
        font-size: 1.8rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-features {
        margin: 0.8rem 0;
        padding: 0 0.25rem;
    }
    
    .pricing-features li {
        padding: 0.25rem 0;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .user-count-control {
        padding: 0.3rem;
        margin: 0.5rem 0;
    }
    
    .pricing-slider {
        height: 3px;
    }
    
    .pricing-slider::-webkit-slider-thumb {
        width: 14px;
        height: 14px;
    }
    
    .pricing-slider::-moz-range-thumb {
        width: 14px;
        height: 14px;
    }
    
    .user-count-control label {
        font-size: 0.65rem;
    }
    
    .user-count-display {
        font-size: 0.75rem;
    }
    
    .pricing-card {
        padding: 0.8rem;
    }
    
    .amount {
        font-size: 1.6rem;
    }
    
    .pricing-header h3 {
        font-size: 1.1rem;
    }
    
    .pricing-features li {
        padding: 0.2rem 0;
        font-size: 0.75rem;
    }
    
    .pricing-features {
        margin: 0.6rem 0;
    }
}

/* Screenshots Section */
.screenshots {
    padding: 6rem 0;
    background: var(--card-color);
}

.screenshots-container {
    position: relative;
    margin-top: 3rem;
}

.screenshots-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden; /* Prevent vertical scrolling */
    padding: 1rem 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    /* Prevent hover glitches */
    will-change: scroll-position;
    transform: translateZ(0); /* Hardware acceleration */
    /* Ensure horizontal-only movement */
    height: auto;
    max-height: none;
    flex-direction: row;
    align-items: stretch;
}

.screenshots-grid::-webkit-scrollbar {
    display: none; /* WebKit browsers */
}

/* Screenshot Navigation Buttons */
.screenshot-nav-btn {
    position: absolute;
    top: -60px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    border: none;
    border-radius: 50%;
    color: var(--text-color);
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(75, 110, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(75, 110, 255, 0.4);
}

.screenshot-nav-left {
    right: 50px;
}

.screenshot-nav-right {
    right: 10px;
}

.screenshot-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(1);
}

.screenshot-nav-btn:disabled:hover {
    transform: scale(1);
    box-shadow: 0 3px 10px rgba(75, 110, 255, 0.3);
}

.screenshot-item {
    background: var(--background-color);
    border-radius: 15px;
    padding: 0.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--border-color);
    flex: 0 0 280px; /* Fixed width for horizontal scrolling */
    min-width: 280px;
    scroll-snap-align: start;
    /* Prevent hover glitches */
    will-change: transform;
    transform: translateZ(0); /* Hardware acceleration */
    /* Ensure horizontal-only movement */
    height: auto;
    max-height: none;
    overflow: hidden;
    position: relative;
}

.screenshot-item:hover {
    transform: scale(1.02); /* Scale instead of vertical movement */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.screenshot-img {
    width: 100%;
    height: auto;
    min-height: 250px;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: none;
    border: none;
    object-fit: contain;
    background: var(--background-color);
    padding: 10px;
    /* Prevent vertical movement */
    display: block;
    position: relative;
    vertical-align: top;
}

/* Responsive Styles for Screenshots */
@media (max-width: 767px) {
    .screenshots-container {
        margin-top: 2rem;
    }
    
    .screenshots-grid {
        gap: 0.5rem;
        padding: 0.5rem 1rem; /* Add horizontal padding for better mobile spacing */
        scroll-padding: 1rem; /* Add scroll padding for better snap behavior */
        overflow-y: hidden; /* Ensure no vertical scrolling on mobile */
        height: auto;
        max-height: none;
    }
    
    .screenshot-item {
        flex: 0 0 calc(100vw - 4rem); /* Full width minus container padding */
        min-width: calc(100vw - 4rem);
        max-width: calc(100vw - 4rem);
        padding: 0.5rem;
        margin: 0 0.5rem;
        scroll-snap-align: center; /* Center snap for better mobile experience */
    }
    
    .screenshot-item img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }
    
    /* Hide navigation buttons on mobile */
    .screenshot-nav-btn {
        display: none;
    }
}

/* Download Section */
.download {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--card-color) 0%, var(--background-color) 100%);
    text-align: center;
}

.download-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.download-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.download-btn-store {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--card-color);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    justify-content: center;
    flex: 1;
    min-width: 150px;
    max-width: 180px;
}

.download-btn-store:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.download-btn-store i {
    font-size: 2rem;
    color: var(--primary-gradient-start);
}

.store-text {
    text-align: left;
}

.store-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.store-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--background-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-color);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-gradient-start);
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-item p a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.contact-item p a:hover {
    color: var(--text-secondary);
    text-decoration: underline;
}

.contact-form {
    background: var(--card-color);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gradient-start);
}

/* WhatsApp Chat Interface */
.whatsapp-chat-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.whatsapp-chat-container.active {
    display: flex;
    animation: chatSlideUp 0.3s ease-out;
}

.whatsapp-chat-header {
    background: #25D366;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.whatsapp-chat-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.online-status {
    font-size: 12px;
    opacity: 0.8;
}

.whatsapp-chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-left: auto;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.2s;
}

.whatsapp-chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.whatsapp-chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    display: flex;
    margin-bottom: 10px;
}

.message.sent {
    justify-content: flex-end;
}

.message.received {
    justify-content: flex-start;
}

.message-content {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 18px;
    position: relative;
}

.message.sent .message-content {
    background: #25D366;
    color: white;
    border-bottom-right-radius: 5px;
}

.message.received .message-content {
    background: white;
    color: #333;
    border-bottom-left-radius: 5px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.message-time {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 5px;
    display: block;
}

.whatsapp-chat-input {
    padding: 15px;
    background: white;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.whatsapp-chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
}

.whatsapp-chat-input input:focus {
    border-color: #25D366;
}

.send-btn {
    width: 40px;
    height: 40px;
    background: #25D366;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.send-btn:hover {
    background: #128C7E;
}

/* WhatsApp Toggle Button */
.whatsapp-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #25D366;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsapp-float 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-toggle:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: notificationPulse 2s infinite;
}

.whatsapp-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 2px solid #25D366;
    border-radius: 50%;
    animation: whatsapp-pulse-ring 2s infinite;
    z-index: -1;
}

.whatsapp-pulse-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 2px solid #25D366;
    border-radius: 50%;
    animation: whatsapp-pulse-ring 2s infinite 0.5s;
    z-index: -2;
}

@keyframes chatSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes notificationPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes whatsapp-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes whatsapp-pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Footer */
.footer {
    background: var(--card-color);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.footer-logo-center {
    text-align: center;
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--primary-gradient-start);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-gradient-start);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Mobile-First Base Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 8px;
    }
    
    /* Enhanced responsive header */
    .navbar {
        padding: 0;
        margin: 0;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-container {
        padding: 1rem 20px;
        margin: 0 auto;
        min-height: 60px;
        gap: 1rem;
    }
    
    .nav-logo {
        margin: 0;
        padding: 0.25rem 0;
    }
    
    .nav-logo .logo-text {
        margin-left: 0.5rem;
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }
    
    .logo-img {
        margin: 0;
        width: clamp(32px, 8vw, 40px);
        height: clamp(32px, 8vw, 40px);
    }
    
    /* Enhanced hamburger button */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        background: linear-gradient(135deg, rgba(75, 110, 255, 0.15), rgba(156, 85, 255, 0.15));
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 6px;
        z-index: 1001;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 8px;
        width: 36px;
        height: 36px;
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(75, 110, 255, 0.2);
    }
    
    .hamburger:hover {
        background: linear-gradient(135deg, rgba(75, 110, 255, 0.25), rgba(156, 85, 255, 0.25));
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(75, 110, 255, 0.4);
    }
    
    /* Improved hero section for mobile */
    .hero {
        padding: 80px 0 50px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .title-line-1,
    .title-line-2 {
        display: block;
        line-height: 1.1;
    }
    
    .title-line-1 {
        margin-bottom: 0.2rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        line-height: 1.5;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        width: 100%;
        max-width: none;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
        flex-wrap: nowrap;
        flex-direction: row;
        display: flex;
        width: 100%;
        overflow-x: auto;
    }
    
    .stat-item {
        min-width: 70px;
        flex: 1;
        text-align: center;
        white-space: nowrap;
        padding: 0.5rem 0.25rem;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }
    
    .stat-item:hover {
        background-color: rgba(75, 110, 255, 0.1);
    }
    
    .stat-number {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .stat-label {
        font-size: clamp(0.75rem, 2.5vw, 0.9rem);
    }
    
    /* Better app preview on mobile */
    .hero-image {
        width: 100%;
        padding: 0 20px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        max-width: none;
        overflow: hidden;
    }
    
    .app-preview {
        width: 100%;
        max-width: 350px;
        height: auto;
        margin: 0 auto;
        border-radius: 15px;
        object-fit: cover;
        display: block;
        z-index: 1;
    }
    
    /* Mobile floating cards - 1 left, 2 right arrangement */
    .floating-card {
        position: absolute;
        margin: 0;
        animation: float 6s ease-in-out infinite;
        width: 140px;
        max-width: 140px;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(75, 110, 255, 0.3);
        z-index: 20;
        backdrop-filter: blur(10px);
        background: rgba(36, 44, 55, 0.9);
        font-size: 0.65rem;
        padding: 0.4rem 0.6rem;
        border-radius: 8px;
    }
    
    .card-1, .card-2, .card-3 {
        position: absolute;
        z-index: 20;
    }
    
    /* Card 1 - Left side bottom */
    .card-1 {
        bottom: 20%;
        left: 5%;
    }
    
    /* Card 2 - Right side top */
    .card-2 {
        top: 15%;
        right: 5%;
    }
    
    /* Card 3 - Right side bottom */
    .card-3 {
        bottom: 20%;
        right: 5%;
    }
    
    /* Better section spacing */
    .features, .pricing, .screenshots, .download, .contact {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    /* Improved grid layouts */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
        margin: 0;
        max-width: none;
        width: 100%;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Reorder pricing cards on mobile - Starter first */
    .pricing-card:nth-child(1) {
        order: 1; /* Starter */
    }
    
    .pricing-card:nth-child(2) {
        order: 2; /* Professional */
    }
    
    .pricing-card:nth-child(3) {
        order: 3; /* Enterprise */
    }
    
    .pricing-card {
        padding: 1.5rem;
        margin: 0;
        max-width: none;
        width: 100%;
    }
    
    .pricing-card.featured {
        transform: none;
        order: 2; /* Professional stays in middle */
    }
    
    .screenshots-grid {
        gap: 1rem;
        padding: 0.5rem 0;
    }
    
    .screenshot-item {
        flex: 0 0 220px;
        min-width: 220px;
        padding: 0.875rem;
    }
    
    .screenshot-img {
        width: 100%;
        height: auto;
        min-height: 200px;
        object-fit: contain;
        background: var(--background-color);
        padding: 8px;
        border-radius: 8px;
    }
    
    /* Better contact section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form, .contact-info {
        max-width: none;
        margin: 0;
        width: 100%;
    }
    
    /* Improved download section - Single row layout */
    .download-buttons {
        flex-direction: row;
        gap: 0.8rem;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .download-btn-store {
        flex: 1;
        min-width: 120px;
        max-width: 140px;
        padding: 0.8rem 1rem;
        justify-content: center;
    }
    
    .download-btn-store i {
        font-size: 1.5rem;
    }
    
    .store-name {
        font-size: 1rem;
    }
    
    .store-label {
        font-size: 0.7rem;
    }
    
    /* Better footer */
    .footer-content {
        text-align: center;
        gap: 0.2rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Responsive Design - Mobile First Approach */

/* Large Desktop (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1.5fr;
        gap: 5rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .screenshots-grid {
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .screenshot-item {
        flex: 0 0 300px;
        min-width: 300px;
    }
    
    .app-preview {
        max-width: 600px;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .app-preview {
        max-width: 500px;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr 1.5fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid {
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .screenshot-item {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .pricing-grid {
        gap: 1.5rem;
    }
    
    .screenshots-grid {
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .screenshot-item {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .contact-content {
        gap: 3rem;
    }
    
    .app-preview {
        max-width: 400px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .floating-card {
        position: relative;
        margin: 1rem 0;
        animation: none;
    }
    
    .card-1, .card-2, .card-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    
    .features-grid {
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .screenshot-item {
        flex: 0 0 280px;
        min-width: 280px;
        gap: 1.5rem;
    }
    
    .pricing-grid {
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .screenshot-item {
        flex: 0 0 280px;
        min-width: 280px;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        grid-column: span 2;
        order: -1;
    }
    
    .screenshots-grid {
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .screenshot-item {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .download-buttons {
        gap: 1.5rem;
    }
    
    .footer-content {
        text-align: center;
        gap: 0.2rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .app-preview {
        max-width: 350px;
    }
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--card-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 1rem 0;
        z-index: 999;
        height: calc(100vh - 70px);
        overflow-y: auto;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.4rem 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.4rem 1rem;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: var(--background-color);
        transform: translateX(5px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }
    
    .title-line-1,
    .title-line-2 {
        display: block;
        line-height: 1.1;
    }
    
    .title-line-1 {
        margin-bottom: 0.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .pricing-card.featured {
        transform: none;
    }

    .screenshots-grid {
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .screenshot-item {
        flex: 0 0 280px;
        min-width: 280px;
        gap: 1.5rem;
    }
    
    .screenshot-img {
        width: 100%;
        height: auto;
        min-height: 180px;
        object-fit: contain;
        background: var(--background-color);
        padding: 8px;
        border-radius: 8px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }

    .download-buttons {
        flex-direction: row;
        gap: 0.6rem;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .download-btn-store {
        flex: 1;
        min-width: 100px;
        max-width: 120px;
        padding: 0.7rem 0.8rem;
        justify-content: center;
    }
    
    .download-btn-store i {
        font-size: 1.3rem;
    }
    
    .store-name {
        font-size: 0.9rem;
    }
    
    .store-label {
        font-size: 0.65rem;
    }

    .footer-content {
        text-align: center;
        gap: 0.2rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
    
    .app-preview {
        width: 100%;
        max-width: none;
        height: auto;
        margin: 0;
    }
    
    /* Floating cards adjustments for mobile */
    .floating-card {
        position: relative;
        margin: 0.75rem auto;
        animation: none;
        width: 160px;
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
        box-shadow: 0 0 10px rgba(75, 110, 255, 0.3);
    }
    
    .card-1, .card-2, .card-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
}

/* Mobile Medium (480px - 575px) */
@media (max-width: 575px) and (min-width: 480px) {
    
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0.875rem 18px;
        margin: 0 auto;
        min-height: 58px;
    }

    /* Mobile Medium (480px - 575px) floating cards adjustments */
    .floating-card {
        width: 130px;
        max-width: 130px;
        padding: 0.4rem 0.55rem;
        font-size: 0.63rem;
    }
    
    /* Card positioning for medium mobile */
    .card-1 {
        bottom: 19%;
        left: 4%;
    }
    
    .card-2 {
        top: 13%;
        right: 4%;
    }
    
    .card-3 {
        bottom: 19%;
        right: 4%;
    }

    .hero-title {
        font-size: 1.9rem;
    }
    
    .title-line-1,
    .title-line-2 {
        display: block;
        line-height: 1.1;
    }
    
    .title-line-1 {
        margin-bottom: 0.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 0.8rem;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .stat-number {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
    }
    
    .stat-label {
        font-size: clamp(0.7rem, 2.5vw, 0.8rem);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0 0.75rem;
    }
    
    .feature-card {
        padding: 1rem;
        width: 100%;
        max-width: none;
        margin: 0;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.25rem;
        width: 100%;
        max-width: none;
        margin: 0;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .screenshots-grid {
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .screenshot-item {
        flex: 0 0 280px;
        min-width: 280px;
        gap: 1.5rem;
    }
    
    .screenshot-img {
        width: 100%;
        height: auto;
        min-height: 160px;
        object-fit: contain;
        background: var(--background-color);
        padding: 6px;
        border-radius: 8px;
    }
    
    .download-content h2 {
        font-size: 2rem;
    }
    
    .download-content p {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
    }
    
    .footer-content {
        gap: 0.2rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
    
    .app-preview {
        width: 100%;
        max-width: none;
        height: auto;
        margin: 0;
    }
}

/* Mobile Small (320px - 479px) */
@media (max-width: 479px) {
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0.75rem 16px;
        margin: 0 auto;
        min-height: 56px;
    }
    
    .nav-logo .logo-text {
        font-size: 1.25rem;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }

    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.1;
    }
    
    .title-line-1,
    .title-line-2 {
        display: block;
        line-height: 1.1;
    }
    
    .title-line-1 {
        margin-bottom: 0.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons {
        gap: 0.75rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .stat-number {
        font-size: clamp(1.3rem, 4vw, 1.6rem);
    }
    
    .stat-label {
        font-size: clamp(0.65rem, 2vw, 0.75rem);
    }
    
    .app-preview {
        width: 100%;
        max-width: none;
        height: auto;
        margin: 0;
        border-radius: 15px;
    }
    
    /* Mobile Small (320px - 479px) floating cards adjustments */
    .floating-card {
        width: 120px;
        max-width: 120px;
        padding: 0.35rem 0.5rem;
        font-size: 0.6rem;
    }
    
    .floating-card i {
        font-size: 0.7rem;
    }
    
    /* Card positioning for small mobile */
    .card-1 {
        bottom: 18%;
        left: 3%;
    }
    
    .card-2 {
        top: 12%;
        right: 3%;
    }
    
    .card-3 {
        bottom: 18%;
        right: 3%;
    }

    .features {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .feature-card {
        padding: 0.75rem;
        width: 100%;
        max-width: none;
        margin: 0;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 1.25rem;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .feature-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
        top: -8px;
        right: 15px;
    }

    .pricing {
        padding: 60px 0;
    }
    
    .pricing-grid {
        gap: 1rem;
    }
    
    .pricing-card {
        padding: 1rem;
        width: 100%;
        max-width: none;
        margin: 0;
    }
    
    .pricing-header h3 {
        font-size: 1.25rem;
    }
    
    .amount {
        font-size: 2.25rem;
        background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        display: inline-block;
    }
    
    .currency {
        font-size: 1.25rem;
    }
    
    .period {
        font-size: 0.9rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }

    .screenshots {
        padding: 60px 0;
    }
    
    .screenshots-grid {
        gap: 1rem;
        padding: 0.5rem 0;
    }
    
    .screenshot-item {
        flex: 0 0 200px;
        min-width: 200px;
    }
    
    .screenshot-item {
        padding: 1rem;
    }
    
    .screenshot-img {
        width: 100%;
        height: auto;
        min-height: 200px;
        object-fit: contain;
        background: var(--background-color);
        padding: 8px;
        border-radius: 8px;
    }
    
    .download {
        padding: 60px 0;
    }
    
    .download-content h2 {
        font-size: 1.8rem;
    }
    
    .download-content p {
        font-size: 1rem;
    }
    
    .download-btn-store {
        padding: 0.875rem 1.5rem;
        width: 100%;
        max-width: none;
    }
    
    .store-name {
        font-size: 1.1rem;
    }
    
    .store-label {
        font-size: 0.75rem;
    }

    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        gap: 1.5rem;
    }
    
/* Mobile Responsive for Chat and Buttons */
@media (max-width: 767px) {
    .whatsapp-chat-container {
        width: calc(100vw - 40px);
        height: 400px;
        bottom: 70px;
        right: 20px;
        left: 20px;
    }
    
    .whatsapp-toggle {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-pulse-ring,
    .whatsapp-pulse-ring-2 {
        width: 45px;
        height: 45px;
    }
}
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-item i {
        font-size: 1.25rem;
        width: 35px;
    }
    
    .contact-item h4 {
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        gap: 0.2rem;
    }
    
    .footer-logo-center .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-links a {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile (below 320px) */
@media (max-width: 319px) {
    
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0.625rem 12px;
        margin: 0 auto;
        min-height: 54px;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .title-line-1,
    .title-line-2 {
        display: block;
        line-height: 1.1;
    }
    
    .title-line-1 {
        margin-bottom: 0.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .app-preview {
        width: 100%;
        max-width: none;
        height: auto;
        margin: 0;
    }
    
    /* Extra small mobile floating cards */
    .floating-card {
        width: 100px;
        max-width: 100px;
        padding: 0.3rem 0.4rem;
        font-size: 0.55rem;
    }
    
    .floating-card i {
        font-size: 0.6rem;
    }
    
    /* Tighter positioning for extra small screens */
    .card-1 {
        bottom: 16%;
        left: 2%;
    }
    
    .card-2 {
        top: 10%;
        right: 2%;
    }
    
    .card-3 {
        bottom: 16%;
        right: 2%;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .feature-card {
        padding: 0.875rem;
        width: 100%;
        max-width: none;
        margin: 0;
    }
    
    .pricing-card {
        padding: 0.875rem;
        width: 100%;
        max-width: none;
        margin: 0;
    }
    
    .screenshot-img {
        width: 100%;
        height: auto;
        min-height: 150px;
        object-fit: contain;
        background: var(--background-color);
        padding: 6px;
        border-radius: 8px;
    }
}

/* Landscape Orientation Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 2rem;
    }
    
    .app-preview {
        max-width: 200px;
        width: 200px;
        height: 200px;
    }
    
    .floating-card {
        position: relative;
        margin: 0.5rem;
        animation: none;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img,
    .app-preview,
    .screenshot-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .app-preview {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .hero-buttons,
    .download-buttons,
    .contact-form,
    .social-links,
    .back-to-top-btn,
    .progress-bar {
        display: none !important;
    }
    
    .hero,
    .features,
    .pricing,
    .screenshots,
    .download,
    .contact,
    .footer {
        padding: 20px 0;
        page-break-inside: avoid;
    }
    
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0.5rem 0.5rem;
    }
    
    .pricing-grid,
    .screenshots-grid {
        gap: 1rem;
        padding: 0.5rem 0;
    }
    
    .screenshot-item {
        flex: 0 0 180px;
        min-width: 180px;
    }
    
    .feature-card,
    .pricing-card,
    .screenshot-item {
        break-inside: avoid;
        margin-bottom: 20px;
    }
}

/* Feature Detail Pages */
.feature-detail {
    padding: 120px 0 80px;
    background: var(--background-color);
    min-height: 100vh;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--primary-gradient-start);
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.feature-header {
    text-align: center;
    margin-bottom: 4rem;
}

.feature-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.feature-icon-large i {
    font-size: 3rem;
    color: var(--text-color);
}

.feature-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.feature-badge-large {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    color: var(--text-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-screenshots {
    margin-bottom: 4rem;
}

.feature-screenshots h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.feature-content {
    margin-bottom: 4rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.content-main h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.content-main h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.content-main p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-list i {
    color: var(--success-color);
    font-size: 0.9rem;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.platform-item {
    background: var(--card-color);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.platform-item:hover {
    transform: translateY(-3px);
}

.platform-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.platform-item span {
    font-size: 0.9rem;
    color: var(--text-color);
}

.sidebar-card {
    background: var(--card-color);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.sidebar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.stat-item {
    text-align: center;
    margin-bottom: 1.5rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gradient-start);
}

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

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.related-features {
    margin-top: 4rem;
}

.related-features h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.related-item {
    background: var(--card-color);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.related-item i {
    font-size: 2.5rem;
    color: var(--primary-gradient-start);
    margin-bottom: 1rem;
}

.related-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.related-item p {
    color: var(--text-secondary);
}

/* Responsive Feature Detail Pages */
@media (max-width: 768px) {
    .feature-detail {
        padding: 100px 0 60px;
    }
    
    .feature-header h1 {
        font-size: 2rem;
    }
    
    .feature-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon-large i {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* Video Sections */
.videos {
    padding: 80px 0;
    background: var(--background-color);
}

.videos .section-header {
    margin-bottom: 3rem;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    width: 100%;
    max-width: 800px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: var(--card-color);
    border: 1px solid var(--border-color);
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    border-radius: 18px;
    z-index: -1;
    opacity: 0.7;
    filter: blur(2px);
}

.video-content {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-content video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
    object-fit: cover;
}

.video-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

/* Reel Style Creative Video Section - HIDDEN */
.video-reels {
    display: none !important;
}

.video-reels .section-header {
    margin-bottom: 3rem;
}

.reels-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reel-item {
    text-align: center;
}

.reel-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: var(--background-color);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.reel-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    border-radius: 18px;
    z-index: -1;
    opacity: 0.7;
    filter: blur(2px);
}

.reel-content {
    position: relative;
    padding-top: 177.78%; /* 9:16 Aspect Ratio for vertical videos */
}

.reel-content video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
    object-fit: cover;
}

.reel-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

.reel-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Cloud Services Section */
.cloud-services {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-color) 0%, #1E252B 100%);
    position: relative;
    overflow: hidden;
}

.cloud-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(75, 110, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(156, 85, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cloud-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.cloud-card {
    background: var(--card-color);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cloud-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gradient-start), var(--primary-gradient-end));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.cloud-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cloud-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.cloud-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
}

.cloud-icon.google-cloud {
    background: linear-gradient(135deg, #4285F4, #34A853);
}

.cloud-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

.cloud-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.cloud-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.cloud-price .currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.cloud-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gradient-start);
}

.cloud-price .period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.cloud-price .pay-as-use {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    background: linear-gradient(135deg, var(--secondary-color), #28D982);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cloud-features {
    list-style: none;
    margin-bottom: 25px;
}

.cloud-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 1rem;
}

.cloud-features i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.setup-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(75, 110, 255, 0.1);
    border: 1px solid rgba(75, 110, 255, 0.3);
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 0.9rem;
    color: var(--primary-gradient-start);
}

.setup-badge i {
    color: #FFD700;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.service-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.service-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.cloud-benefits {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.pricing-explanation {
    margin-top: 40px;
}

.explanation-card {
    background: var(--card-color);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.explanation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), #28D982);
}

.explanation-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #28D982);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 25px;
}

.explanation-content h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 30px;
}

.explanation-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.explanation-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(75, 110, 255, 0.1);
    border: 1px solid rgba(75, 110, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
}

.explanation-note i {
    color: var(--primary-gradient-start);
    font-size: 1.2rem;
    margin-top: 2px;
}

.explanation-note p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Cloud Services */
@media (max-width: 768px) {
    .cloud-services {
        padding: 60px 0;
    }
    
    .cloud-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .cloud-card {
        padding: 25px;
    }
    
    .cloud-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cloud-card h3 {
        font-size: 1.5rem;
    }
    
    .cloud-price .amount {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cloud-benefits {
        flex-direction: column;
        gap: 10px;
    }
    
    .explanation-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explanation-card {
        padding: 25px;
    }
    
    .explanation-content h4 {
        font-size: 1.5rem;
    }
}

/* Enhanced Contact Form Styles - Compact Version */
.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 6px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gradient-start);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(75, 110, 255, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
    font-size: 0.85rem;
}

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

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

.error-message {
    color: var(--error-color);
    font-size: 0.75rem;
    margin-top: 4px;
    display: none;
}

.error-message.show {
    display: block;
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
    border-color: var(--error-color);
    background: rgba(255, 82, 82, 0.05);
}

.contact-form input.success,
.contact-form select.success,
.contact-form textarea.success {
    border-color: var(--success-color);
    background: rgba(49, 233, 129, 0.05);
}

.privacy-notice {
    margin: 15px 0;
}

.checkbox-label {
    display: block;
    cursor: pointer;
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.3;
    margin: 0;
}

.checkbox-label input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin: 0 6px 0 0;
    cursor: pointer;
    accent-color: var(--primary-gradient-start);
    vertical-align: middle;
}

.checkbox-label a {
    color: var(--primary-gradient-start);
    text-decoration: none;
}

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

.form-messages {
    margin: 15px 0;
}

.success-message,
.error-message-general {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.success-message {
    background: rgba(49, 233, 129, 0.1);
    border: 1px solid rgba(49, 233, 129, 0.3);
    color: var(--success-color);
}

.error-message-general {
    background: rgba(255, 82, 82, 0.1);
    border: 1px solid rgba(255, 82, 82, 0.3);
    color: var(--error-color);
}

.success-message i,
.error-message-general i {
    font-size: 1rem;
    flex-shrink: 0;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form Validation States */
.form-group {
    position: relative;
    margin-bottom: 16px;
}

.form-group.has-error .form-label {
    color: var(--error-color);
}

.form-group.has-success .form-label {
    color: var(--success-color);
}

/* Compact Contact Form Layout */
.contact-form {
    max-width: 100%;
}

.contact-form .form-group:last-of-type {
    margin-bottom: 20px;
}

/* Responsive Form Styles - Compact */
@media (max-width: 768px) {
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form select,
    .contact-form textarea {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .form-label {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }
    
    .checkbox-label {
        font-size: 0.7rem;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 12px;
        height: 12px;
        margin: 0 4px 0 0;
    }
    
    .success-message,
    .error-message-general {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    
    .form-group {
        margin-bottom: 14px;
    }
    
    .privacy-notice {
        margin: 12px 0;
    }
    
    .form-messages {
        margin: 12px 0;
    }
}

/* Privacy Policy Modal */
.privacy-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.privacy-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.privacy-modal-content {
    background: var(--card-color);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    position: relative;
    animation: slideIn 0.3s ease;
}

.privacy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    color: white;
}

.privacy-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.privacy-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.privacy-modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-gradient-start) transparent;
}

.privacy-modal-body::-webkit-scrollbar {
    width: 6px;
}

.privacy-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.privacy-modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-gradient-start);
    border-radius: 3px;
}

.privacy-section {
    margin-bottom: 25px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--primary-gradient-start);
    display: inline-block;
}

.privacy-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

.privacy-section ul {
    margin: 10px 0;
    padding-left: 20px;
}

.privacy-section li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 5px;
}

.privacy-section a {
    color: var(--primary-gradient-start);
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}

.privacy-section strong {
    color: var(--text-color);
}

.privacy-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.privacy-modal-footer .btn {
    min-width: 150px;
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Privacy Modal */
@media (max-width: 768px) {
    .privacy-modal.show {
        padding: 10px;
    }
    
    .privacy-modal-content {
        max-height: 90vh;
    }
    
    .privacy-modal-header {
        padding: 20px;
    }
    
    .privacy-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .privacy-modal-body {
        padding: 20px;
        max-height: 70vh;
    }
    
    .privacy-modal-footer {
        padding: 15px 20px;
    }
    
    .privacy-section h4 {
        font-size: 1rem;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .privacy-modal-header {
        padding: 15px;
    }
    
    .privacy-modal-body {
        padding: 15px;
    }
    
    .privacy-modal-footer {
        padding: 15px;
    }
    
    .privacy-modal-header h3 {
        font-size: 1.2rem;
    }
}

/* Responsive Video Styles */
@media (max-width: 768px) {
    .videos {
        padding: 60px 0;
    }
    
    .video-reels {
        padding: 60px 0;
    }
    
    .reels-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reel-content {
        padding-top: 177.78%; /* Maintain aspect ratio on mobile */
    }
}


/* Success Modal Styles */
.success-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.success-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-modal-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.5s ease-out;
    color: white;
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
    animation: bounceIn 0.6s ease-out 0.2s both;
}

.success-icon i {
    background: white;
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.success-modal-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
    animation: slideInUp 0.6s ease-out 0.3s both;
}

.success-modal-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: slideInUp 0.6s ease-out 0.4s both;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    animation: slideInUp 0.6s ease-out 0.5s both;
}

.success-actions .btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.success-actions .btn-primary {
    background: #4CAF50;
    color: white;
}

.success-actions .btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.success-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

/* Confetti Container */
#confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10001;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #f39c12;
    animation: confetti-fall 3s linear infinite;
}

.confetti:nth-child(2n) {
    background: #e74c3c;
    animation-delay: 0.1s;
}

.confetti:nth-child(3n) {
    background: #3498db;
    animation-delay: 0.2s;
}

.confetti:nth-child(4n) {
    background: #2ecc71;
    animation-delay: 0.3s;
}

.confetti:nth-child(5n) {
    background: #9b59b6;
    animation-delay: 0.4s;
}

.confetti:nth-child(6n) {
    background: #f1c40f;
    animation-delay: 0.5s;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .success-modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .success-icon {
        font-size: 3rem;
    }
    
    .success-modal-content h3 {
        font-size: 1.5rem;
    }
    
    .success-modal-content p {
        font-size: 1rem;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .success-actions .btn {
        width: 100%;
    }
}


/* Brand Logo Slider Section */
.brand-slider-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.brand-slider-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.brand-slider-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.brand-slider-section .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.brand-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.brand-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 40px;
    align-items: center;
}

.brand-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.logo-placeholder:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.logo-placeholder i {
    font-size: 2rem;
    transition: all 0.3s ease;
}

.logo-placeholder:hover i {
    transform: scale(1.1);
}

.brand-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-placeholder:hover .brand-logo-img {
    transform: scale(1.1);
}

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

/* Pause animation on hover */
.brand-slider:hover .brand-track {
    animation-play-state: paused;
}

/* Gradient overlays for fade effect */
.brand-slider::before,
.brand-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.brand-slider::before {
    left: 0;
    background: linear-gradient(to right, rgba(102, 126, 234, 1), transparent);
}

.brand-slider::after {
    right: 0;
    background: linear-gradient(to left, rgba(102, 126, 234, 1), transparent);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .brand-slider-section {
        padding: 60px 0;
    }
    
    .brand-slider-section .section-header h2 {
        font-size: 2rem;
    }
    
    .brand-slider-section .section-header p {
        font-size: 1rem;
    }
    
    .brand-slider {
        padding: 20px 0;
    }
    
    .brand-track {
        gap: 30px;
    }
    
    .brand-logo {
        width: 70px;
        height: 70px;
    }
    
    .logo-placeholder {
        width: 70px;
        height: 70px;
    }
    
    .brand-logo-img {
        width: 35px;
        height: 35px;
    }
    
    .brand-slider::before,
    .brand-slider::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .brand-slider-section {
        padding: 40px 0;
    }
    
    .brand-slider-section .section-header h2 {
        font-size: 1.5rem;
    }
    
    .brand-track {
        gap: 20px;
    }
    
    .brand-logo {
        width: 60px;
        height: 60px;
    }
    
    .logo-placeholder {
        width: 60px;
        height: 60px;
    }
    
    .brand-logo-img {
        width: 30px;
        height: 30px;
    }
}


/* Dark Mode Toggle Button */
.dark-mode-toggle {
    background: none;
    border: none;
    color: #667eea;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.dark-mode-toggle:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: scale(1.1);
}

.dark-mode-toggle i {
    transition: transform 0.3s ease;
}

.dark-mode-toggle:hover i {
    transform: rotate(20deg);
}

/* Dark Mode Styles */
[data-theme='dark'] {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    --accent-primary: #667eea;
    --accent-secondary: #764ba2;
    --border-color: #333333;
    --shadow-color: rgba(0, 0, 0, 0.5);
}

[data-theme='dark'] body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

[data-theme='dark'] .navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

[data-theme='dark'] .nav-link {
    color: var(--text-primary);
}

[data-theme='dark'] .nav-link:hover {
    color: var(--accent-primary);
}

[data-theme='dark'] .hero {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

[data-theme='dark'] .hero h1 {
    color: var(--text-primary);
}

[data-theme='dark'] .hero p {
    color: var(--text-secondary);
}

[data-theme='dark'] .section {
    background-color: var(--bg-primary);
}

[data-theme='dark'] .section:nth-child(even) {
    background-color: var(--bg-secondary);
}

[data-theme='dark'] .section-header h2 {
    color: var(--text-primary);
}

[data-theme='dark'] .section-header p {
    color: var(--text-secondary);
}

[data-theme='dark'] .feature-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme='dark'] .feature-card:hover {
    background: var(--bg-secondary);
    box-shadow: 0 10px 30px var(--shadow-color);
}

[data-theme='dark'] .feature-card h3 {
    color: var(--text-primary);
}

[data-theme='dark'] .feature-card p {
    color: var(--text-secondary);
}

[data-theme='dark'] .pricing-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme='dark'] .pricing-card:hover {
    background: var(--bg-secondary);
    box-shadow: 0 15px 40px var(--shadow-color);
}

[data-theme='dark'] .pricing-card.featured {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: white;
}

[data-theme='dark'] .pricing-card h3 {
    color: var(--text-primary);
}

[data-theme='dark'] .pricing-card.featured h3 {
    color: white;
}

[data-theme='dark'] .pricing-card .price {
    color: var(--text-primary);
}

[data-theme='dark'] .pricing-card.featured .price {
    color: white;
}

[data-theme='dark'] .pricing-card .price-currency {
    color: var(--text-secondary);
}

[data-theme='dark'] .pricing-card.featured .price-currency {
    color: rgba(255, 255, 255, 0.8);
}

[data-theme='dark'] .pricing-card .price-period {
    color: var(--text-muted);
}

[data-theme='dark'] .pricing-card.featured .price-period {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme='dark'] .pricing-card .feature-list li {
    color: var(--text-secondary);
}

[data-theme='dark'] .pricing-card.featured .feature-list li {
    color: rgba(255, 255, 255, 0.9);
}

[data-theme='dark'] .cloud-services {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

[data-theme='dark'] .cloud-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme='dark'] .cloud-card:hover {
    background: var(--bg-secondary);
    box-shadow: 0 15px 40px var(--shadow-color);
}

[data-theme='dark'] .cloud-card h3 {
    color: var(--text-primary);
}

[data-theme='dark'] .cloud-card p {
    color: var(--text-secondary);
}

[data-theme='dark'] .cloud-price {
    color: var(--accent-primary);
}

[data-theme='dark'] .contact-form {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}

[data-theme='dark'] .form-group label {
    color: var(--text-primary);
}

[data-theme='dark'] .form-group input,
[data-theme='dark'] .form-group textarea,
[data-theme='dark'] .form-group select {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme='dark'] .form-group input:focus,
[data-theme='dark'] .form-group textarea:focus,
[data-theme='dark'] .form-group select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

[data-theme='dark'] .form-group input::placeholder,
[data-theme='dark'] .form-group textarea::placeholder {
    color: var(--text-muted);
}

[data-theme='dark'] .brand-slider-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

[data-theme='dark'] .brand-slider {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme='dark'] .brand-slider-section .section-header h2 {
    color: #ffffff;
}

[data-theme='dark'] .brand-slider-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

[data-theme='dark'] .logo-placeholder {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

[data-theme='dark'] .brand-slider::before {
    background: linear-gradient(to right, rgba(102, 126, 234, 1), transparent);
}

[data-theme='dark'] .testimonials-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

[data-theme='dark'] .testimonials-section .section-header h2 {
    color: #ffffff;
}

[data-theme='dark'] .testimonials-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

[data-theme='dark'] .testimonial-content {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme='dark'] .testimonial-content:hover {
    background: rgba(255, 255, 255, 1);
}

[data-theme='dark'] .testimonial-text {
    color: #333;
}

[data-theme='dark'] .author-info h4 {
    color: #333;
}

[data-theme='dark'] .author-info span {
    color: #666;
}

[data-theme='dark'] .dot {
    background: rgba(255, 255, 255, 0.5);
}

[data-theme='dark'] .dot.active {
    background: #ffffff;
}

[data-theme='dark'] .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

[data-theme='dark'] .footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

[data-theme='dark'] .footer h3 {
    color: var(--text-primary);
}

[data-theme='dark'] .footer p,
[data-theme='dark'] .footer li {
    color: var(--text-secondary);
}

[data-theme='dark'] .footer a {
    color: var(--text-secondary);
}

[data-theme='dark'] .footer a:hover {
    color: var(--accent-primary);
}

[data-theme='dark'] .success-modal-content {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
}

[data-theme='dark'] .privacy-modal-content {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

[data-theme='dark'] .privacy-modal-header h3 {
    color: var(--text-primary);
}

[data-theme='dark'] .privacy-section h4 {
    color: var(--text-primary);
}

[data-theme='dark'] .privacy-section p {
    color: var(--text-secondary);
}

[data-theme='dark'] .privacy-section a {
    color: var(--accent-primary);
}

/* Smooth transitions for theme changes */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Mobile responsive for dark mode toggle */
@media (max-width: 768px) {
    .dark-mode-toggle {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}


/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

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

.testimonials-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.testimonials-section .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 350px;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.quote-icon {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #667eea;
    flex-shrink: 0;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-section .section-header h2 {
        font-size: 2rem;
    }
    
    .testimonials-section .section-header p {
        font-size: 1rem;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
        min-width: 280px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-section .section-header h2 {
        font-size: 1.5rem;
    }
    
    .testimonial-content {
        padding: 25px 15px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .quote-icon {
        font-size: 1.5rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
}
a.nav-link-btn.download-btn {
    text-decoration: none !important;
}