/* Dana Font Family */
@font-face {
    font-family: 'Dana';
    src: url('Fonts/Dana-UltraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Dana';
    src: url('Fonts/Dana-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Dana';
    src: url('Fonts/Dana-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Dana';
    src: url('Fonts/Dana-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Dana';
    src: url('Fonts/Dana-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Dana';
    src: url('Fonts/Dana-DemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Dana';
    src: url('Fonts/Dana-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Dana';
    src: url('Fonts/Dana-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Dana';
    src: url('Fonts/Dana-Heavy.ttf') format('truetype');
    font-weight: 850;
    font-style: normal;
}

@font-face {
    font-family: 'Dana';
    src: url('Fonts/Dana-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Dana';
    src: url('Fonts/Dana-ExtraBlack.ttf') format('truetype');
    font-weight: 950;
    font-style: normal;
}

/* Medina Font for Headings */
@font-face {
    font-family: 'Medina';
    src: url('Fonts/Medina.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Root Variables */
:root {
    --primary-color: #1e3a5f;
    --secondary-color: #2d4a6b;
    --accent-color: #3a5f8f;
    --navy-dark: #0f1f35;
    --navy-medium: #1a2f4f;
    --navy-light: #4a6fa5;
    --gold-dark: #b8860b;
    --gold-medium: #d4af37;
    --gold-light: #D4AF37;
    --gold-accent: #daa520;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark: #0f1f35;
    --dark-blue: #1e3a5f;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --bg-light: #f9fafb;
    --bg-lighter: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Dana', 'Segoe UI', Tahoma, sans-serif;
    direction: rtl;
    text-align: right;
    background: #050a14;
    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #0a1526 0%, #0f1f35 50%, #050a14 100%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    animation: slideDown 0.5s ease-out;
    border-bottom: 3px solid rgba(255, 215, 0, 0.6);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 56px;
    height: 56px;
    background: transparent;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-text h1 {
    font-size: 22px;
    font-weight: 900;
    color: white;
    margin: 0;
    line-height: 1.2;
    font-family: 'Medina', 'Dana', sans-serif;
}

.logo-text span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-family: 'Dana', sans-serif;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
}

.main-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a i {
    font-size: 16px;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Submenu Styles */
.main-nav li.has-submenu {
    position: relative;
}

.main-nav li.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: rgba(15, 31, 53, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 8px;
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.submenu li {
    margin: 0;
}

.submenu a {
    display: block;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Dana', sans-serif;
}

.submenu a:hover {
    background: rgba(255, 215, 0, 0.15);
    color: #D4AF37;
    transform: translateX(-5px);
}

.register-btn-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #D4AF37 0%, #E6C200 100%);
    color: #050a14;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6), 0 0 0 0 rgba(255, 215, 0, 0.8);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 215, 0, 0.8), 0 0 25px 8px rgba(255, 215, 0, 0.6);
    }
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.register-btn-header:hover .btn-glow {
    opacity: 1;
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.register-btn-header:hover .btn-content {
    transform: scale(1.05);
}

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

.register-btn-header:hover .btn-shine {
    left: 100%;
}

.register-btn-header:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 35px rgba(255, 215, 0, 0.8), 0 0 35px 12px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #E6C200 0%, #F5E6D3 100%);
}

.register-btn-header:active {
    transform: translateY(-1px) scale(1.02);
}

.register-btn-header i {
    font-size: 16px;
    animation: bounce-icon 1s ease-in-out infinite;
}

@keyframes bounce-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.mobile-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.mobile-menu-btn.active {
    background: rgba(255, 255, 255, 0.4);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(135deg, #0a1526 0%, #0f1f35 100%);
    z-index: 9999;
    padding: 80px 0 40px;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.6);
    border-left: 3px solid rgba(255, 215, 0, 0.6);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.mobile-menu-nav {
    padding: 0 30px;
}

.mobile-menu-nav ul {
    list-style: none;
}

.mobile-menu-nav li {
    margin-bottom: 8px;
}

.mobile-menu-nav a {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.mobile-menu-nav i {
    font-size: 20px;
    width: 24px;
}

/* Mobile Submenu */
.mobile-menu-nav .has-submenu .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 0, 0, 0.3);
    margin: 10px 0 0 20px;
    padding: 10px 0;
    border: none;
    box-shadow: none;
    border-right: 2px solid rgba(255, 215, 0, 0.3);
}

.mobile-menu-nav .has-submenu .submenu a {
    padding: 10px 20px;
    font-size: 14px;
}

.mobile-register-btn {
    margin: 30px;
    display: block;
    background: linear-gradient(135deg, #D4AF37 0%, #E6C200 100%);
    color: #050a14;
    padding: 18px;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.mobile-register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.8);
    background: linear-gradient(135deg, #E6C200 0%, #F5E6D3 100%);
}

.mobile-register-btn i {
    margin-left: 8px;
}

/* Hero Slider - Full Width */
.hero-slider {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 10, 20, 0.95) 0%, rgba(10, 21, 38, 0.92) 50%, rgba(5, 10, 20, 0.95) 100%);
}

.hero-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    max-width: 700px;
    color: white;
    z-index: 10;
}

.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-family: 'Medina', 'Dana', sans-serif;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #E6C200 100%);
    color: #050a14;
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.6);
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(255, 215, 0, 0.8);
    background: linear-gradient(135deg, #E6C200 0%, #F5E6D3 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 48px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px 24px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 32px;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-info h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-info p {
    font-size: 14px;
    opacity: 0.9;
}

.hero-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-size: 24px;
    padding: 16px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 100;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.hero-btn.prev {
    right: 30px;
}

.hero-btn.next {
    left: 30px;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.hero-dot.active,
.hero-dot:hover {
    background: linear-gradient(135deg, #0f1f35 0%, #1a2f4f 100%);
    transform: scale(1.3);
}

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

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

.feature-card {
    text-align: center;
    padding: 40px 24px;
    background: linear-gradient(135deg, #0f1f35 0%, #1a2f4f 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    border-color: #D4AF37;
    background: linear-gradient(135deg, #0a1526 0%, #0f1f35 100%);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #0f1f35, #1a2f4f);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #D4AF37;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    border: 3px solid rgba(255, 215, 0, 0.6);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Dana', sans-serif;
}

.feature-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #050a14 0%, #0a1526 100%);
}

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

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D4AF37;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.section-title-main {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Medina', 'Dana', sans-serif;
}

.section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.service-category {
    margin-bottom: 80px;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 24px;
    background: linear-gradient(135deg, #0f1f35 0%, #1a2f4f 100%);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.category-header .category-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.category-icon.health {
    background: linear-gradient(135deg, #0f1f35, #0a1526);
    color: #D4AF37;
    border: 3px solid rgba(255, 215, 0, 0.6);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.category-icon.cultural {
    background: linear-gradient(135deg, #0a1526, #050a14);
    color: #D4AF37;
    border: 3px solid rgba(255, 215, 0, 0.6);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.category-icon.entertainment {
    background: linear-gradient(135deg, #050a14, #0a1526);
    color: #D4AF37;
    border: 3px solid rgba(255, 215, 0, 0.6);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.category-title {
    flex: 1;
    margin: 0 24px;
}

.category-title h3 {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    font-family: 'Medina', 'Dana', sans-serif;
}

.category-title p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.1);
}

.view-all-link:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(-5px);
    border-color: #D4AF37;
    color: #E6C200;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card.premium {
    background: linear-gradient(135deg, #0f1f35 0%, #1a2f4f 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid rgba(255, 215, 0, 0.4);
}

.service-card.premium:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
    border-color: #D4AF37;
    background: linear-gradient(135deg, #0a1526 0%, #0f1f35 100%);
}

.service-card.premium.service-inactive {
    filter: grayscale(100%);
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.service-card.premium.service-inactive:hover {
    transform: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 215, 0, 0.2);
}

.service-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.15);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 10, 20, 0.95), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #D4AF37, #E6C200);
    color: #050a14;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.service-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7);
    background: linear-gradient(135deg, #E6C200, #F5E6D3);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #D4AF37, #E6C200);
    color: #050a14;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-badge.new {
    background: linear-gradient(135deg, #0f1f35, #1a2f4f);
    color: #D4AF37;
    border: 2px solid rgba(255, 215, 0, 0.6);
}

.service-badge.hot {
    background: linear-gradient(135deg, #D4AF37, #E6C200);
    color: #050a14;
    animation: shake 0.5s infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes shake {
    0%, 100% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

.service-info {
    padding: 28px;
}

.service-category-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.service-category-tag.cultural {
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.service-category-tag.entertainment {
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.service-info h3 {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Dana', sans-serif;
}

.service-info p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.service-features i {
    color: var(--success-color);
    font-size: 12px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1526 0%, #0f1f35 50%, #050a14 100%);
    overflow: hidden;
    border-top: 3px solid rgba(255, 215, 0, 0.6);
    border-bottom: 3px solid rgba(255, 215, 0, 0.6);
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-content {
    color: white;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: 'Medina', 'Dana', sans-serif;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 16px;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #E6C200 100%);
    color: #050a14;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(255, 215, 0, 0.7);
    background: linear-gradient(135deg, #E6C200 0%, #F5E6D3 100%);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.cta-image {
    position: relative;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #050a14 0%, #0a1526 100%);
    color: white;
    padding: 60px 0 30px;
    border-top: 3px solid rgba(255, 215, 0, 0.6);
}

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

.footer-section h3 {
    color: #D4AF37;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Dana', sans-serif;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 12px;
}

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

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

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: #E6C200;
    transform: translateX(-5px);
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.4);
    padding-top: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }

    .hero-container {
        padding: 0 20px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-item {
        width: 100%;
        justify-content: center;
    }

    .cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-image {
        order: -1;
    }

    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .view-all-link {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    /* Header */
    .header-content {
        gap: 12px;
    }

    .logo {
        gap: 10px;
    }

    .logo-icon {
        width: 48px;
        height: 48px;
    }
    
    .logo-icon img {
        width: 100%;
        height: 100%;
    }

    .logo-text h1 {
        font-size: 18px;
    }

    .logo-text span {
        font-size: 12px;
    }

    .main-nav {
        display: none;
    }

    .register-btn-header {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Hero Slider */
    .hero-slider {
        height: 500px;
    }

    .hero-container {
        flex-direction: column;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        display: none;
    }

    .hero-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .hero-btn.prev {
        right: 15px;
    }

    .hero-btn.next {
        left: 15px;
    }

    .hero-dots {
        bottom: 20px;
    }

    /* Features */
    .features-section {
        padding: 50px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

    /* Services */
    .services-section {
        padding: 60px 0;
    }

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

    .section-title-main {
        font-size: 28px;
    }

    .section-description {
        font-size: 15px;
    }

    .service-category {
        margin-bottom: 50px;
    }

    .category-header {
        padding: 20px;
    }

    .category-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .category-title h3 {
        font-size: 22px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card.premium {
        min-width: 100%;
    }

    .service-image {
        height: 220px;
    }

    .service-info {
        padding: 20px;
    }

    .service-info h3 {
        font-size: 20px;
    }

    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-image img {
        border-radius: 16px;
    }

    /* Footer */
    .main-footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 450px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .section-title-main {
        font-size: 24px;
    }

    .service-card.premium {
        border-radius: 16px;
    }

    .service-image {
        height: 180px;
    }

    .cta-content h2 {
        font-size: 24px;
    }
}
