:root {
    /* Color Palette - Dark Blue, Cyan, White Tech Theme */
    --dark-blue: #0a192f;
    --dark-blue-light: #112240;
    --dark-blue-dark: #020c1b;
    --cyan: #00d4ff;
    --cyan-light: #64ffda;
    --cyan-dark: #00b4cc;
    --accent: #ff6b6b;
    --accent-dark: #e23846;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --gray: #8892b0;
    --light-gray: #ccd6f6;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-light) 100%);
    --gradient-cyan: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    --gradient-card: linear-gradient(135deg, var(--dark-blue-light) 0%, var(--dark-blue) 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.4);
    
    /* Animations */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-in-out: cubic-bezier(0.42, 0, 0.58, 1);
}

[data-theme="light"] {
    --dark-blue: #f8f9fa;
    --dark-blue-light: #e9ecef;
    --dark-blue-dark: #dee2e6;
    --white: #0a192f;
    --off-white: #112240;
    --gray: #495057;
    --light-gray: #6c757d;
    --glass-bg: rgba(10, 25, 47, 0.05);
    --glass-border: rgba(10, 25, 47, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-blue);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes tilt {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(1deg);
    }
    75% {
        transform: rotate(-1deg);
    }
}

/* Animation Classes */
.fly-in { animation: fadeInUp 1s var(--ease-out); }
.slide-in-left { animation: slideInLeft 0.8s var(--ease-out); }
.slide-in-right { animation: slideInRight 0.8s var(--ease-out); }
.slide-up { animation: fadeInUp 0.8s var(--ease-out); }
.scale-in { animation: scaleIn 0.6s var(--ease-out); }
.pulse-glow { animation: pulseGlow 2s infinite; }
.float { animation: float 4s var(--ease-in-out) infinite; }
.tilt { animation: tilt 6s var(--ease-in-out) infinite; }

/* Scroll-triggered animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s var(--ease-out);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === LAYOUT & UTILITIES === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cyan);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-cyan);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: var(--cyan);
    color: var(--dark-blue);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-cyan);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--off-white);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 32px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-cyan);
    color: var(--dark-blue);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--cyan);
    border: 2px solid var(--cyan);
}

.btn-secondary:hover {
    background: var(--cyan);
    color: var(--dark-blue);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--light-gray);
}

.btn-outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-laptop {
    animation: float 4s ease-in-out infinite;
}

.floating-laptop img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--glass-border);
}

/* === SECTIONS COMMON === */
section {
    padding: 5rem 0;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--off-white);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--off-white);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* === PRODUCTS GRID === */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.products-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cyan);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.product-specs {
    color: var(--off-white);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.product-actions .btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 0.9rem;
}

/* === FEATURES SECTION === */
.features {
    background: var(--dark-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--dark-blue);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-card p {
    color: var(--off-white);
    line-height: 1.6;
}

/* === SERVICES PAGE === */
.services-page {
    padding: 8rem 0 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-cyan);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-cyan);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--dark-blue);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-card p {
    color: var(--off-white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.service-pricing .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cyan);
}

.service-pricing .note {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--off-white);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: bold;
}

.service-btn {
    width: 100%;
    justify-content: center;
}

/* === ABOUT PAGE === */
.about-page {
    padding: 8rem 0 5rem;
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--off-white);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--off-white);
    font-size: 0.9rem;
}

.about-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--glass-border);
}

.mission-section {
    margin: 5rem 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-card i {
    font-size: 3rem;
    color: var(--cyan);
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.mission-card p {
    color: var(--off-white);
    line-height: 1.6;
}

.story-section {
    margin: 5rem 0;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--off-white);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-section {
    margin: 5rem 0;
}

.team-card {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    border: 1px solid var(--glass-border);
    max-width: 800px;
    margin: 0 auto;
}

/* Founder card on contact page */
.contact-founder {
    max-width: 900px;
    margin: 3rem auto 1rem;
    padding: 1rem 20px;
}

.founder-card {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: var(--gradient-card);
    padding: 1.25rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.founder-image {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid var(--cyan);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info .founder-name {
    margin: 0;
    font-size: 1.25rem;
}

.name-circle {
    display: inline-block;
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    border: 3px solid var(--cyan);
    color: var(--white);
    background: transparent;
    font-weight: 700;
}

.team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--cyan);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.team-role {
    color: var(--cyan);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--off-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: var(--gradient-cyan);
    color: var(--dark-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* === CONTACT PAGE === */
.contact-page {
    padding: 8rem 0 5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gradient-card);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.method-link {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.method-link:hover {
    color: var(--cyan-light);
}

.method-details p {
    color: var(--off-white);
    font-size: 0.9rem;
}

.business-hours {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.business-hours h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item span:first-child {
    color: var(--off-white);
}

.hour-item span:last-child {
    color: var(--white);
    font-weight: 600;
}

.contact-form-container {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    height: fit-content;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.form-header p {
    color: var(--off-white);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    background: var(--dark-gray);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--off-white);
    transition: color 0.3s ease;
}

.form-group:focus-within .form-icon {
    color: var(--cyan);
}

.textarea-icon {
    top: 1.5rem;
    transform: none;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.form-success {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--gradient-card);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.success-icon {
    font-size: 4rem;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.form-success p {
    color: var(--off-white);
}

.map-section {
    margin-top: 5rem;
}

.map-container {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--cyan);
    margin-bottom: 1.5rem;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.map-placeholder p {
    color: var(--off-white);
    margin-bottom: 2rem;
}

.location-details {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.location-details p {
    margin-bottom: 0.5rem;
    color: var(--off-white);
}

.location-details strong {
    color: var(--white);
}

/* === PRODUCTS FILTER === */
.products-filter {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    background: var(--dark-gray);
    color: var(--white);
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: var(--cyan);
}

.filter-select {
    padding: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    background: var(--dark-gray);
    color: var(--white);
    font-size: 1rem;
    min-width: 200px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--cyan);
}

/* === MODAL === */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--gradient-card);
    margin: 4% auto;
    padding: 1.75rem;
    border-radius: 20px;
    max-width: 500px;
    width: min(95%, 500px);
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-xl);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
    transition: color 0.3s ease;
    background: none;
    border: none;
}

.close-modal:hover {
    color: var(--cyan);
}

/* === WATERMARK / AVATAR === */
.watermark {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0,0,0,0.35);
    padding: 8px 10px;
    border-radius: 999px;
    color: var(--off-white);
    opacity: 0.95;
    z-index: 999;
    border: 1px solid var(--glass-border);
}

.wm-avatar {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--cyan);
    flex-shrink: 0;
    background: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wm-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wm-upload {
    position: absolute;
    bottom: -6px;
    right: -6px;
    background: var(--cyan);
    color: var(--dark-blue);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border: 2px solid rgba(0,0,0,0.08);
    cursor: pointer;
}

.wm-info {
    display: flex;
    flex-direction: column;
}

.wm-name {
    font-size: 0.85rem;
    color: var(--off-white);
}

.wm-name strong {
    color: var(--cyan);
    font-weight: 700;
}

.wm-phone {
    color: var(--cyan);
    font-size: 0.8rem;
    text-decoration: none;
}

.wm-phone:hover {
    color: var(--cyan-light);
}

.wm-clear {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border: 2px solid rgba(0,0,0,0.08);
    cursor: pointer;
}

.wm-clear:hover {
    background: var(--red-dark);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 20px;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .products-filter {
        flex-direction: column;
    }

    .search-input,
    .filter-select {
        min-width: 100%;
    }

    .mission-grid,
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .products-grid,
    .products-grid-full {
        grid-template-columns: 1fr;
    }

    .modal-content {
        max-width: 90%;
        margin: 5% auto;
        padding: 1.5rem;
    }

    .product-modal-details {
        font-size: 0.9rem;
    }
}


@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }

    .product-modal-image img {
        max-width: 100%;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}


/* === DELIVERY SECTION === */
.delivery-section {
    padding: 5rem 0;
    background: var(--dark-blue);
}

.delivery-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.area-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.area-card i {
    font-size: 2rem;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.area-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.area-card p {
    color: var(--off-white);
    line-height: 1.6;
}

.delivery-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.info-item {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-card);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.info-item i {
    font-size: 2.5rem;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.info-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.info-item p {
    color: var(--off-white);
    line-height: 1.5;
}

/* === STOCK DISCLAIMER === */
.stock-disclaimer {
    background: var(--gradient-card);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    margin-bottom: 2rem;
    text-align: center;
}

.stock-disclaimer p {
    color: var(--off-white);
    margin: 0;
    line-height: 1.6;
}

.stock-disclaimer i {
    color: var(--cyan);
    margin-right: 0.5rem;
}

/* === WHY CHOOSE US === */
.why-choose-us {
    padding: 5rem 0;
    background: var(--dark-blue-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: var(--gradient-card);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--dark-blue);
}

.why-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.why-card p {
    color: var(--off-white);
    line-height: 1.6;
}

/* === TESTIMONIALS === */
.testimonials {
    padding: 5rem 0;
    background: var(--dark-blue);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--gradient-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    position: relative;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--off-white);
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 1.5rem;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.author-info span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* === CTA SECTION === */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-light) 100%);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--off-white);
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* === PRODUCT MODAL ENHANCEMENTS === */
.product-modal-image {
    text-align: center;
    margin-bottom: 2rem;
}

.product-modal-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.product-modal-details {
    color: var(--white);
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--cyan);
    border-bottom: 2px solid var(--cyan);
    padding-bottom: 0.5rem;
}

.specs-list {
    list-style: none;
    padding: 0;
}

.specs-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.specs-list li:last-child {
    border-bottom: none;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li:before {
    content: '✓';
    color: var(--cyan);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.reviews-container {
    max-height: 200px;
    overflow-y: auto;
}

.review-item {
    background: var(--gradient-card);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.review-user {
    font-weight: 600;
    color: var(--white);
}

.review-rating {
    color: var(--cyan);
    font-size: 1.1rem;
}

.review-comment {
    color: var(--off-white);
    line-height: 1.5;
}

.product-modal-actions {
    text-align: center;
    margin-top: 2rem;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--cyan); }
    50% { box-shadow: 0 0 40px var(--cyan), 0 0 60px var(--cyan); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-border {
    0%, 100% { border-color: var(--cyan); }
    50% { border-color: var(--cyan-light); }
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInBounce {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    60% {
        opacity: 1;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Apply animations */
.floating-laptop {
    animation: float 6s ease-in-out infinite;
}

.hero-title {
    animation: fadeInScale 1s ease-out;
}

.btn-primary:hover {
    animation: glow 1s ease-in-out infinite;
}

.why-icon {
    animation: rotate 20s linear infinite;
}

.testimonial-card:hover {
    animation: pulse-border 2s ease-in-out infinite;
}

.cta-section {
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}
