/* ========== Color Variables ========== */
:root {
    --primary-dark: #140c3a;
    --secondary-gold: #f9bd06;
    --accent-blue: #445375;
    --text-dark: #1a1a2e;
    --text-muted: #64748b;
    --white: #ffffff;
    --light-bg: #f8fafc;
}

/* ========== Menu Styles ========== */
@media(min-width:700px) {
    .side-menu__item {
        color: #fff !important;
    }
}

/* Mobile Menu */
@media (max-width: 991px) {
    .app-sidebar {
        background: var(--primary-dark) !important;
    }
    .main-sidebar {
        background: var(--primary-dark) !important;
    }
    .side-menu__item, .side-menu__label {
        color: #fff !important;
    }
    .slide-menu {
        background: rgba(20, 12, 58, 0.5) !important;
    }
    .slide-menu .side-menu__item:hover {
        background: rgba(249, 189, 6, 0.1) !important;
        color: var(--secondary-gold) !important;
    }
}

/* ========== Hero Section ========== */
.hero-section {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1f1654 50%, var(--accent-blue) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 189, 6, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(68, 83, 117, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

/* Grid Pattern */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(249, 189, 6, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 189, 6, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 189, 6, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(249, 189, 6, 0.3);
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--secondary-gold);
}

.hero-badge span {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--secondary-gold), #ffd84d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    border-color: rgba(249, 189, 6, 0.3);
}

.hero-feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary-gold), #ffd84d);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-feature-icon i {
    color: #140c3a;
    font-size: 16px;
}

.hero-feature-text h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin: 0;
}

.hero-feature-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    margin: 0;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--secondary-gold), #ffd84d);
    color: var(--primary-dark);
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(249, 189, 6, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(249, 189, 6, 0.4);
    color: var(--primary-dark);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

/* Central Icon */
.central-icon {
    position: relative;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--secondary-gold), #ffd84d);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: pulse 3s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(249, 189, 6, 0.4);
}

.central-icon i {
    font-size: 48px;
    color: var(--primary-dark);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Orbit Rings */
.orbit-ring {
    position: absolute;
    border: 2px dashed rgba(249, 189, 6, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-ring-1 {
    width: 250px;
    height: 250px;
    animation-duration: 25s;
}

.orbit-ring-2 {
    width: 350px;
    height: 350px;
    animation-duration: 35s;
    animation-direction: reverse;
}

.orbit-ring-3 {
    width: 450px;
    height: 450px;
    animation-duration: 45s;
    border-style: dotted;
}

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

/* Floating Icons */
.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconFloat 6s ease-in-out infinite;
}

.floating-icon i {
    color: var(--secondary-gold);
    font-size: 20px;
}

.floating-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.floating-icon:nth-child(3) { bottom: 25%; left: 5%; animation-delay: 2s; }
.floating-icon:nth-child(4) { bottom: 15%; right: 10%; animation-delay: 1.5s; }
.floating-icon:nth-child(5) { top: 50%; left: 0%; animation-delay: 0.5s; }
.floating-icon:nth-child(6) { top: 40%; right: 5%; animation-delay: 2.5s; }

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

/* Stat Cards */
.stat-card {
    position: absolute;
    background: rgba(20, 12, 58, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 189, 6, 0.3);
    border-radius: 16px;
    padding: 16px 24px;
    z-index: 15;
    animation: statFloat 8s ease-in-out infinite;
}

.stat-card-1 { top: 5%; right: 10%; }
.stat-card-2 { bottom: 10%; left: 5%; animation-delay: 2s; }
.stat-card-3 { top: 60%; right: 0%; animation-delay: 4s; }

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

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-gold);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========== Section Styles ========== */
.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 189, 6, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-badge i {
    color: var(--secondary-gold);
}

.section-badge span {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== Feature Cards ========== */
.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(20, 12, 58, 0.1);
    border-color: rgba(249, 189, 6, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    color: #140c3a;
    font-size: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ========== Package Cards ========== */
.packages-section {
    background: var(--light-bg);
}

.package-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    height: 100%;
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(20, 12, 58, 0.15);
    border-color: var(--secondary-gold);
}

.package-card.featured {
    border-color: var(--secondary-gold);
    background: linear-gradient(180deg, #fffbeb 0%, #fff 100%);
}

.package-card.featured::before {
    content: 'EN POPÜLER';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary-gold);
    color: var(--primary-dark);
    padding: 6px 50px;
    font-size: 10px;
    font-weight: 700;
    transform: rotate(45deg);
}

.package-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.package-icon i {
    font-size: 28px;
    color: var(--secondary-gold);
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.package-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.package-price {
    margin-bottom: 24px;
}

.package-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.package-price .currency {
    font-size: 1.2rem;
    color: var(--secondary-gold);
    font-weight: 700;
}

.package-price .period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.package-features li:last-child {
    border: none;
}

.package-features li i {
    color: var(--secondary-gold);
    font-size: 14px;
}

.package-features li strong {
    color: var(--primary-dark);
}

.btn-package {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--primary-dark);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-package:hover {
    background: var(--secondary-gold);
    color: var(--primary-dark);
}

.package-card.featured .btn-package {
    background: var(--secondary-gold);
    color: var(--primary-dark);
}

.package-card.featured .btn-package:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* ========== CTA Section ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-blue) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 189, 6, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--secondary-gold);
    color: var(--primary-dark);
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 189, 6, 0.4);
    color: var(--primary-dark);
}

/* ========== Footer ========== */
.footer-section {
    background: var(--primary-dark);
    padding: 60px 0 30px;
}

.footer-brand img {
    max-height: 50px;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* ========== Responsive ========== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-visual {
        display: none;
    }
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-features {
        flex-direction: column;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}
