/* Vortex Strategies Ltd. - Gaming-Inspired CSS */

:root {
    --primary: #00ff88;
    --primary-light: #33ffaa;
    --primary-dark: #00cc6a;
    --secondary: #00b4d8;
    --gold: #00e5ff;
    --primary-glow: rgba(0, 255, 136, 0.45);
    --secondary-glow: rgba(0, 180, 216, 0.35);

    --dark-bg: #060d09;
    --darker-bg: #040a06;
    --card-bg: #0d1a10;
    --card-hover: #112015;

    --text-primary: #ffffff;
    --text-secondary: #b0adb8;
    --text-muted: #6b6876;

    --font-gaming: 'Orbitron', monospace;
    --font-body: 'Space Grotesk', sans-serif;

    --glow-shadow: 0 0 24px var(--primary-glow);
    --card-shadow: 0 8px 32px rgba(0, 255, 136, 0.12);
}

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

body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Particle Background */
.particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(11, 11, 14, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.12);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-gaming);
    font-weight: 900;
    font-size: 1.2rem;
}

.nav-logo {
    font-size: 1.4rem;
    color: var(--primary);
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-title {
    background: linear-gradient(90deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle-line {
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    background: radial-gradient(ellipse at 50% 40%, rgba(0, 255, 136, 0.08) 0%, transparent 65%),
                radial-gradient(ellipse at 80% 80%, rgba(0, 180, 216, 0.05) 0%, transparent 50%);
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-avatar {
    margin-bottom: 3rem;
    animation: float 6s ease-in-out infinite;
}

.avatar-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border: 3px solid var(--primary);
    border-radius: 50%;
    padding: 1rem;
    background: rgba(19, 19, 24, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px var(--primary-glow), 0 0 60px rgba(0, 255, 136, 0.15);
    animation: pulse-fire 3s ease-in-out infinite;
}

.avatar-svg {
    width: 100%;
    height: 100%;
}

.hero-title {
    font-family: var(--font-gaming);
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 0.9;
}

.title-gradient {
    background: linear-gradient(135deg, var(--primary), var(--gold), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.5));
}

.title-normal {
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.hero-description {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

/* App Store Badges */
.store-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.25);
    border-radius: 12px;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    min-width: 160px;
}

.store-badge:hover {
    background: rgba(0, 255, 136, 0.12);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 255, 136, 0.2);
    color: #fff;
}

.store-badge-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

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

.store-badge-text small {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;
}

.store-badge-text strong {
    display: block;
    font-family: var(--font-gaming);
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #fff;
}

/* Buttons */
.btn {
    font-family: var(--font-gaming);
    font-weight: 700;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.5);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-loading {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.section-title {
    font-family: var(--font-gaming);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 255, 136, 0.07), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: translateX(100%);
}

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

.service-icon {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.12), rgba(0, 180, 216, 0.08));
    border: 1px solid rgba(0, 255, 136, 0.25);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.9rem;
    color: var(--primary);
    transition: all 0.35s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.22), rgba(0, 180, 216, 0.15));
    border-color: var(--primary);
    box-shadow: 0 0 28px rgba(0, 255, 136, 0.35);
    transform: scale(1.1) rotate(-4deg);
    color: #fff;
}

.service-card h3 {
    font-family: var(--font-gaming);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-tech {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

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

.about-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.85;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--card-bg);
    border: 1px solid rgba(0, 255, 136, 0.12);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.15);
}

.stat-number {
    font-family: var(--font-gaming);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 300px;
}

.tech-icon {
    width: 72px;
    height: 72px;
    background: rgba(0, 255, 136, 0.07);
    border: 1px solid rgba(0, 255, 136, 0.18);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    animation: float 4s ease-in-out infinite;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-icon:hover {
    background: rgba(0, 255, 136, 0.16);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.25);
    color: #fff;
}

.tech-icon:nth-child(2n) {
    animation-delay: -2s;
}

.tech-icon:nth-child(3n) {
    animation-delay: -4s;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
}

.team-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.team-card {
    flex: 0 1 340px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.team-card:hover {
    border-color: rgba(0, 255, 136, 0.45);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.12);
}

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

.team-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.team-avatar-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    margin-bottom: 8px;
}

.team-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 255, 136, 0.35);
    display: block;
    position: relative;
    z-index: 1;
    filter: grayscale(20%);
    transition: filter 0.3s ease, border-color 0.3s ease;
}

.team-card:hover .team-avatar {
    filter: grayscale(0%);
    border-color: var(--primary);
}

.team-avatar-glow {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.team-card:hover .team-avatar-glow {
    opacity: 1;
}

.team-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.12);
    border: 1px solid rgba(0, 255, 136, 0.4);
    color: var(--primary);
    font-family: 'Orbitron', monospace;
    font-size: 0.65rem;
    letter-spacing: 3px;
    padding: 4px 16px;
    border-radius: 20px;
}

.team-badge.co-founder {
    background: rgba(0, 229, 255, 0.12);
    border-color: rgba(0, 229, 255, 0.4);
    color: var(--gold);
}

.team-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.team-role {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.team-bio {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.7;
    margin: 4px 0 8px;
}

.team-socials {
    margin-top: 4px;
}

.team-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 119, 181, 0.12);
    border: 1px solid rgba(0, 119, 181, 0.35);
    color: #60a5fa;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.team-linkedin:hover {
    background: rgba(0, 119, 181, 0.3);
    border-color: #60a5fa;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 119, 181, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid rgba(0, 255, 136, 0.12);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    background: rgba(7, 7, 9, 0.6);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.form-group select option {
    background: #131318;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.2);
}

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

.file-upload-area {
    border: 2px dashed rgba(0, 255, 136, 0.25);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.file-upload-area:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.04);
}

.file-upload-area input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-text {
    pointer-events: none;
}

.file-upload-text i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: block;
}

.file-upload-text span {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.file-upload-text small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.file-list {
    margin-top: 1rem;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 255, 136, 0.08);
    border-radius: 6px;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(0, 255, 136, 0.3);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: rgba(0, 255, 136, 0.18);
    border-color: var(--primary);
    box-shadow: 0 0 16px rgba(0, 255, 136, 0.25);
}

.contact-details h4 {
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    font-family: var(--font-gaming);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
}

.alert-warning {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.4);
    color: var(--gold);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.6rem;
    color: var(--primary);
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-title {
    font-family: var(--font-gaming);
    font-weight: 900;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.95rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 0;
    font-style: italic;
    font-size: 0.85rem;
}

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 136, 0.08);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-fire {
    0%, 100% { box-shadow: 0 0 24px rgba(0, 255, 136, 0.4), 0 0 48px rgba(0, 255, 136, 0.1); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 136, 0.6), 0 0 80px rgba(0, 255, 136, 0.2); }
}

.pulse-1 {
    animation: pulse-dot 2s ease-in-out infinite;
}

.pulse-2 {
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.pulse-3 {
    animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

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

/* Selection styling */
::selection {
    background: var(--primary);
    color: #fff;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .store-badges {
        flex-direction: column;
        align-items: center;
    }

    .store-badge {
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .team-grid {
        gap: 24px;
    }

    .team-card {
        flex: 0 1 100%;
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-section {
        padding: 1rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}
