﻿/* ===================================
    A&K Group of Companies - Main Stylesheet
    ================================== */

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

html {
    scroll-behavior: smooth;
}

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

/* Custom CSS Variables for Color Palette */
:root {
    /* Primary Colors - Warm and Professional */
    --primary-color: #3b82c7;        /* Soft blue */
    --primary-dark: #2563a3;         /* Darker blue */
    --primary-light: #60a5fa;        /* Light blue */
    
    /* Secondary Colors - Warm accent */
    --secondary-color: #f59e0b;      /* Warm amber */
    --secondary-dark: #d97706;       /* Dark amber */
    --secondary-light: #fbbf24;      /* Light amber */
    
    /* Neutral Colors - Gentle and Easy on Eyes */
    --text-primary: #1e293b;         /* Dark slate */
    --text-secondary: #64748b;       /* Medium slate */
    --text-light: #94a3b8;           /* Light slate */
    
    /* Background Colors */
    --bg-primary: #ffffff;           /* Pure white */
    --bg-secondary: #f8fafc;         /* Very light gray */
    --bg-accent: #f1f5f9;            /* Light blue-gray */
    
    /* RGB Values for rgba() functions */
    --bg-primary-rgb: 255, 255, 255;
    --bg-secondary-rgb: 248, 250, 252;
    --text-primary-rgb: 30, 41, 59;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #3b82c7, #60a5fa);
    --gradient-warm: linear-gradient(135deg, #f59e0b, #fbbf24);
    --gradient-hero: linear-gradient(135deg, #3b82c7 0%, #60a5fa 50%, #f59e0b 100%);
    
    /* Shadow Colors */
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-large: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Dark Mode Variables - COMMENTED OUT FOR NOW
[data-theme="dark"] {
    Primary Colors remain vibrant in dark mode
    --primary-color: #60a5fa;        Brighter blue for dark mode
    --primary-dark: #3b82f6;         Adjusted darker blue
    --primary-light: #93c5fd;        Lighter blue
    
    Secondary Colors - maintain warmth
    --secondary-color: #fbbf24;      Brighter amber
    --secondary-dark: #f59e0b;       Adjusted dark amber
    --secondary-light: #fcd34d;      Light amber
    
    Neutral Colors - Inverted for dark mode
    --text-primary: #f1f5f9;         Light text on dark
    --text-secondary: #cbd5e1;       Medium light text
    --text-light: #94a3b8;           Muted light text
    
    Background Colors - Dark theme
    --bg-primary: #0f172a;           Dark navy
    --bg-secondary: #1e293b;         Darker navy
    --bg-accent: #334155;            Medium dark
    
    RGB Values for rgba() functions
    --bg-primary-rgb: 15, 23, 42;
    --bg-secondary-rgb: 30, 41, 59;
    --text-primary-rgb: 241, 245, 249;
    
    Adjusted shadows for dark mode
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.2);
    --shadow-large: 0 10px 25px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.4);
}
*/

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

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

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    background: rgba(var(--bg-primary-rgb), 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 130, 199, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.nav-logo:hover {
    color: var(--primary-dark);
}

.nav-logo i {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Theme Toggle - COMMENTED OUT FOR NOW
.theme-toggle {
    background: var(--bg-accent);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
    transition: all var(--transition-normal);
    font-size: 1rem;
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

[data-theme="dark"] .theme-toggle i:before {
    content: "\f185";
}
*/

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

/* Dropdown styles removed as part of safe cleanup. If you re-add a dropdown in future,
    reintroduce accessible styles here (dropdown-toggle, dropdown-menu, dropdown-item).
    Kept a simple .nav-item rule for generic positioning if needed elsewhere. */
.nav-item { position: relative; }

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

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.25rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 199, 0.05) 0%, rgba(96, 165, 250, 0.05) 50%, rgba(245, 158, 11, 0.05) 100%);
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 199, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

/* Beautiful Laptop Stand Mockup - Realistic Design */
.laptop-stand-mockup {
    position: relative;
    width: 450px;
    height: 350px;
    margin: 0 auto;
    perspective: 1000px;
    max-width: 100%; /* Responsive improvement */
}

.stand-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 30px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1, #94a3b8);
    border-radius: 20px;
    box-shadow: var(--shadow-large);
    max-width: 80%; /* Responsive improvement */
}

.stand-base::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    right: 20px;
    height: 12px;
    background: linear-gradient(135deg, #64748b, #475569);
    border-radius: 6px;
}

.stand-arm {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 140px;
    background: linear-gradient(to bottom, #94a3b8, #64748b, #475569);
    border-radius: 10px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.stand-arm::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 110px;
    background: linear-gradient(to bottom, #cbd5e1, #94a3b8);
    border-radius: 6px;
}

.stand-arm::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
    background: linear-gradient(135deg, #64748b, #475569);
    border-radius: 8px;
}

.laptop {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%) rotateX(-5deg);
    width: 320px;
    height: 200px;
    background: linear-gradient(135deg, #1e293b, #334155, #475569);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    border: 4px solid #0f172a;
    animation: laptopFloat 3s ease-in-out infinite;
    max-width: 85%; /* Responsive improvement */
}

.laptop::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: linear-gradient(135deg, #0ea5e9, #3b82f6, #6366f1);
    border-radius: 8px;
    opacity: 0.9;
}

.laptop::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0.8;
}

@keyframes laptopFloat {
    0%, 100% { transform: translateX(-50%) rotateX(-5deg) translateY(0px); }
    50% { transform: translateX(-50%) rotateX(-5deg) translateY(-6px); }
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Features Section */
.features {
    background: var(--bg-primary);
    overflow: hidden;
    position: relative;
}

/* Subtle background pattern - reduced */
.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 199, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid rgba(59, 130, 199, 0.1);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    overflow: hidden;
}

/* Stagger animation delays for each card - reduced */
.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Removed the sweep effect - too much animation */

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(59, 130, 199, 0.2);
}

/* Removed pulse animation - too distracting */

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

.feature-card p {
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
}

/* Keyframe animations - simplified */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Removed excessive bounce and pulse animations */

/* Simplified ripple effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(59, 130, 199, 0.2);
    transform: scale(0);
    animation: ripple 0.4s ease-out;
    pointer-events: none;
    z-index: 1;
}

@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* Enhanced fade in animation */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Stats Section */
.stats {
    background: var(--gradient-primary);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    background: var(--bg-accent);
    text-align: center;
}

.cta h2 {
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 8rem 0 4rem;
    margin-top: 4rem;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

/* About Page Specific Styles */
.our-story {
    background: var(--bg-primary);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.story-image {
    display: flex;
    justify-content: center;
}

.founder-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.founder-photo {
    width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-large);
    transition: all var(--transition-normal);
    border: 4px solid white;
}

.founder-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.founder-caption {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
}

.founder-caption h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.founder-caption p {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: var(--bg-accent);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--primary-light);
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Mission & Values */
.mission-values {
    background: var(--bg-secondary);
}

/* Company Structure Section - Tree Format */
.company-structure {
    background: var(--bg-primary) !important;
    padding: 5rem 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

.company-structure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 199, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(139, 69, 196, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.company-structure::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ddd6fe' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.company-structure .container {
    position: relative;
    z-index: 1;
}

.structure-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.structure-content {
    max-width: 1200px;
    margin: 0 auto;
}

.company-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
}

/* Parent Company Node */
.tree-parent {
    margin-bottom: 4rem;
    position: relative;
    animation: fadeInDown 1s ease-out;
}

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

.parent-node {
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 50%, 
        #f093fb 100%) !important;
    border-radius: 25px !important;
    padding: 2.5rem 3.5rem !important;
    box-shadow: 
        0 20px 40px rgba(102, 126, 234, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
    min-width: 450px !important;
    text-align: center !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
}

.parent-node:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(102, 126, 234, 0.4),
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.parent-node::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150%;
    height: 150%;
    background: 
        radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%),
        conic-gradient(from 45deg, rgba(255,255,255,0.1), transparent 180deg, rgba(255,255,255,0.05) 360deg);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

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

.parent-node::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    pointer-events: none;
}

.parent-node .node-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255,255,255,0.4);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.parent-node:hover .node-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.parent-node .node-content {
    position: relative;
    z-index: 2;
}

.parent-node .node-title {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.parent-node .node-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin: 0;
}

/* Tree Branches */
.tree-branches {
    position: relative;
    width: 100%;
}

.main-branch {
    width: 6px;
    height: 80px;
    background: linear-gradient(180deg, 
        #667eea 0%, 
        #764ba2 50%, 
        #f093fb 100%);
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
    box-shadow: 
        0 4px 8px rgba(102, 126, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: branchGlow 3s ease-in-out infinite alternate;
}

@keyframes branchGlow {
    from {
        box-shadow: 
            0 4px 8px rgba(102, 126, 234, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    to {
        box-shadow: 
            0 6px 12px rgba(102, 126, 234, 0.5),
            0 0 20px rgba(102, 126, 234, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.main-branch::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 0 0 3px rgba(255, 255, 255, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

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

/* Subsidiaries Grid */
.subsidiaries-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    width: 100%;
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.subsidiary-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
}

/* Branch Connectors */
.subsidiary-row::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #667eea 20%, 
        #764ba2 50%, 
        #f093fb 80%, 
        transparent 100%);
    border-radius: 2px;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
    animation: flowLeft 4s ease-in-out infinite;
}

@keyframes flowLeft {
    0%, 100% { 
        background: linear-gradient(90deg, 
            transparent 0%, 
            #667eea 20%, 
            #764ba2 50%, 
            #f093fb 80%, 
            transparent 100%);
    }
    50% { 
        background: linear-gradient(90deg, 
            transparent 0%, 
            #f093fb 20%, 
            #764ba2 50%, 
            #667eea 80%, 
            transparent 100%);
    }
}

.branch-connector {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 80px;
    background: linear-gradient(180deg, 
        #667eea 0%, 
        #764ba2 100%);
    border-radius: 2px;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
}

.branch-connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 255, 255, 0.3);
}

/* Subsidiary Nodes */
.subsidiary-node {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 250, 252, 0.8) 100%);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(102, 126, 234, 0.1);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 4px 10px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    overflow: hidden;
    animation: slideInScale 0.6s ease-out;
    animation-delay: calc(var(--index, 0) * 0.1s);
    animation-fill-mode: both;
}

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

.subsidiary-node::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(102, 126, 234, 0.05) 50%, 
        transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.subsidiary-node:hover::before {
    transform: translateX(0);
}

.subsidiary-node:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 25px 50px rgba(102, 126, 234, 0.15),
        0 15px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(102, 126, 234, 0.3);
}

.subsidiary-node .node-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 50%, 
        #f093fb 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 16px rgba(102, 126, 234, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.subsidiary-node .node-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 45deg, 
        rgba(255, 255, 255, 0.2), 
        transparent 180deg, 
        rgba(255, 255, 255, 0.1) 360deg);
    animation: iconRotate 6s linear infinite;
}

@keyframes iconRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.subsidiary-node:hover .node-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 
        0 12px 24px rgba(102, 126, 234, 0.4),
        0 6px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.subsidiary-node h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subsidiary-node p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

/* Structure Summary */
.structure-summary {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 250, 252, 0.8) 100%);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid rgba(102, 126, 234, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 10px 20px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.structure-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(102, 126, 234, 0.02) 0%, 
        rgba(118, 75, 162, 0.02) 50%, 
        rgba(240, 147, 251, 0.02) 100%);
    z-index: 0;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 3rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.summary-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.summary-stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.1);
}

.summary-stats .stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1;
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from { 
        opacity: 0;
        transform: scale(0.5);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

.summary-stats .stat-label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for Tree Structure */
@media (max-width: 1024px) {
    .subsidiary-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .subsidiary-row::before {
        left: 5%;
        right: 5%;
    }
}

@media (max-width: 768px) {
    .company-structure {
        padding: 4rem 0;
    }
    
    .parent-node {
        min-width: auto;
        padding: 2rem 2.5rem;
        margin: 0 1rem;
    }
    
    .parent-node .node-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .parent-node .node-title {
        font-size: 1.5rem;
    }
    
    .subsidiary-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .subsidiary-row::before {
        display: none; /* Hide horizontal connectors on mobile */
    }
    
    .branch-connector {
        display: none; /* Hide vertical connectors on mobile */
    }
    
    .subsidiary-node {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .subsidiary-node .node-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .summary-stats .stat-number {
        font-size: 2.5rem;
    }
    
    .structure-summary {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .company-structure {
        padding: 3rem 0;
    }
    
    .structure-subtitle {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .parent-node {
        padding: 1.5rem 2rem;
    }
    
    .parent-node .node-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .parent-node .node-title {
        font-size: 1.25rem;
    }
    
    .parent-node .node-subtitle {
        font-size: 1rem;
    }
    
    .subsidiary-node {
        padding: 1.25rem;
    }
    
    .subsidiary-node .node-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        border-radius: 12px;
    }
    
    .subsidiary-node h4 {
        font-size: 1rem;
    }
    
    .subsidiary-node p {
        font-size: 0.85rem;
    }
    
    .structure-summary {
        padding: 1.5rem;
    }
    
    .summary-stats .stat-number {
        font-size: 2rem;
    }
    
    .summary-stats .stat-label {
        font-size: 0.85rem;
    }
}

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

.value-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 199, 0.1), transparent);
    transition: left 0.5s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary-light);
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(360deg);
    background: var(--gradient-primary);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.25rem;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Footer - Beautiful and Visually Appealing Design */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 2;
}

.footer::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 300px;
    height: 150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.footer-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    padding: 0.5rem 0;
}

.footer-simple p {
    margin: 0;
    font-size: 0.95rem;
    position: relative;
    transition: all var(--transition-fast);
}

.footer-simple p:first-child {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-simple p:first-child::before {
    content: '⚡';
    font-size: 1.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}

.footer-simple p:last-child {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    position: relative;
}

.footer-simple p:last-child::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 1px;
    opacity: 0.6;
}

/* Hover Effects */
.footer-simple:hover p:first-child {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.footer-simple:hover p:last-child {
    color: rgba(255, 255, 255, 0.9);
}

.footer-simple:hover p:last-child::before {
    opacity: 1;
    height: 25px;
}

/* Subtle Animation */
@keyframes footerGlow {
    0%, 100% {
        box-shadow: 0 -5px 15px rgba(59, 130, 246, 0.1);
    }
    50% {
        box-shadow: 0 -5px 25px rgba(59, 130, 246, 0.2);
    }
}

.footer {
    animation: footerGlow 4s ease-in-out infinite;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer-simple {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .footer-simple p:last-child::before {
        display: none;
    }
    
    .footer-simple p:first-child::before {
        content: '⚡';
    }
}

@media (max-width: 480px) {
    .footer-simple p {
        font-size: 0.9rem;
    }
    
    .footer-simple p:first-child {
        font-size: 0.95rem;
    }
}

.catalog-filters {
    background: var(--bg-primary);
    padding: 2rem 0;
    border-bottom: 1px solid var(--bg-accent);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--bg-accent);
    background: var(--bg-primary);
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-weight: 500;
}

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

.catalog-grid {
    background: var(--bg-secondary);
}

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

.product-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, var(--bg-accent), var(--bg-secondary));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.product-card:hover .product-photo {
    transform: scale(1.05);
}

.product-mockup {
    position: relative;
    width: 200px;
    height: 150px;
}

.stand-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
}

.adjustable-visual {
    background: linear-gradient(45deg, #64748b, #94a3b8);
    border-radius: 8px;
}

.portable-visual {
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    height: 60px;
    border-radius: 4px;
}

.cooling-visual {
    background: linear-gradient(45deg, #06b6d4, #67e8f9);
    border-radius: 8px;
}

.basic-adjustable-visual {
    background: linear-gradient(45deg, #8b5cf6, #a78bfa);
    border-radius: 6px;
}

.premium-wood-visual {
    background: linear-gradient(45deg, #92400e, #d97706);
    border-radius: 8px;
}

.portable-cooling-visual {
    background: linear-gradient(45deg, #059669, #34d399);
    height: 70px;
    border-radius: 6px;
}

.tilt-visual {
    background: linear-gradient(45deg, #dc2626, #f87171);
    transform: translate(-50%, -50%) rotate(10deg);
    border-radius: 6px;
}

.ultra-portable-visual {
    background: linear-gradient(45deg, #7c3aed, #a855f7);
    height: 40px;
    border-radius: 4px;
}

.carbon-visual {
    background: linear-gradient(45deg, #111827, #374151);
    border-radius: 8px;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.product-badge.premium {
    background: var(--gradient-warm);
}

.product-badge.bestseller {
    background: var(--gradient-primary);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.product-info p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.product-features span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    background: var(--bg-accent);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.product-features i {
    color: var(--primary-color);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Promotional Pricing Styles */
.product-pricing {
    margin-top: 1rem;
}

.price-original {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price-offer {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.offer-expires {
    font-size: 0.8rem;
    color: var(--error-color);
    font-weight: 500;
    font-style: italic;
}

/* Catalog Features */
.catalog-features {
    background: var(--bg-primary);
}

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

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-item h4 {
    margin-bottom: 1rem;
}

/* Commitment Section */
.commitment {
    background: var(--bg-accent);
    padding: 5rem 0;
}

.commitment-content h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.commitment-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.commitment-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--bg-accent);
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 199, 0.1), transparent);
    transition: left 0.6s ease;
}

.commitment-card:hover::before {
    left: 100%;
}

.commitment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.commitment-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.commitment-card:hover .commitment-icon {
    transform: scale(1.2) rotate(360deg);
    background: var(--gradient-warm);
}

.commitment-content-item h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.commitment-content-item p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.commitment-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.commitment-feature i {
    font-size: 1rem;
}

/* Contact Page Specific Styles */
.contact-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

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

.contact-form,
.contact-info {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
}

.form-header,
.info-header {
    margin-bottom: 2rem;
}

.form-header h2,
.info-header h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-header p,
.info-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--bg-accent);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #10b981, #047857);
    color: white;
    border-radius: var(--radius-lg);
    margin-top: 1rem;
}

.form-success.show {
    display: block;
}

.form-success i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-success h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.contact-method:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-small);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.method-details h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-weight: 600;
    font-size: 1rem;
}

.method-details p {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.method-note {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Quick Info Cards */
.quick-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    border: 1px solid var(--bg-accent);
}

.info-card i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.info-card h5 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 0;
}

/* WhatsApp Section - Positioned below contact form */
.whatsapp-section {
    margin-bottom: 4rem;
}

.whatsapp-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.whatsapp-section .section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.whatsapp-section .section-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.whatsapp-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.whatsapp-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    overflow: hidden;
}

.whatsapp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.6s ease;
}

.whatsapp-card:hover::before {
    left: 100%;
}

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

.whatsapp-card.founder-card {
    background: var(--gradient-primary);
    color: white;
    border: 2px solid var(--primary-color);
}

.founder-card .team-info h3,
.founder-card .team-role,
.founder-card .team-description {
    color: white;
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.team-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 2;
}

.founder-card .team-avatar {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.team-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.team-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.founder-card .team-description {
    color: rgba(255,255,255,0.9);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-whatsapp.primary {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-whatsapp.primary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* FAQ Section - Enhanced Styles */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--bg-accent);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-light);
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--bg-primary);
    border: none;
    width: 100%;
    text-align: left;
    outline: none;
}

.faq-question:hover {
    background: var(--bg-accent);
}

.faq-question:focus {
    background: var(--bg-accent);
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

.faq-question h4 {
    margin: 0;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    flex: 1;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform var(--transition-normal);
    font-size: 1rem;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    background: var(--bg-secondary);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .whatsapp-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .whatsapp-card.founder-card {
        grid-column: 1 / -1;
    }
    
    .contact-content {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quick-info {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .whatsapp-card.founder-card {
        order: -1;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
    
    .whatsapp-card {
        padding: 1.5rem 1rem;
    }
    
    .btn-whatsapp {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    .whatsapp-section .section-header h2 {
        font-size: 1.75rem;
    }
    
    .faq-section .section-title {
        font-size: 1.75rem;
    }
}

/* Landscape mobile orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 3rem;
    }
    
    .hero-content {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1rem;
    }
    
    .laptop-stand-mockup {
        max-width: 200px;
        min-height: 150px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-scroll,
    .hamburger,
    .btn,
    .social-links {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .page-header {
        padding: 2rem 0;
        margin-top: 0;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
        background: white;
    }
    
    h1 { font-size: 24pt; }
    h2 { font-size: 20pt; }
    h3 { font-size: 16pt; }
    h4 { font-size: 14pt; }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .nav-logo {
        font-size: 1rem;
    }
    
    .laptop-stand-mockup {
        max-width: 250px;
        min-height: 180px;
    }
    
    .filter-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .product-price {
        font-size: 1.25rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
}

/* Landscape mobile orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 3rem;
    }
    
    .hero-content {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1rem;
    }
    
    .laptop-stand-mockup {
        max-width: 200px;
        min-height: 150px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-scroll,
    .hamburger,
    .btn,
    .social-links {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .page-header {
        padding: 2rem 0;
        margin-top: 0;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
        background: white;
    }
    
    h1 { font-size: 24pt; }
    h2 { font-size: 20pt; }
    h3 { font-size: 16pt; }
    h4 { font-size: 14pt; }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-scroll {
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0000ff;
        --text-primary: #000000;
        --text-secondary: #000000;
        --bg-primary: #ffffff;
        --bg-secondary: #f0f0f0;
    }
    
    .btn {
        border: 2px solid currentColor;
    }
    
    .feature-card,
    .product-card,
    .value-card {
        border: 2px solid var(--text-primary);
    }
}

/* Focus Styles for Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Mobile Touch and Interaction Improvements */
@media (hover: none) and (pointer: coarse) {
    /* Touch device specific styles */
    .btn:hover,
    .feature-card:hover,
    .product-card:hover {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.95);
    }
    
    .product-card:active,
    .feature-card:active {
        transform: scale(0.98);
    }
}

/* Additional mobile-specific touch improvements */
@media (max-width: 768px) {
    /* Ensure proper touch target sizes */
    .hamburger {
        padding: 0.5rem;
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improve scrolling behavior */
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Prevent zoom on form inputs */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        font-size: 16px !important;
    }
    
    /* Improve tap highlight colors */
    * {
        -webkit-tap-highlight-color: rgba(59, 130, 199, 0.1);
    }
    
    /* Disable user selection on UI elements */
    .navbar,
    .btn,
    .filter-btn {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .hero {
        /* Fix iOS viewport height issues */
        min-height: -webkit-fill-available;
    }
    
    /* Fix input styling on iOS */
    input,
    select,
    textarea {
        -webkit-appearance: none;
        appearance: none;
        border-radius: var(--radius-md);
    }
}

/* Contact Page Specific Styles - Fixed Layout */
.contact-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

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

.contact-form,
.contact-info {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
}

.contact-form h2,
.contact-info h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-form p,
.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--bg-accent);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #10b981, #047857);
    color: white;
    border-radius: var(--radius-lg);
    margin-top: 1rem;
}

.form-success.show {
    display: block;
}

.form-success i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-success h3 {
    margin-bottom: 0.5rem;
    color: white;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.contact-method:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-light);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.method-details h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-weight: 600;
    font-size: 1rem;
}

.method-details p {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.method-note {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Quick Info Cards */
.quick-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    border: 1px solid var(--bg-accent);
}

.info-card i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.info-card h5 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 0;
}

/* WhatsApp Section - Positioned below contact form */
.whatsapp-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bg-accent);
}

.whatsapp-section h2,
.whatsapp-section h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
}

.whatsapp-section p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.whatsapp-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.whatsapp-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    overflow: hidden;
}

.whatsapp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.6s ease;
}

.whatsapp-card:hover::before {
    left: 100%;
}

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

.whatsapp-card.founder-card {
    background: var(--gradient-primary);
    color: white;
    border: 2px solid var(--primary-color);
}

.founder-card .team-info h3,
.founder-card .team-info h4,
.founder-card .team-role,
.founder-card .team-description {
    color: white;
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.team-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 2;
}

.founder-card .team-avatar {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.team-info h3,
.team-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.team-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.founder-card .team-description {
    color: rgba(255,255,255,0.9);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-whatsapp.primary {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-whatsapp.primary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* FAQ Section - Fixed Styles */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
}

.faq-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--bg-accent);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--bg-primary);
}

.faq-question:hover {
    background: var(--bg-accent);
}

.faq-question h4 {
    margin: 0;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform var(--transition-normal);
    font-size: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
    background: var(--bg-secondary);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .whatsapp-cards {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
    
    .whatsapp-card.founder-card {
        grid-column: 1 / -1;
    }
    
    .contact-content {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quick-info {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .whatsapp-card.founder-card {
        order: -1;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
    
    .whatsapp-card {
        padding: 1.5rem 1rem;
    }
    
    .btn-whatsapp {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    .whatsapp-section h3 {
        font-size: 1.25rem;
    }
    
    .faq-section .section-title {
        font-size: 1.75rem;
    }
}

/* ===================================
    A&K Group of Companies - Main Stylesheet
    ================================== */

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

html {
    scroll-behavior: smooth;
}

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

/* Custom CSS Variables for Color Palette */
:root {
    /* Primary Colors - Warm and Professional */
    --primary-color: #3b82c7;        /* Soft blue */
    --primary-dark: #2563a3;         /* Darker blue */
    --primary-light: #60a5fa;        /* Light blue */
    
    /* Secondary Colors - Warm accent */
    --secondary-color: #f59e0b;      /* Warm amber */
    --secondary-dark: #d97706;       /* Dark amber */
    --secondary-light: #fbbf24;      /* Light amber */
    
    /* Neutral Colors - Gentle and Easy on Eyes */
    --text-primary: #1e293b;         /* Dark slate */
    --text-secondary: #64748b;       /* Medium slate */
    --text-light: #94a3b8;           /* Light slate */
    
    /* Background Colors */
    --bg-primary: #ffffff;           /* Pure white */
    --bg-secondary: #f8fafc;         /* Very light gray */
    --bg-accent: #f1f5f9;            /* Light blue-gray */
    
    /* RGB Values for rgba() functions */
    --bg-primary-rgb: 255, 255, 255;
    --bg-secondary-rgb: 248, 250, 252;
    --text-primary-rgb: 30, 41, 59;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #3b82c7, #60a5fa);
    --gradient-warm: linear-gradient(135deg, #f59e0b, #fbbf24);
    --gradient-hero: linear-gradient(135deg, #3b82c7 0%, #60a5fa 50%, #f59e0b 100%);
    
    /* Shadow Colors */
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-large: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Dark Mode Variables - COMMENTED OUT FOR NOW
[data-theme="dark"] {
    Primary Colors remain vibrant in dark mode
    --primary-color: #60a5fa;        Brighter blue for dark mode
    --primary-dark: #3b82f6;         Adjusted darker blue
    --primary-light: #93c5fd;        Lighter blue
    
    Secondary Colors - maintain warmth
    --secondary-color: #fbbf24;      Brighter amber
    --secondary-dark: #f59e0b;       Adjusted dark amber
    --secondary-light: #fcd34d;      Light amber
    
    Neutral Colors - Inverted for dark mode
    --text-primary: #f1f5f9;         Light text on dark
    --text-secondary: #cbd5e1;       Medium light text
    --text-light: #94a3b8;           Muted light text
    
    Background Colors - Dark theme
    --bg-primary: #0f172a;           Dark navy
    --bg-secondary: #1e293b;         Darker navy
    --bg-accent: #334155;            Medium dark
    
    RGB Values for rgba() functions
    --bg-primary-rgb: 15, 23, 42;
    --bg-secondary-rgb: 30, 41, 59;
    --text-primary-rgb: 241, 245, 249;
    
    Adjusted shadows for dark mode
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.2);
    --shadow-large: 0 10px 25px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.4);
}
*/

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

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

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    background: rgba(var(--bg-primary-rgb), 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 130, 199, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.nav-logo:hover {
    color: var(--primary-dark);
}

.nav-logo i {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Theme Toggle - COMMENTED OUT FOR NOW
.theme-toggle {
    background: var(--bg-accent);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
    transition: all var(--transition-normal);
    font-size: 1rem;
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

[data-theme="dark"] .theme-toggle i:before {
    content: "\f185";
}
*/

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

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

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.25rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 199, 0.05) 0%, rgba(96, 165, 250, 0.05) 50%, rgba(245, 158, 11, 0.05) 100%);
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 199, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

/* Beautiful Laptop Stand Mockup - Realistic Design */
.laptop-stand-mockup {
    position: relative;
    width: 450px;
    height: 350px;
    margin: 0 auto;
    perspective: 1000px;
    max-width: 100%; /* Responsive improvement */
}

.stand-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 30px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1, #94a3b8);
    border-radius: 20px;
    box-shadow: var(--shadow-large);
    max-width: 80%; /* Responsive improvement */
}

.stand-base::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    right: 20px;
    height: 12px;
    background: linear-gradient(135deg, #64748b, #475569);
    border-radius: 6px;
}

.stand-arm {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 140px;
    background: linear-gradient(to bottom, #94a3b8, #64748b, #475569);
    border-radius: 10px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.stand-arm::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 110px;
    background: linear-gradient(to bottom, #cbd5e1, #94a3b8);
    border-radius: 6px;
}

.stand-arm::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
    background: linear-gradient(135deg, #64748b, #475569);
    border-radius: 8px;
}

.laptop {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%) rotateX(-5deg);
    width: 320px;
    height: 200px;
    background: linear-gradient(135deg, #1e293b, #334155, #475569);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    border: 4px solid #0f172a;
    animation: laptopFloat 3s ease-in-out infinite;
    max-width: 85%; /* Responsive improvement */
}

.laptop::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: linear-gradient(135deg, #0ea5e9, #3b82f6, #6366f1);
    border-radius: 8px;
    opacity: 0.9;
}

.laptop::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0.8;
}

@keyframes laptopFloat {
    0%, 100% { transform: translateX(-50%) rotateX(-5deg) translateY(0px); }
    50% { transform: translateX(-50%) rotateX(-5deg) translateY(-6px); }
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Features Section */
.features {
    background: var(--bg-primary);
    overflow: hidden;
    position: relative;
}

/* Subtle background pattern - reduced */
.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 199, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid rgba(59, 130, 199, 0.1);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    overflow: hidden;
}

/* Stagger animation delays for each card - reduced */
.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Removed the sweep effect - too much animation */

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(59, 130, 199, 0.2);
}

/* Removed pulse animation - too distracting */

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

.feature-card p {
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
}

/* Keyframe animations - simplified */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Removed excessive bounce and pulse animations */

/* Simplified ripple effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(59, 130, 199, 0.2);
    transform: scale(0);
    animation: ripple 0.4s ease-out;
    pointer-events: none;
    z-index: 1;
}

@keyframes ripple { to { transform: scale(4); opacity: 0; } }



