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

:root {
    /* Trust & Tech Color Palette */
    --primary: #2563EB;        /* Blue 600 - Main buttons/links */
    --secondary: #0EA5E9;      /* Cyan 500 - Highlights, secondary */
    --accent: #F59E0B;         /* Amber 500 - CTAs, special prices */
    --neutral-dark: #0F172A;   /* Dark text */
    --neutral-medium: #111827; /* Medium dark */
    --neutral-light: #E5E7EB;  /* Light borders */
    --neutral-bg: #F8FAFC;     /* Background surfaces */
    --success: #10B981;        /* Success states */
    --warning: #F59E0B;        /* Warning states */
    --error: #EF4444;          /* Error states */
    --info: #0EA5E9;           /* Info states */
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--neutral-dark);
    background-color: var(--neutral-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neutral-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 120px;
    width: 170px;
    object-fit: contain;
}

.nav-logo h2 {
    color: var(--primary);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-8);
}

.nav-link {
    text-decoration: none;
    color: var(--neutral-dark);
    font-weight: 500;
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--spacing-2);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background-color: rgba(37, 99, 235, 0.1);
}

.language-switcher {
    display: flex;
    gap: var(--spacing-2);
}

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

.lang-btn {
    background: none;
    border: 1px solid var(--neutral-light);
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--spacing-2);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.lang-btn:hover,
.lang-btn.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Hero Section */
.hero-section {
    height: 25vh;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    display: flex;
    align-items: center;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.3), rgba(37, 99, 235, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: var(--spacing-8);
}

.carousel-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-description {
    font-size: var(--font-size-lg);
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: var(--font-size-xl);
    padding: var(--spacing-4);
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: var(--spacing-6);
}

.carousel-btn.next {
    right: var(--spacing-6);
}

.carousel-indicators {
    position: absolute;
    bottom: var(--spacing-6);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-2);
}

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

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* App Section */
.app-section {
    padding: var(--spacing-8) 0;
    background: white;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-8);
    align-items: center;
    min-height: 350px;
}

.app-text h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: var(--spacing-6);
}

.app-text p {
    font-size: var(--font-size-lg);
    color: var(--neutral-medium);
    margin-bottom: var(--spacing-4);
    line-height: 1.7;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-6);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: var(--spacing-4);
    background: var(--neutral-bg);
    border-radius: var(--spacing-2);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-2px);
}

.feature i {
    color: var(--primary);
    font-size: var(--font-size-xl);
}

.feature span {
    font-weight: 500;
    color: var(--neutral-dark);
}

.app-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--spacing-4);
    box-shadow: var(--shadow-lg);
}

/* Download Section */
.download-section {
    padding: var(--spacing-8) 0;
    background: var(--neutral-bg);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-8);
    align-items: center;
}

.download-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--spacing-4);
    box-shadow: var(--shadow-lg);
}

.download-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

.download-text h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: var(--spacing-4);
}

.download-text p {
    font-size: var(--font-size-lg);
    color: var(--neutral-medium);
    line-height: 1.7;
}

.download-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

.download-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    padding: var(--spacing-6);
    background: white;
    border-radius: var(--spacing-3);
    text-decoration: none;
    color: var(--neutral-dark);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.download-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

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

.download-btn.android:hover {
    border-color: var(--success);
}

.download-btn.ios:hover {
    border-color: var(--neutral-dark);
}

.download-btn i {
    font-size: var(--font-size-3xl);
    color: var(--primary);
}

.download-btn.android i {
    color: var(--success);
}

.download-btn.ios i {
    color: var(--neutral-dark);
}

.download-btn div {
    text-align: left;
}

.download-btn span {
    display: block;
    font-weight: 600;
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-1);
}

.download-btn small {
    color: var(--neutral-medium);
    font-size: var(--font-size-sm);
}

/* About Section */
.about-section {
    padding: var(--spacing-8) 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-8);
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--spacing-4);
    box-shadow: var(--shadow-lg);
}

.about-text h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: var(--spacing-6);
}

.about-text p {
    font-size: var(--font-size-lg);
    color: var(--neutral-medium);
    margin-bottom: var(--spacing-4);
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-6);
}

.stat {
    text-align: center;
    padding: var(--spacing-4);
    background: var(--neutral-bg);
    border-radius: var(--spacing-3);
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-2px);
}

.stat h3 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-2);
}

.stat span {
    color: var(--neutral-medium);
    font-weight: 500;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: var(--spacing-6);
    right: var(--spacing-6);
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: var(--font-size-lg);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 1000;
    display: none;
}

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.back-to-top.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--neutral-dark);
    color: white;
    padding: var(--spacing-16) 0 var(--spacing-8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-8);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--spacing-4);
    color: white;
}

.footer-section p {
    color: var(--neutral-light);
    margin-bottom: var(--spacing-2);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-2);
}

.footer-section ul li a {
    color: var(--neutral-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-8);
    border-top: 1px solid var(--neutral-medium);
    color: var(--neutral-light);
}

/* Mobile First Responsive Design */
@media (max-width: 768px) {
    /* Navigation for Mobile */
    .nav-container {
        padding: 0 var(--spacing-3);
        height: 60px;
    }
    
    .nav-logo h2 {
        font-size: var(--font-size-lg);
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: var(--spacing-2);
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--neutral-dark);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .nav-menu.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-4);
        z-index: 1000;
    }
    
    .nav-menu.mobile-open .nav-link {
        padding: var(--spacing-3) 0;
        border-bottom: 1px solid var(--neutral-light);
        text-align: center;
    }
    
    .nav-menu.mobile-open .nav-link:last-child {
        border-bottom: none;
    }
    
    .language-switcher {
        gap: var(--spacing-1);
    }
    
    .lang-btn {
        padding: var(--spacing-1) var(--spacing-2);
        font-size: var(--font-size-sm);
    }
    
    /* Hero Section for Mobile */
    .hero-section {
        height: 30vh;
        margin-top: 60px;
    }
    
    .carousel-content {
        padding: var(--spacing-4);
    }
    
    .carousel-title {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--spacing-2);
    }
    
    .carousel-description {
        font-size: var(--font-size-sm);
    }
    
    .carousel-btn {
        display: none;
    }
    
    .carousel-indicators {
        bottom: var(--spacing-3);
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    /* Sections for Mobile */
    section {
        min-height: auto;
        padding: var(--spacing-6) 0;
    }
    
    .container {
        padding: 0 var(--spacing-3);
    }
    
    /* App Section for Mobile */
    .app-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-4);
        min-height: auto;
    }
    
    .app-text h2 {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--spacing-3);
    }
    
    .app-text p {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-3);
    }
    
    .app-image img {
        height: 250px;
        width: 100%;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: var(--spacing-3);
    }
    
    .feature {
        padding: var(--spacing-3);
    }
    
    .feature i {
        font-size: var(--font-size-lg);
    }
    
    /* Download Section for Mobile */
    .download-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-4);
    }
    
    .download-image img {
        height: 250px;
        width: 100%;
    }
    
    .download-text h2 {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--spacing-3);
    }
    
    .download-text p {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-4);
    }
    
    .download-links {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-3);
    }
    
    .download-btn {
        padding: var(--spacing-4);
    }
    
    .download-btn i {
        font-size: var(--font-size-2xl);
    }
    
    .download-btn span {
        font-size: var(--font-size-base);
    }
    
    .download-btn small {
        font-size: var(--font-size-xs);
    }
    
    /* About Section for Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-4);
    }
    
    .about-image img {
        height: 250px;
        width: 100%;
    }
    
    .about-text h2 {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--spacing-3);
    }
    
    .about-text p {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-3);
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-3);
    }
    
    .stat {
        padding: var(--spacing-3);
    }
    
    .stat h3 {
        font-size: var(--font-size-2xl);
    }
    
    /* Footer for Mobile */
    .footer {
        padding: var(--spacing-8) 0 var(--spacing-4);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-3);
    }
    
    .footer-section p {
        font-size: var(--font-size-sm);
    }
    
    .footer-section ul li {
        margin-bottom: var(--spacing-1);
    }
    
    .footer-section ul li a {
        font-size: var(--font-size-sm);
    }
    
    .footer-bottom {
        padding-top: var(--spacing-4);
        font-size: var(--font-size-sm);
    }
    
    /* Back to Top Button for Mobile */
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: var(--spacing-4);
        right: var(--spacing-4);
        font-size: var(--font-size-base);
    }
}

/* Tablet Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-section {
        height: 35vh;
    }
    
    .carousel-title {
        font-size: var(--font-size-3xl);
    }
    
    .carousel-description {
        font-size: var(--font-size-lg);
    }
    
    .app-content,
    .about-content,
    .download-content {
        gap: var(--spacing-6);
    }
    
    .app-image img,
    .about-image img,
    .download-image img {
        height: 350px;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small Mobile Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-2);
    }
    
    .nav-container {
        padding: 0 var(--spacing-2);
        height: 55px;
    }
    
    .nav-logo h2 {
        font-size: var(--font-size-base);
    }
    
    .hero-section {
        height: 25vh;
        margin-top: 55px;
    }
    
    .carousel-content {
        padding: var(--spacing-3);
    }
    
    .carousel-title {
        font-size: var(--font-size-xl);
        margin-bottom: var(--spacing-1);
    }
    
    .carousel-description {
        font-size: var(--font-size-xs);
    }
    
    .app-text h2,
    .download-text h2,
    .about-text h2 {
        font-size: var(--font-size-xl);
        margin-bottom: var(--spacing-2);
    }
    
    .app-text p,
    .download-text p,
    .about-text p {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-2);
    }
    
    .app-image img,
    .about-image img,
    .download-image img {
        height: 200px;
    }
    
    .feature {
        padding: var(--spacing-2);
    }
    
    .feature i {
        font-size: var(--font-size-base);
    }
    
    .download-btn {
        padding: var(--spacing-3);
    }
    
    .download-btn i {
        font-size: var(--font-size-xl);
    }
    
    .stat {
        padding: var(--spacing-2);
    }
    
    .stat h3 {
        font-size: var(--font-size-xl);
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: var(--spacing-3);
        right: var(--spacing-3);
        font-size: var(--font-size-sm);
    }
}

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

/* Section visibility for single page */
section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* Show all sections by default */
section {
    display: flex;
}

/* Floating Side Menu */
.floating-menu {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.floating-menu-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.floating-menu-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.floating-menu-toggle.active i {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.floating-menu-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.floating-menu-items.active {
    max-height: 300px;
    opacity: 1;
}

.floating-menu-item {
    background: white;
    color: var(--primary);
    padding: 12px 16px;
    border-radius: 8px;
    border: 2px solid var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.floating-menu-item:hover {
    background: var(--primary);
    color: white;
    transform: translateX(-8px);
    box-shadow: var(--shadow-lg);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-menu {
        right: 20px;
        bottom: 20px;
    }

    .floating-menu-toggle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .floating-menu-item {
        padding: 10px 14px;
        font-size: 12px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--neutral-light);
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    color: var(--primary);
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--neutral-dark);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary);
}

/* Form Styles */
.demo-form {
    padding: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-row.full {
    grid-template-columns: 1fr;
}

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

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--neutral-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid var(--neutral-light);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

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

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

.form-message {
    margin-top: 12px;
    font-size: 14px;
    text-align: center;
    min-height: 20px;
}

.form-message.success {
    color: var(--success);
}

.form-message.error {
    color: var(--error);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .modal-header {
        padding: 16px;
    }

    .demo-form {
        padding: 16px;
    }
}
