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

:root {
    --primary-color: #ADD8E6;
    --primary-dark: #87CEEB;
    --primary-darker: #5F9EA0;
    --primary-darkest: #4682B4;
    --bg-dark: #0a0e1a;
    --bg-darker: #05080f;
    --glass-bg: rgba(173, 216, 230, 0.1);
    --glass-border: rgba(173, 216, 230, 0.2);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 50%, var(--bg-dark) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    padding-top: 80px;
}

/* Animated Background Circles */
.background-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: 10%;
    left: -100px;
    animation-duration: 25s;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-dark);
    top: 50%;
    left: -50px;
    animation-duration: 30s;
    animation-delay: -5s;
}

.circle-3 {
    width: 350px;
    height: 350px;
    background: var(--primary-darker);
    top: 20%;
    right: -100px;
    animation-duration: 28s;
    animation-delay: -10s;
}

.circle-4 {
    width: 250px;
    height: 250px;
    background: var(--primary-darkest);
    bottom: 20%;
    right: -50px;
    animation-duration: 32s;
    animation-delay: -15s;
}

.circle-5 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    bottom: 10%;
    left: 10%;
    animation-duration: 35s;
    animation-delay: -8s;
}

@keyframes float {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1);
    }
    25% {
        transform: translateX(50px) translateY(-30px) scale(1.1);
    }
    50% {
        transform: translateX(100px) translateY(20px) scale(0.9);
    }
    75% {
        transform: translateX(30px) translateY(-20px) scale(1.05);
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 2rem;
    padding-bottom: 8rem;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    z-index: 2;
}

.main-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(173, 216, 230, 0.3);
    animation: fadeInDown 1s ease-out;
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-card {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: none;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(173, 216, 230, 0.5);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Packages Section */
.packages-section {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
    background: transparent;
}

.packages-section:first-of-type {
    padding-top: 6rem;
    padding-bottom: 3rem;
}

.packages-section:not(:first-of-type) {
    padding-top: 1rem;
    padding-bottom: 4rem;
    margin-top: -1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 0;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Split Section */
.split-section {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
}

.split-section-item {
    display: flex;
    flex-direction: column;
}

.split-section-item .section-title {
    font-size: 2.5rem;
    text-align: center;
}

.split-section-item .section-subtitle {
    text-align: center;
    margin-bottom: 1.5rem;
}

.split-section-item .pricing-toggle-container {
    justify-content: center;
    margin-bottom: 2rem;
}

.split-divider {
    width: 1px;
    background: rgba(173, 216, 230, 0.2);
    align-self: stretch;
    margin: 0 1rem;
}

/* Pricing Toggle */
.pricing-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.pricing-toggle {
    display: flex;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 0.5rem;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.toggle-option {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.toggle-option:hover {
    color: var(--primary-color);
    background: rgba(173, 216, 230, 0.1);
}

.toggle-option.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 12px rgba(173, 216, 230, 0.3);
}

.toggle-option.active:hover {
    color: white;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.split-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* Package Card */
.package-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(173, 216, 230, 0.25);
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

.package-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(173, 216, 230, 0.5);
}

.price-unit {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-left: 0.5rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    margin-top: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: #4ade80;
    flex-shrink: 0;
}

.package-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-darker), var(--primary-darkest));
    border: none;
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(70, 130, 180, 0.3);
    margin-top: 1rem;
    flex-shrink: 0;
}

.package-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(70, 130, 180, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
}

.package-button:active {
    transform: translateY(0);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
    
    .split-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .split-divider {
        width: 100%;
        height: 1px;
        margin: 1rem 0;
    }
    
    .split-section-item .section-title {
        text-align: center;
        font-size: 2rem;
    }
    
    .split-section-item .section-subtitle {
        text-align: center;
    }
    
    .split-section-item .pricing-toggle-container {
        justify-content: center;
    }
    
    .split-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

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

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .split-grid {
        grid-template-columns: 1fr;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
}

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

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.brand-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Cart Link */
.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

.cart-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cart-badge {
    display: flex;
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border-radius: 12px;
    min-width: 20px;
    height: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    line-height: 20px;
    text-align: center;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.6), 0 0 0 3px rgba(255, 255, 255, 0.2);
    }
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    margin: 0;
    display: flex;
    align-items: center;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

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

/* Login Button */
.nav-item .login-button,
.navbar-actions .login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--primary-color) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    margin: 0;
    white-space: nowrap;
}

.login-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(173, 216, 230, 0.2), transparent);
    transition: left 0.5s ease;
}

.login-button:hover::before {
    left: 100%;
}

.login-button::after {
    display: none;
}

.login-button:hover {
    background: rgba(173, 216, 230, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(173, 216, 230, 0.3);
    color: var(--primary-color) !important;
}

.login-button:active {
    transform: translateY(0);
}

/* User Menu */
.user-dropdown {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
    padding: 0.5rem 0;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.user-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    overflow: hidden;
}

.user-dropdown:hover .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.dropdown-item:hover {
    background: rgba(173, 216, 230, 0.1);
    color: var(--primary-color);
}

.admin-panel-link {
    position: relative;
}

.admin-panel-link svg,
.admin-panel-link {
    animation: adminGlow 2.5s ease-in-out infinite;
}

@keyframes adminGlow {
    0%, 100% {
        filter: drop-shadow(0 0 3px rgba(59, 130, 246, 0.4));
        color: var(--text-secondary);
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.7)) drop-shadow(0 0 12px rgba(59, 130, 246, 0.4));
        color: rgba(59, 130, 246, 0.9);
    }
}

.services-link {
    position: relative;
}

.services-link svg,
.services-link {
    animation: servicesGlow 2.5s ease-in-out infinite;
}

@keyframes servicesGlow {
    0%, 100% {
        filter: drop-shadow(0 0 3px rgba(34, 197, 94, 0.4));
        color: var(--text-secondary);
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.7)) drop-shadow(0 0 12px rgba(34, 197, 94, 0.4));
        color: rgba(34, 197, 94, 0.9);
    }
}

.dropdown-balance {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
}

.balance-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.balance-amount {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
}

.dropdown-divider {
    height: 1px;
    background: rgba(173, 216, 230, 0.1);
    margin: 0.5rem 0;
}

/* Footer */
.footer {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(173, 216, 230, 0.4);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
}

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

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(173, 216, 230, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Pricing Toggle */
@media (max-width: 768px) {
    .pricing-toggle {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .toggle-option {
        width: 100%;
        text-align: center;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

/* Responsive Navbar */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .navbar-container {
        padding: 0.75rem 1.5rem;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--glass-border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .navbar-menu.active {
        max-height: 400px;
        padding: 1rem 0;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0 1.5rem;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(173, 216, 230, 0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .navbar-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 2rem;
}

.testimonials-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.testimonials-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.testimonial-card {
    min-width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-quote {
    position: relative;
    margin-bottom: 2.5rem;
}

.quote-mark {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    opacity: 0.3;
    position: absolute;
    font-family: Georgia, serif;
}

.quote-open {
    top: -1rem;
    left: -1.5rem;
}

.quote-close {
    bottom: -2rem;
    right: 0;
    transform: rotate(180deg);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
    padding: 0 2rem;
    font-style: italic;
    max-height: 8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(173, 216, 230, 0.2);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
}

.testimonial-avatar.default {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border: 3px solid var(--primary-color);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.testimonial-rating .star {
    width: 20px;
    height: 20px;
    color: #fbbf24;
    fill: none;
    stroke-width: 2;
}

.testimonial-rating .star.filled {
    fill: #fbbf24;
    color: #fbbf24;
}

.author-location {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(173, 216, 230, 0.4);
}

.testimonial-nav-btn:active {
    transform: scale(0.95);
}

.testimonial-nav-btn svg {
    width: 24px;
    height: 24px;
}

.testimonial-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.testimonial-nav-btn:disabled:hover {
    background: var(--glass-bg);
    color: var(--primary-color);
    transform: none;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(173, 216, 230, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

.testimonial-dot:hover {
    background: var(--primary-dark);
}

/* Sidebar */
.sidebar {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.sidebar-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1rem 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    align-items: center;
}

.sidebar-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.sidebar-logo:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(173, 216, 230, 0.3);
}

.sidebar-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sidebar-divider {
    width: 32px;
    height: 1px;
    background: rgba(173, 216, 230, 0.2);
    margin: 0.25rem 0;
    flex-shrink: 0;
}

.sidebar-item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.sidebar-item svg {
    width: 24px;
    height: 24px;
}

.sidebar-item:hover {
    background: rgba(173, 216, 230, 0.1);
    color: var(--primary-color);
    transform: scale(1.1);
}

.sidebar-item.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(173, 216, 230, 0.4);
}

.sidebar-item.active:hover {
    color: white;
    transform: scale(1.05);
}

.sidebar-item::after {
    content: attr(title);
    position: absolute;
    right: 60px;
    background: var(--bg-dark);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sidebar-item:hover::after {
    opacity: 1;
    visibility: visible;
    right: 55px;
}

/* Responsive Sidebar */
@media (max-width: 1024px) {
    .sidebar {
        right: 1rem;
    }
    
    .sidebar-container {
        padding: 0.75rem 0.5rem;
        gap: 0.5rem;
    }
    
    .sidebar-item {
        width: 44px;
        height: 44px;
    }
    
    .sidebar-item svg {
        width: 20px;
        height: 20px;
    }
    
    .sidebar-item::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .sidebar {
        right: 0.5rem;
        top: auto;
        bottom: 2rem;
        transform: none;
    }
    
    .sidebar-container {
        padding: 0.5rem;
        gap: 0.5rem;
        border-radius: 20px;
    }
    
    .sidebar-item {
        width: 40px;
        height: 40px;
    }
    
    .sidebar-item svg {
        width: 18px;
        height: 18px;
    }
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .testimonial-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .testimonial-nav-btn.prev-btn {
        left: 1rem;
    }

    .testimonial-nav-btn.next-btn {
        right: 1rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .quote-mark {
        font-size: 4rem;
    }

    .quote-open {
        left: -1rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Team Section */
.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(173, 216, 230, 0.3);
    background: rgba(173, 216, 230, 0.15);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 3px solid var(--glass-border);
    position: relative;
    box-shadow: 0 0 15px rgba(173, 216, 230, 0.2);
    transition: all 0.3s ease;
}

.team-card:hover .team-avatar {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(173, 216, 230, 0.5);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-avatar img {
    transform: scale(1.1);
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.team-card:hover .team-name {
    color: var(--primary-color);
}

.team-role {
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ADD8E6, #87CEEB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: 0.5px;
}

.team-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Team Section Responsive */
@media (max-width: 768px) {
    .team-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .team-card {
        padding: 1rem 0.5rem;
    }

    .team-avatar {
        width: 100px;
        height: 100px;
    }

    .team-name {
        font-size: 1.2rem;
    }

    .team-role {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .team-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .team-card {
        padding: 0.75rem 0.5rem;
    }

    .team-avatar {
        width: 80px;
        height: 80px;
    }

    .team-name {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .team-role {
        font-size: 0.85rem;
    }
}

/* User Modal Styles */
.user-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.user-modal.active {
    display: flex;
}

.user-modal-content {
    background: rgba(10, 14, 26, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.user-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.user-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.modal-close:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

.user-modal-body {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.user-modal-footer {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.user-modal-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.user-modal-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-dark);
}

.user-modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(173, 216, 230, 0.3);
}

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

.user-modal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
}

/* Toast Notification Animations */
.toast-notification {
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.toast-notification[style*="opacity: 1"] {
    opacity: 1;
    transform: translateX(0);
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    max-width: 100%;
}

.cookie-consent-banner.cookie-consent-visible {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 250px;
}

.cookie-consent-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.cookie-consent-message {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.cookie-consent-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.cookie-consent-btn-primary {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.cookie-consent-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(173, 216, 230, 0.4);
}

.cookie-consent-btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

.cookie-consent-btn-secondary:hover {
    background: rgba(173, 216, 230, 0.1);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1rem;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cookie-consent-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-consent-btn {
        width: 100%;
    }
}

