/* Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #000000;
    overflow-x: hidden;
}

/* Ana sayfa scroll bar stilleri */
::-webkit-scrollbar {
    width: 12px;
    background: transparent;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 6px;
    border: 2px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    background-clip: content-box;
}

/* Firefox için scroll bar */
html {
    scrollbar-width: thin;
    scrollbar-color: #22c55e #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #0f172a;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.logo-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #22c55e;
}

.nav-link i {
    font-size: 0.8rem;
}

.header-actions .btn {
    background: #22c55e;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-actions .btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: #0f172a;
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #22c55e;
    color: white;
}

.btn-primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #0f172a;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.1rem;
}

.btn-dark {
    background: #1f2937;
    color: white;
}

.btn-dark:hover {
    background: #374151;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #22c55e;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.student-avatars {
    display: flex;
    gap: 5px;
}

.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid white;
}

.avatar-1 { background: #fbbf24; }
.avatar-2 { background: #34d399; }
.avatar-3 { background: #f87171; }
.avatar-4 { background: #a78bfa; }
.avatar-5 { background: #60a5fa; }

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-graphics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.graphic {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.graphic.rocket {
    top: 20%;
    left: 10%;
}

.graphic.book {
    bottom: 30%;
    left: 20%;
}

.graphic.lightbulb {
    top: 40%;
    right: 20%;
}

.student-images {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.student-card {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.student-card:hover {
    transform: translateY(-10px);
}

.student-card.student-1 {
    background: linear-gradient(135deg, #a78bfa, #c084fc);
}

.student-card.student-2 {
    background: linear-gradient(135deg, #86efac, #4ade80);
}

.student-card.student-3 {
    background: linear-gradient(135deg, #fda4af, #fb7185);
}

.student-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid rgba(255,255,255,0.3);
}

.student-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-info h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 600;
}

.student-info p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.categories-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.categories-showcase {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.category-hero {
    margin-bottom: 60px;
}

.hero-category {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 25px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particleFloat 20s linear infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.category-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.category-icon-large {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.category-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.category-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.category-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1rem;
    opacity: 0.8;
}

.categories-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-card-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 25px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.category-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card-modern:hover .card-glow {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.category-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.category-card-modern:hover .category-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.category-card-modern h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.category-card-modern p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.4;
}

.progress-ring {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.progress-ring svg {
    transform: rotate(-90deg);
}

.progress-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 4;
}

.progress-ring-fill {
    fill: none;
    stroke: #22c55e;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 157;
    stroke-dashoffset: 47;
    transition: stroke-dashoffset 1s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.coaching-features {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.coaching-card-modern {
    grid-column: span 2;
    grid-row: span 1;
}

.coaching-card p {
    margin-top: 10px;
    opacity: 0.9;
    font-size: 0.9rem;
}

.coaching-card .category-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.category-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e5e7eb;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.category-card.category-1 {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
}

.category-card.category-2 {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.category-card.category-3 {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.category-card.category-4 {
    background: white;
    color: #1f2937;
    border: 2px solid #e5e7eb;
}

.category-card.category-5 {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    position: relative;
    overflow: hidden;
}

.category-card.category-5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.category-card.category-6 {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.category-card.category-7 {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.category-card.category-8 {
    background: white;
    color: #1f2937;
    border: 2px solid #e5e7eb;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.category-card.category-4 .category-icon,
.category-card.category-8 .category-icon {
    background: #f3f4f6;
    color: #22c55e;
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #0f172a;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(15, 23, 42, 0.95) 100%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
    z-index: 2;
}

.main-image {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.4) 0%, rgba(34, 197, 94, 0.2) 100%);
    z-index: 1;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-image {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: #22c55e;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
    z-index: 3;
}

.overlay-image:hover {
    transform: scale(1.1);
}

.stats-cards {
    position: absolute;
    bottom: -30px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 3;
}

.stat-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 5px;
}

.stat-card .stat-label {
    font-size: 0.8rem;
    color: #374151;
    font-weight: 500;
}

.section-subtitle {
    color: #22c55e;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #22c55e;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
    font-size: 1.2rem;
}

.feature-content h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Login Section */
.login-section {
    padding: 80px 0;
    background: #f8fafc;
}

.login-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.login-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.login-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #3b82f6);
}

.card-icon {
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 3rem;
    color: #22c55e;
}

.login-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1f2937;
}

.login-card p {
    color: #6b7280;
    margin-bottom: 20px;
}

.card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #22c55e, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.login-card:hover .card-arrow {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 30px 0;
    text-align: center;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(34, 197, 94, 0.2);
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

/* Desktop'ta bottom nav gizle */
@media (min-width: 768px) {
    .bottom-nav {
        display: none !important;
    }
}

/* Mobilde bottom nav göster */
@media (max-width: 767px) {
    .bottom-nav {
        display: flex !important;
    }
    
    .footer {
        margin-bottom: 80px;
    }
    
    .footer-modern {
        margin-bottom: 80px;
    }
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 60px;
}

.nav-item i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.nav-item span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-align: center;
    transition: color 0.3s ease;
}

.nav-item:hover {
    background: rgba(34, 197, 94, 0.1);
}

.nav-item:hover i,
.nav-item:hover span {
    color: #22c55e;
}

.nav-item.active {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.nav-item.active i,
.nav-item.active span {
    color: #22c55e;
}



/* Pricing Page Styles */
.pricing-hero {
    padding: 140px 0 100px;
}

.pricing-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 2px solid #22c55e;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-header {
    margin-bottom: 30px;
}

.package-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.card-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.price {
    margin-bottom: 30px;
    color: white;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #22c55e;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 0 5px;
}

.period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.features {
    margin-bottom: 30px;
}

.features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.features .feature-item i {
    color: #22c55e;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

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

.features-section .feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.features-section .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #22c55e;
}

.features-section .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.features-section .feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.features-section .feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .categories-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .btn-large {
        padding: 15px 25px;
        font-size: 1rem;
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
    
    .student-images {
        flex-direction: column;
        gap: 15px;
    }
    
    .categories-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .coaching-card-modern {
        grid-column: span 2;
    }
    
    .hero-category {
        padding: 40px 30px;
    }
    
    .category-icon-large {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .category-content h3 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .main-image {
        height: 350px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stats-cards {
        bottom: -20px;
        left: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .stat-card {
        padding: 15px 10px;
    }
    
    .stat-card .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .student-avatars {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        
        gap: 15px;
    }
    
    .btn-large {
        width: 100%;
        min-width: auto;
    }
    
    .login-card {
        padding: 30px 20px;
    }
    
    .categories-grid-modern {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .coaching-card-modern {
        grid-column: span 1;
    }
    
    .hero-category {
        padding: 30px 20px;
    }
    
    .category-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .category-content h3 {
        font-size: 1.8rem;
    }
    
    .category-content p {
        font-size: 1rem;
    }
    
    .category-card {
        padding: 20px 12px;
    }
    
    .student-card {
        padding: 15px;
    }
    
    .student-photo {
        width: 60px;
        height: 60px;
    }
    
    .hero-stats {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-text {
        font-size: 0.8rem;
    }
    
    .main-image {
        height: 300px;
    }
    
    .features-grid {
        gap: 12px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .stats-cards {
        bottom: -15px;
        left: 10px;
        right: 10px;
    }
    
    .stat-card {
        padding: 12px 8px;
    }
    
    .stat-card .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-card .stat-label {
        font-size: 0.7rem;
    }
}

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

@keyframes particleFloat {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-50px) translateY(-50px);
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(34, 197, 94, 0.6);
    }
}

.hero-content,
.categories-content,
.about-content {
    animation: fadeInUp 0.8s ease forwards;
}

.category-card {
    animation: fadeInUp 0.6s ease forwards;
}

.category-card:nth-child(2) { animation-delay: 0.1s; }
.category-card:nth-child(3) { animation-delay: 0.2s; }
.category-card:nth-child(4) { animation-delay: 0.3s; }
.category-card:nth-child(5) { animation-delay: 0.4s; }
.category-card:nth-child(6) { animation-delay: 0.5s; }
.category-card:nth-child(7) { animation-delay: 0.6s; }
.category-card:nth-child(8) { animation-delay: 0.7s; } 

/* Ultra-modern kategoriler scroll alanı */
.categories-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
  align-items: center;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px;
}
.categories-scroll::-webkit-scrollbar {
  display: none;
}

.category-card-glass {
  min-width: 280px;
  max-width: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 32px;
  box-shadow: 0 8px 32px 0 rgba(31,41,55,0.25);
  position: relative;
  overflow: hidden;
  padding: 30px 20px 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  scroll-snap-align: start;
  transition: transform 0.3s cubic-bezier(.4,2,.3,1), box-shadow 0.3s;
  border: 2px solid rgba(34,197,94,0.12);
}
.category-card-glass:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px 0 rgba(34,197,94,0.25);
  z-index: 2;
  border-color: #22c55e;
}
.category-card-glass.special {
  min-width: 320px;
  max-width: 340px;
  border: 3px solid #22c55e;
  box-shadow: 0 0 32px 0 #22c55e55, 0 8px 32px 0 rgba(31,41,55,0.25);
  background: linear-gradient(135deg, #22c55e33 0%, #0f172a 100%);
}

.category-card-glass.physics {
  background: linear-gradient(135deg, #3b82f6cc 0%, #1e293bcc 100%);
}
.category-card-glass.chemistry {
  background: linear-gradient(135deg, #f59e0bcc 0%, #0f172acc 100%);
}
.category-card-glass.biology {
  background: linear-gradient(135deg, #10b981cc 0%, #0f172acc 100%);
}
.category-card-glass.math {
  background: linear-gradient(135deg, #a78bfa 0%, #0f172acc 100%);
}

.card-bg-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: repeating-radial-gradient(circle at 30% 70%, #fff2 1px, transparent 2px 100px),
              repeating-radial-gradient(circle at 70% 30%, #fff1 1px, transparent 2px 100px);
  animation: particlesMove 16s linear infinite;
}
@keyframes particlesMove {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 100px 100px, -100px -100px; }
}

.floating-emoji {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2.2rem;
  opacity: 0.7;
  animation: floatEmoji 3.5s ease-in-out infinite alternate;
  z-index: 2;
}
@keyframes floatEmoji {
  0% { transform: translateY(0) rotate(-10deg); }
  100% { transform: translateY(-18px) rotate(10deg); }
}

.category-icon-giant {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 4px 24px 0 #0002;
  border: 2px solid rgba(255,255,255,0.18);
  transition: background 0.3s, transform 0.3s;
}
.category-card-glass:hover .category-icon-giant {
  background: #22c55e;
  color: #fff;
  transform: scale(1.12) rotate(8deg);
}

.category-info {
  position: relative;
  z-index: 2;
  text-align: center;
}
.category-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.category-info p {
  color: #e0e7ef;
  font-size: 0.95rem;
  margin-bottom: 12px;
  font-weight: 400;
}
.category-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.98rem;
  color: #d1fae5;
  font-weight: 600;
  opacity: 0.92;
}

@media (max-width: 900px) {
  .categories-scroll {
    gap: 15px;
  }
  .category-card-glass {
    min-width: 220px;
    max-width: 240px;
    padding: 20px 12px 18px 12px;
  }
  .category-card-glass.special {
    min-width: 250px;
    max-width: 270px;
  }
  .category-icon-giant {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
}
@media (max-width: 600px) {
  .categories-scroll {
    gap: 8px;
    padding-bottom: 10px;
    padding: 20px;
  }
  .category-card-glass {
    min-width: 180px;
    max-width: 190px;
    padding: 15px 6px 12px 6px;
    border-radius: 18px;
  }
  .category-card-glass.special {
    min-width: 200px;
    max-width: 210px;
    border-width: 2px;
  }
  .category-icon-giant {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .floating-emoji {
    top: 8px;
    right: 8px;
    font-size: 1rem;
  }
  .category-info h3 {
    font-size: 1rem;
  }
  .category-info p {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }
  .category-stats {
    font-size: 0.75rem;
    gap: 4px;
  }
} 

/* Slider okları */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(31,41,55,0.18);
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 2px 12px 0 #0002;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  backdrop-filter: blur(6px);
  outline: none;
  border: 2px solid rgba(34,197,94,0.12);
}
.slider-arrow:hover {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  box-shadow: 0 0 16px 0 #22c55e99;
  border-color: #22c55e;
}

/* Dot navigasyon */
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.slider-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.18);
  box-shadow: 0 2px 8px 0 #0002;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  outline: none;
  position: relative;
}
.slider-dot.active {
  background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
  box-shadow: 0 0 0 4px #22c55e33, 0 2px 8px 0 #0002;
}
.slider-dot:after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 5px;
  left: 5px;
  opacity: 0.7;
}
.slider-dot.active:after {
  background: #fff;
  opacity: 1;
}

/* Aktif kartı öne çıkar */
.slider-track .category-card-glass {
  transform: scale(0.95);
  opacity: 0.8;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(.4,2,.3,1), box-shadow 0.4s, opacity 0.4s;
}
.slider-track .category-card-glass.active {
  transform: scale(1.05);
  box-shadow: 0 20px 48px 0 #22c55e55, 0 8px 32px 0 rgba(31,41,55,0.25);
  opacity: 1;
  z-index: 3;
  border-color: #22c55e;
}

@media (max-width: 900px) {
  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
  .slider-dot {
    width: 13px;
    height: 13px;
  }
}
@media (max-width: 600px) {
  .slider-controls {
    gap: 8px;
    margin-bottom: 8px;
  }
  .slider-arrow {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
  .slider-dots {
    gap: 7px;
    margin-top: 10px;
  }
  .slider-dot {
    width: 8px;
    height: 8px;
  }
  .slider-dot:after {
    width: 4px;
    height: 4px;
    top: 2px;
    left: 2px;
  }
} 

/* Modern Pricing Page Styles */
.pricing-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 1.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    min-width: 140px;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 1.5rem;
}

.stat-item:hover::after {
    opacity: 1;
}

.stat-number {
    position: relative;
    z-index: 2;
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    display: block;
    line-height: 1;
    animation: countUp 2s ease-out;
}

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

.stat-label {
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
    color: #e2e8f0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    animation: fadeInUp 2s ease-out 0.5s both;
}

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

/* Modern Pricing Cards */
.pricing-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-card-modern {
    position: relative;
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(34, 197, 94, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(34, 197, 94, 0.05);
}

.pricing-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.03) 0%, 
        rgba(34, 197, 94, 0.01) 25%, 
        transparent 50%, 
        rgba(34, 197, 94, 0.01) 75%, 
        rgba(34, 197, 94, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 2rem;
}

.pricing-card-modern:hover::before {
    opacity: 1;
}

.pricing-card-modern:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(34, 197, 94, 0.2);
    box-shadow: 
        0 12px 30px rgba(34, 197, 94, 0.1),
        0 0 0 1px rgba(34, 197, 94, 0.1);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(34, 197, 94, 0.03),
        transparent,
        rgba(34, 197, 94, 0.02),
        transparent
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
    animation: rotate 12s linear infinite;
}

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

.pricing-card-modern:hover .card-glow {
    opacity: 1;
}

.featured-modern {
    background: linear-gradient(145deg, 
        #0f172a 0%, 
        rgba(34, 197, 94, 0.04) 25%, 
        #1e293b 50%, 
        rgba(34, 197, 94, 0.04) 75%, 
        #0f172a 100%);
    border: 2px solid rgba(34, 197, 94, 0.15);
    transform: scale(1.03) translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(34, 197, 94, 0.1),
        0 0 0 1px rgba(34, 197, 94, 0.1);
}

.featured-modern:hover {
    transform: scale(1.03) translateY(-12px);
    box-shadow: 
        0 15px 35px rgba(34, 197, 94, 0.15),
        0 0 0 1px rgba(34, 197, 94, 0.15);
}

.featured-glow {
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(34, 197, 94, 0.15),
        transparent,
        rgba(34, 197, 94, 0.1),
        transparent
    );
}

.popular-badge-modern {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 
        0 8px 20px rgba(34, 197, 94, 0.2),
        0 0 0 1px rgba(34, 197, 94, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: softPulse 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes softPulse {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        box-shadow: 0 8px 20px rgba(34, 197, 94, 0.2);
    }
    50% { 
        transform: translateX(-50%) scale(1.02);
        box-shadow: 0 12px 25px rgba(34, 197, 94, 0.3);
    }
}

.card-header-modern {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.package-icon-modern {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.2rem;
    color: white;
    box-shadow: 
        0 8px 20px rgba(34, 197, 94, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-icon-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card-modern:hover .package-icon-modern {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 
        0 12px 25px rgba(34, 197, 94, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pricing-card-modern:hover .package-icon-modern::before {
    opacity: 1;
}

.featured-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 
        0 15px 35px rgba(251, 191, 36, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pricing-card-modern:hover .featured-icon {
    box-shadow: 
        0 25px 50px rgba(251, 191, 36, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.card-header-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.card-header-modern p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.price-modern {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 2rem 1.5rem;
    background: linear-gradient(145deg, 
        #1e293b 0%, 
        #0f172a 50%, 
        #1e293b 100%);
    border-radius: 1.5rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.price-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.1) 0%, 
        transparent 50%, 
        rgba(34, 197, 94, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 1.5rem;
}

.pricing-card-modern:hover .price-modern::before {
    opacity: 1;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.currency {
    font-size: 1.75rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.dash, .plus {
    font-size: 2.5rem;
    color: #94a3b8;
    font-weight: 700;
    margin: 0 0.25rem;
}

.period {
    font-size: 1.1rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.features-modern {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.feature-item-modern {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.feature-item-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item-modern:hover::before {
    opacity: 1;
}

.feature-item-modern:hover {
    transform: translateX(5px);
    padding-left: 0.5rem;
}

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

.feature-item-modern .feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.feature-item-modern .feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item-modern:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.feature-item-modern:hover .feature-icon::before {
    opacity: 1;
}

.feature-item-modern span {
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-item-modern:hover span {
    color: #ffffff;
}

/* Modern Buttons */
.btn-modern {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    width: 100%;
}

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

.btn-modern:hover::before {
    left: 100%;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

.featured-btn {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.featured-btn:hover {
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

.btn-outline-modern {
    background: transparent;
    color: #22c55e;
    border: 2px solid #22c55e;
}

.btn-outline-modern:hover {
    background: #22c55e;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Modern Features Section */
.features-section-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

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

.section-header-modern h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.section-header-modern p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card-modern {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    border-color: rgba(34, 197, 94, 0.3);
}

.feature-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    transition: transform 0.3s ease;
}

.feature-card-modern:hover .feature-icon-modern {
    transform: scale(1.1);
}

.feature-card-modern h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.feature-card-modern p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Modern CTA Section */
.cta-section-modern {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
}

.cta-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.cta-content-modern {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content-modern h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content-modern p {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-modern {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        min-width: 120px;
        flex: 1;
        max-width: 150px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-modern {
        transform: none;
    }
    
    .featured-modern:hover {
        transform: translateY(-10px);
    }
    
    .pricing-card-modern {
        padding: 2rem;
    }
    
    .package-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .cta-content-modern h2 {
        font-size: 2rem;
    }
    
    .cta-buttons-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-modern {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card-modern {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .stat-item {
        padding: 1.25rem 1rem;
        min-width: 100%;
        max-width: none;
        flex: none;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .pricing-card-modern {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .currency {
        font-size: 1.25rem;
    }
    
    .cta-content-modern h2 {
        font-size: 1.75rem;
    }
    
    .cta-content-modern p {
        font-size: 1rem;
    }
} 

/* Modern Footer Styles */
.footer-modern {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 4rem 0 0 0;
    overflow: hidden;
}

.footer-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.03) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* Brand Section */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.footer-logo .logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
    border-color: rgba(34, 197, 94, 0.3);
}

/* Footer Links */
.footer-links h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 1px;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #22c55e;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

/* Contact Section */
.footer-contact h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 1px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.1);
    transform: translateX(5px);
}

.contact-item i {
    color: #22c55e;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.contact-item span {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

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

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #22c55e;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-modern {
        padding: 3rem 0 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: 1;
    }
    
    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-modern {
        padding: 2rem 0 0 0;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-item {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Modern Login Page Styles */
.login-bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    z-index: -2;
}

.login-bg-animation::before {
    display: none;
}

.floating-elements {
    display: none;
}

.floating-element {
    display: none;
}

.floating-element:nth-child(1) { display: none; }
.floating-element:nth-child(2) { display: none; }
.floating-element:nth-child(3) { display: none; }
.floating-element:nth-child(4) { display: none; }

@keyframes floatElement {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.6;
    }
}

.login-container-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.back-btn-modern {
    position: absolute;
    top: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    z-index: 10;
}

.back-btn-modern:hover {
    color: #22c55e;
    transform: translateX(-5px);
}

.login-card-modern {
    position: relative;
    background: rgb(255 255 255 / 2%);
    border-radius: 0.5rem;
    padding: 3rem;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    max-width: 450px;
    width: 100%;
    overflow: hidden;
}

.card-glow {
    display: none;
}

.login-card-modern:hover .card-glow {
    display: none;
}

.login-header-modern {
    text-align: center;
    margin-bottom: 2.5rem;
}

.logo-modern {
    margin-bottom: 2rem;
}

.logo-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.logo-modern h1 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.logo-modern p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Form Styles */
.login-form-modern {
    margin-bottom: 2rem;
}

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

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: #94a3b8;
    font-size: 1.1rem;
    z-index: 2;
    transition: color 0.3s ease;
}

.input-wrapper.focused .input-icon {
    color: #22c55e;
}

.input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.input-wrapper input:focus {
    outline: none;
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.input-wrapper input::placeholder {
    color: transparent;
}

.input-wrapper label {
    position: absolute;
    left: 3rem;
    top: 1rem;
    color: #94a3b8;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-wrapper.focused label,
.input-wrapper input:not(:placeholder-shown) + label {
    top: 0.5rem;
    left: 3rem;
    font-size: 0.8rem;
    color: #22c55e;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    transition: width 0.3s ease;
}

.input-wrapper.focused .input-line {
    width: 100%;
}

.toggle-password-modern {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.toggle-password-modern:hover {
    color: #22c55e;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-modern input {
    display: none;
}

.checkmark-modern {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-modern input:checked + .checkmark-modern {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-color: #22c55e;
}

.checkbox-modern input:checked + .checkmark-modern::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
}

.checkbox-text {
    color: #94a3b8;
    font-size: 0.9rem;
}

.forgot-link {
    color: #22c55e;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.forgot-link:hover {
    color: #16a34a;
    text-decoration: underline;
}

/* Login Button */
.login-btn-modern {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
    border-radius: 1rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.login-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

/* Divider */
.divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.divider span {
    background: rgba(15, 23, 42, 0.95);
    padding: 0 1rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Social Login */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-btn.google:hover {
    color: #ea4335;
}

.social-btn.microsoft:hover {
    color: #00a4ef;
}

/* Footer */
.login-footer-modern {
    text-align: center;
}

.login-footer-modern p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.register-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.register-link:hover {
    color: #16a34a;
    transform: translateX(3px);
}

/* Welcome Section */
.welcome-section {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    max-width: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
}

.welcome-content h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.welcome-content p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item i {
    color: #22c55e;
    font-size: 1rem;
}

.feature-item span {
    color: #e2e8f0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (min-width: 1200px) {
    .welcome-section {
        display: block;
    }
}

@media (max-width: 768px) {
    .login-container-modern {
        padding: 1rem;
    }
    
    .back-btn-modern {
        top: 1rem;
        left: 1rem;
    }
    
    .login-card-modern {
        padding: 2rem;
    }
    
    .logo-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .logo-modern h1 {
        font-size: 1.75rem;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .social-login {
        gap: 0.75rem;
    }
    
    .social-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .login-card-modern {
        padding: 1.5rem;
    }
    
    .logo-modern h1 {
        font-size: 1.5rem;
    }
    
    .logo-modern p {
        font-size: 0.85rem;
    }
    
    .input-wrapper input {
        padding: 0.75rem 0.75rem 0.75rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .input-icon {
        left: 0.75rem;
        font-size: 1rem;
    }
    
    .input-wrapper label {
        left: 2.5rem;
        font-size: 0.9rem;
    }
    
    .input-wrapper.focused label,
    .input-wrapper input:not(:placeholder-shown) + label {
        left: 2.5rem;
        font-size: 0.75rem;
    }
}