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

:root {
    /* Brand Colors */
    --primary-color: #1a237e;      /* Deep Navy */
    --accent-color: #7c4dff;       /* Electric Violet */
    --secondary-color: #4db6ac;    /* Mint Green */
    --neutral-color: #757575;      /* Warm Gray */
    
    /* Extended Color System */
    --primary-light: #3f51b5;
    --primary-dark: #0d47a1;
    --accent-light: #b388ff;
    --accent-dark: #651fff;
    --secondary-light: #80cbc4;
    --secondary-dark: #00695c;
    --neutral-light: #bdbdbd;
    --neutral-dark: #424242;
    
    /* Text Colors */
    --text-primary: #212121;
    --text-secondary: #757575;
    --text-light: #ffffff;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-dark: #1a237e;
    
    /* Spacing System (8px grid) */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 1.5rem;   /* 24px */
    --space-lg: 2rem;     /* 32px */
    --space-xl: 3rem;     /* 48px */
    --space-2xl: 4rem;    /* 64px */
    --space-3xl: 6rem;    /* 96px */
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-sm: 0.875rem;  /* 14px */
    --font-size-base: 1rem;    /* 16px */
    --font-size-lg: 1.125rem;  /* 18px */
    --font-size-xl: 1.25rem;   /* 20px */
    --font-size-2xl: 1.5rem;   /* 24px */
    --font-size-3xl: 2rem;     /* 32px */
    --font-size-4xl: 2.5rem;   /* 40px */
    
    /* Shadows and Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-neon: 0 0 20px rgba(124, 77, 255, 0.3);
    
    /* Border Radius */
    --radius-sm: 0.375rem;  /* 6px */
    --radius-md: 0.5rem;    /* 8px */
    --radius-lg: 0.75rem;   /* 12px */
    --radius-xl: 1rem;      /* 16px */
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: var(--font-size-4xl);
}

h2 {
    font-size: var(--font-size-3xl);
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

p {
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    min-height: 48px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-neon);
    color: var(--text-light);
}

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

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--text-light);
}

/* Header */
.header {
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    padding: var(--space-sm) 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(124, 77, 255, 0.2));
}

.brand-name h1 {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}

.brand-name span {
    font-size: var(--font-size-sm);
    color: var(--neutral-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="30" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2xl);
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h2 {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.hero-illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-top: var(--space-lg);
}

.station-illustration,
.birthday-illustration,
.app-illustration,
.product-illustration {
    width: 100%;
    height: 200px;
    margin-bottom: var(--space-md);
}
.hero-placeholder {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

/* Placeholder Images */
.placeholder-image {
    background-color: var(--bg-secondary);
    border: 2px dashed var(--neutral-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-color);
    font-weight: 500;
    text-align: center;
    padding: var(--space-lg);
    min-height: 200px;
    transition: all var(--transition-normal);
}

.placeholder-image:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background-color: rgba(124, 77, 255, 0.05);
}

/* Section Styles */
section {
    padding: var(--space-3xl) 0;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.section-header p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Welcome Section */
.welcome {
    background-color: var(--bg-secondary);
    text-align: center;
}

.welcome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.welcome-item {
    text-align: center;
    padding: var(--space-xl);
    background-color: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.welcome-item:hover {
    transform: translateY(-4px);
}

.welcome-item .icon {
    margin-bottom: var(--space-md);
}

.welcome-item .icon svg {
    width: 48px;
    height: 48px;
}

.welcome-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

/* Stations Section */
.stations {
    text-align: center;
}

.stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-xl);
}

.station-card {
    background-color: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.station-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.station-card .placeholder-image {
    margin-bottom: var(--space-md);
    height: 200px;
}

.station-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.station-card ul {
    list-style: none;
}

.station-card li {
    padding: var(--space-xs) 0;
    position: relative;
    padding-left: var(--space-md);
}

.station-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Packages Section */
.packages {
    background-color: var(--bg-secondary);
    text-align: center;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.package-card {
    background-color: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--text-light);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.07) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.package-card h3 {
    margin-bottom: var(--space-md);
}

.price {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: var(--space-md);
}

.package-card.featured .price {
    color: var(--text-light);
}

.price span {
    font-size: var(--font-size-base);
    font-weight: normal;
    color: var(--text-secondary);
}

.package-card.featured .price span {
    color: rgba(255, 255, 255, 0.8);
}

.package-card ul {
    list-style: none;
    margin-bottom: var(--space-xl);
    text-align: left;
}

.package-card li {
    padding: var(--space-xs) 0;
    position: relative;
    padding-left: var(--space-md);
}

.package-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.package-card.featured li::before {
    color: var(--text-light);
}

/* Birthday Section */
.birthday {
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.1), rgba(77, 182, 172, 0.1));
    text-align: center;
}

.birthday-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.birthday-text h2 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.birthday-text p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-md);
}

.birthday-text ul {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.birthday-text li {
    padding: var(--space-xs) 0;
    position: relative;
    padding-left: var(--space-md);
}

.birthday-text li::before {
    content: '🎉';
    position: absolute;
    left: 0;
}

/* Membership Section */
.membership {
    background-color: var(--bg-secondary);
    text-align: center;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.membership-tier {
    background-color: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
}

.membership-tier:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.membership-tier h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
    font-size: var(--font-size-2xl);
}

.membership-tier .price {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: var(--space-md);
}

.membership-tier ul {
    list-style: none;
    text-align: left;
}

.membership-tier li {
    padding: var(--space-xs) 0;
    position: relative;
    padding-left: var(--space-md);
}

.membership-tier li::before {
    content: '⭐';
    position: absolute;
    left: 0;
}

/* App Section */
.app-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    text-align: center;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.app-text h2 {
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.app-text p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.app-text ul {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.app-text li {
    padding: var(--space-xs) 0;
    position: relative;
    padding-left: var(--space-md);
}

.app-text li::before {
    content: '📱';
    position: absolute;
    left: 0;
}

.coming-soon {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    font-weight: 600;
}

/* Products Section */
.products {
    background-color: var(--bg-secondary);
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.product-card {
    background-color: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
}

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

.product-card .placeholder-image {
    margin-bottom: var(--space-md);
    height: 180px;
}

.product-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.product-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.product-price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: var(--space-md);
}

/* Contacts Section */
.contacts {
    padding: var(--space-3xl) 0;
    text-align: center;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background-color: var(--bg-secondary);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-icon svg {
    width: 40px;
    height: 40px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-xs);
    font-size: var(--font-size-lg);
}

.contact-info p {
    margin: 0;
    font-weight: 600;
}

.contact-info a {
    color: var(--text-primary);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--accent-color);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-lg);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-brand .logo {
    width: 40px;
    height: 40px;
}

.footer-brand .brand-name {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-brand .brand-name h3 {
    color: var(--text-light);
    font-size: var(--font-size-xl);
    margin: 0;
}

.footer-brand .brand-name span {
    color: rgba(255, 255, 255, 0.7);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-sm);
    line-height: 1.4;
    margin: 0;
}

.footer-links h4 {
    color: var(--text-light);
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-lg);
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

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

.footer-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: var(--space-xs);
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--font-size-sm);
}

.footer-contact .contact-item span:first-child {
    font-size: var(--font-size-base);
}

.footer-contact .contact-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.footer-contact .contact-item a:hover {
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    
    .birthday-content,
    .app-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: var(--font-size-3xl);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stations-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .membership-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .footer-contact {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    section {
        padding: var(--space-2xl) 0;
    }
    
    .hero {
        padding: var(--space-2xl) 0;
    }
    
    .hero-text h2 {
        font-size: var(--font-size-2xl);
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: var(--space-sm);
    }
}