/* public/css/style.css - Premium Stylesheet for Mohaldar Enterprise */

/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* Design Tokens & CSS Variables */
:root {
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Theme: Dark Mode (Default for Premium Visuals) */
    --bg-primary: #0b0f19;
    --bg-secondary: #131a2c;
    --bg-tertiary: #1b253f;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Brand Accent Colors */
    --accent-pink: #ec4899;
    --accent-purple: #8b5cf6;
    --accent-blue: #3b82f6;
    --accent-teal: #0d9488;
    --accent-emerald: #10b981;
    
    /* Gradients */
    --gradient-brand: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 50%, var(--accent-blue) 100%);
    --gradient-teal-blue: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    --gradient-dark: linear-gradient(180deg, #0b0f19 0%, #131a2c 100%);
    
    /* UI Constants */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.18);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 25px rgba(139, 92, 246, 0.2);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light Theme Variables */
body.light-mode {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border-color: rgba(0, 0, 0, 0.06);
    --border-hover: rgba(0, 0, 0, 0.12);
    --shadow-premium: 0 20px 40px -15px rgba(15, 23, 42, 0.1);
    --shadow-glow: 0 0 25px rgba(139, 92, 246, 0.1);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Background Glow Effects */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.glow-pink {
    background: var(--accent-pink);
    top: -10%;
    left: -10%;
    animation: floatGlow 15s infinite ease-in-out alternate;
}

.glow-blue {
    background: var(--accent-blue);
    bottom: 20%;
    right: -10%;
    animation: floatGlow 20s infinite ease-in-out alternate-reverse;
}

.glow-teal {
    background: var(--accent-teal);
    top: 50%;
    left: 20%;
    width: 400px;
    height: 400px;
    opacity: 0.1;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 50px) scale(1.2); }
}

/* Glassmorphism Wrapper utility */
.glass-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-premium), var(--shadow-glow);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

header.scrolled {
    padding: 12px 0;
    background: rgba(11, 15, 25, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

body.light-mode header.scrolled {
    background: rgba(255, 255, 255, 0.75);
}

.navbar {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-brand);
    transition: var(--transition-smooth);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Theme Toggle */
.theme-toggle-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-hover);
    transform: rotate(15deg);
}

body.light-mode .theme-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.theme-toggle-btn .sun-icon { display: none; }
.theme-toggle-btn .moon-icon { display: block; }
body.light-mode .theme-toggle-btn .sun-icon { display: block; }
body.light-mode .theme-toggle-btn .moon-icon { display: none; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-brand);
    color: #ffffff;
    box-shadow: 0 8px 24px -6px rgba(236, 72, 153, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -4px rgba(236, 72, 153, 0.7), var(--shadow-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

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

body.light-mode .btn-secondary {
    background: rgba(0, 0, 0, 0.02);
    border-color: var(--border-color);
}
body.light-mode .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 24px 100px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 90vh;
    z-index: 10;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #a78bfa;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

body.light-mode .badge {
    background: rgba(139, 92, 246, 0.05);
    color: var(--accent-purple);
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary) 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-mode .hero-content h1 {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

/* Floating Elements for Premium Visuals */
.floating-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1;
}

.main-visual-card {
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.main-visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.card-accent-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-brand);
    border-radius: 2px;
    margin-bottom: 20px;
}

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

.stat-item h3 {
    font-size: 2.2rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mini-float-card {
    position: absolute;
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
    animation: floatEffect 6s infinite ease-in-out alternate;
}

.float-card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.float-card-2 {
    bottom: 15%;
    left: -15%;
    animation-delay: 1.5s;
}

.float-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(13, 148, 136, 0.1);
    color: var(--accent-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.float-card-2 .float-icon {
    background: rgba(236, 72, 153, 0.1);
    color: var(--accent-pink);
}

.float-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.float-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

/* Sections General */
section {
    padding: 100px 24px;
    position: relative;
    z-index: 10;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header .subtitle {
    font-size: 0.9rem;
    color: var(--accent-purple);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: block;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Product Showcase Styles */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.tab-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

body.light-mode .tab-btn {
    background: rgba(0, 0, 0, 0.02);
}

.tab-btn:hover, .tab-btn.active {
    background: var(--gradient-brand);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--border-color);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(11, 15, 25, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.product-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-specs {
    list-style: none;
    border-top: 1px dashed var(--border-color);
    padding-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-specs li {
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--text-secondary);
}

body.light-mode .product-specs li {
    background: rgba(0, 0, 0, 0.04);
}

/* About / Stats Banner */
.about-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

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

.about-img-box {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    aspect-ratio: 4/3;
    border: 1px solid var(--border-color);
}

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

.about-content h3 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* App Promotion Section */
.app-promo-section {
    position: relative;
}

.app-promo-card {
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.app-promo-content {
    z-index: 2;
}

.app-promo-content h3 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.app-promo-content p {
    color: var(--text-secondary);
    margin-bottom: 36px;
    font-size: 1.05rem;
    max-width: 550px;
}

.app-features-mini {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.app-feature-tick {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.tick-icon {
    color: var(--accent-emerald);
    font-size: 1.1rem;
    display: flex;
}

.download-app-area {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.playstore-badge {
    height: 48px;
    transition: var(--transition-smooth);
}

.playstore-badge:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 6px 12px rgba(139, 92, 246, 0.3));
}

.qr-code-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
}

body.light-mode .qr-code-box {
    background: rgba(0, 0, 0, 0.03);
}

.qr-code-img {
    width: 80px;
    height: 80px;
    background: #ffffff;
    padding: 4px;
    border-radius: 4px;
}

.qr-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.qr-text strong {
    color: var(--text-primary);
    display: block;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.app-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* High-end Mockup frame */
.phone-mockup {
    width: 270px;
    height: 550px;
    border: 12px solid #1e293b;
    border-radius: 36px;
    background: #000;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), var(--shadow-glow);
}

body.light-mode .phone-mockup {
    border-color: #0f172a;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0b0f19;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    font-family: var(--font-body);
    color: #fff;
    font-size: 12px;
    overflow-y: auto;
    position: relative;
}

/* Custom scrollbar for Mockup screen */
.phone-screen::-webkit-scrollbar {
    display: none;
}

.mock-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    margin-bottom: 16px;
    padding: 0 4px;
}

.mock-app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.mock-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mock-search {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.mock-section-title {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
}

.mock-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.mock-cat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 8px;
    text-align: center;
}

.mock-cat-card .icon {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--accent-purple);
}

.mock-cat-card span {
    font-size: 9px;
    display: block;
    color: rgba(255, 255, 255, 0.8);
}

.mock-banner {
    background: var(--gradient-teal-blue);
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.mock-banner h4 {
    font-size: 11px;
    margin-bottom: 4px;
}

.mock-banner p {
    font-size: 8px;
    opacity: 0.8;
}

.mock-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mock-prod-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 6px;
    display: flex;
    flex-direction: column;
}

.mock-prod-img {
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-bottom: 6px;
}

.mock-prod-card span {
    font-weight: 600;
    font-size: 9px;
}

.mock-prod-card small {
    font-size: 8px;
    color: var(--accent-teal);
    margin-top: 2px;
}

/* Inquiry Form Section */
.inquiry-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.inquiry-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.inquiry-info-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inquiry-info-box h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.inquiry-info-box p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

.channel-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.channel-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.channel-detail h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.channel-detail p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Glassmorphic Form */
.inquiry-form-card {
    padding: 48px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-group-full {
    grid-column: span 2;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 14px 18px;
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    width: 100%;
}

body.light-mode .form-control {
    background: rgba(0, 0, 0, 0.02);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-purple);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Alert Boxes */
.alert {
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 24px;
    display: none;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--accent-emerald);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Footer Styles */
footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 80px 24px 40px;
    position: relative;
    z-index: 10;
}

.footer-top {
    max-width: 1280px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 20px;
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--gradient-brand);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col ul a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: var(--text-primary);
    padding-left: 4px;
}

.footer-app-downloads {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--text-secondary);
}

/* Responsiveness (Media Queries) */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
        min-height: auto;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .app-promo-card {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }
    
    .app-promo-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .app-features-mini {
        align-items: center;
    }
    
    .download-app-area {
        justify-content: center;
    }
    
    .inquiry-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* In a real app we'd trigger a burger menu, keeping layout clean */
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
