/* Frontend Styles - كشك */

:root {
    --primary-color: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #6366f1;
    --secondary-color: #0ea5e9;
    --accent-color: #f59e0b;
    --dark-color: #0f172a;
    --gray-900: #0f172a;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --border-radius: 16px;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

/* ============================================
   MODERN PROFESSIONAL NAVBAR
   ============================================ */

.navbar-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 2px 20px rgba(15, 23, 42, 0.06);
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 9999;
}

.navbar-modern.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.1);
    border-bottom: 1px solid rgba(226, 232, 240, 1);
}

.navbar-modern.navbar-hidden {
    transform: translateY(-100%);
}

.navbar-spacer-modern {
    height: 90px;
}

/* Logo Container */
.navbar-brand-modern {
    text-decoration: none;
    transition: transform 0.3s ease;
}

.navbar-brand-modern:hover {
    transform: scale(1.05);
}

.logo-container-modern {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo-modern {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-modern.navbar-scrolled .navbar-logo-modern {
    height: 45px;
}

.brand-text-modern {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #4f46e5 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    display: none;
}

@media (min-width: 768px) {
    .brand-text-modern {
        display: block;
    }
}

/* Modern Toggle Button */
.navbar-toggler-modern {
    border: none;
    background: transparent;
    padding: 8px;
    cursor: pointer;
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    gap: 5px;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .navbar-toggler-modern {
        display: flex; /* Show only on mobile/tablet */
    }
}

.navbar-toggler-modern:focus {
    outline: none;
    box-shadow: none;
}

.toggler-icon-modern {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, #4f46e5 0%, #0ea5e9 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler-modern:hover .toggler-icon-modern {
    background: linear-gradient(135deg, #4338ca 0%, #0284c7 100%);
}

.navbar-toggler-modern[aria-expanded="true"] .toggler-icon-modern:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.navbar-toggler-modern[aria-expanded="true"] .toggler-icon-modern:nth-child(2) {
    opacity: 0;
}

.navbar-toggler-modern[aria-expanded="true"] .toggler-icon-modern:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Navigation Menu */
.navbar-nav-modern {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.navbar-nav-modern .nav-item {
    position: relative;
}

.navbar-nav-modern .nav-link {
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.625rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-nav-modern .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(14, 165, 233, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
    z-index: -1;
}

.navbar-nav-modern .nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.navbar-nav-modern .nav-link:hover::before {
    opacity: 1;
}

.navbar-nav-modern .nav-link.active {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
}

/* Action Buttons */
.navbar-actions-modern {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-action-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-action-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-action-modern:hover::before {
    width: 300px;
    height: 300px;
}

.btn-login-modern {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    color: white !important;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-login-modern:hover {
    background: linear-gradient(135deg, #4338ca 0%, #3730a3 100%);
    box-shadow: 0 6px 25px rgba(79, 70, 229, 0.4);
    transform: translateY(-2px);
}

.btn-register-modern {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white !important;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-register-modern:hover {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    box-shadow: 0 6px 25px rgba(14, 165, 233, 0.4);
    transform: translateY(-2px);
}

.btn-dashboard-modern {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-dashboard-modern:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

/* Mobile Menu */
@media (max-width: 991px) {
    .navbar-nav-modern {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1.5rem;
        padding: 1rem 0;
    }
    
    .navbar-actions-modern {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
        gap: 0.75rem;
    }
    
    .btn-action-modern {
        width: 100%;
        justify-content: center;
    }
    
    .navbar-nav-modern .nav-link {
        padding: 0.875rem 1rem;
        width: 100%;
    }
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .navbar-modern {
        padding: 0.75rem 0;
    }
    
    .navbar-logo-modern {
        height: 45px;
    }
    
    .navbar-spacer-modern {
        height: 75px;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 180px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/pattern.png') repeat;
    opacity: 0.03;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.75rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-subtitle-inline {
    color: rgba(255, 255, 255, 0.95);
    font-size: 3rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.25rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    margin-top: 2.5rem;
}

.btn-hero {
    padding: 1.125rem 3.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 12px;
    margin: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: var(--shadow-lg);
}

.btn-hero-primary {
    background-color: white;
    color: var(--primary-color);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-hero-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-outline:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--gray-50);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 400;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.75rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1rem;
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
    background-color: white;
}

.category-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    height: 100%;
    cursor: pointer;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.category-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.category-card:hover .category-icon {
    color: white;
    transform: scale(1.15);
}

.category-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.category-card:hover .category-title {
    color: white;
}

.category-description {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.category-card:hover .category-description {
    color: rgba(255, 255, 255, 0.95);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    opacity: 0.5;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/pattern.png') repeat;
    opacity: 0.03;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer-custom {
    background: linear-gradient(135deg, var(--gray-900) 0%, #000 100%);
    color: white;
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/pattern.png') repeat;
    opacity: 0.02;
}

.footer-main {
    position: relative;
    z-index: 2;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    margin-bottom: 2rem;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: 900;
    margin: 0;
    color: white;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon-footer {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon-footer:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.875rem;
}

.footer-link-item {
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-link-item i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.footer-link-item:hover {
    color: white;
    padding-right: 0.5rem;
}

.footer-link-item:hover i {
    transform: translateX(-3px);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    margin-top: 0.2rem;
}

.footer-contact-item a {
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-item a:hover {
    color: white;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.footer-copyright {
    color: var(--gray-500);
    margin: 0;
    font-size: 0.9rem;
}

.footer-copyright strong {
    color: white;
    font-weight: 700;
}

.footer-legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    justify-content: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal-link {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-legal-link:hover {
    color: white;
}

.footer-legal-link:hover::after {
    width: 100%;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: white;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.about-content {
    padding-right: 2rem;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 600;
}

/* Packages Section */
.packages-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    height: 100%;
    border: 2px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.package-featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, white 100%);
    transform: scale(1.05);
}

.package-featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.package-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.package-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.package-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    text-align: center;
}

.package-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-currency {
    font-size: 1.25rem;
    color: var(--gray-600);
    font-weight: 600;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--gray-500);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.package-features li {
    padding: 0.875rem 0;
    color: var(--gray-700);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--gray-100);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: var(--success-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.btn-package {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
}

.btn-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.5);
    color: white;
}

/* Store logo placeholder */
.store-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
}

.store-logo-placeholder i {
    font-size: 3rem;
    color: white;
}

.store-category {
    color: #6366f1;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.store-location {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.store-description {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* Package description */
.package-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 1.5rem 0;
    min-height: 60px;
}

.package-old-price {
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

.package-old-price del {
    color: #cbd5e1;
}

/* Stores Section */
.stores-section {
    padding: 100px 0;
    background-color: var(--gray-50);
}

.store-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.store-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.store-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
}

.store-card:hover .store-logo {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: rotate(5deg) scale(1.1);
}

.store-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.store-rating {
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.store-rating span {
    color: var(--gray-600);
    margin-right: 0.5rem;
    font-weight: 600;
}

.store-products {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
}

/* Old Footer Styles (Keep for compatibility) */
.footer-content {
    text-align: center;
}

.footer-links {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-link {
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-link:hover::after {
    width: 100%;
}

.social-icons {
    font-size: 1.5rem;
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    color: var(--gray-400);
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: var(--gray-800);
}

.social-icon:hover {
    color: white;
    background-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .navbar-logo {
        height: 50px;
    }

    .footer-logo-img {
        height: 40px;
    }

    .about-content {
        padding-right: 0;
        margin-top: 2rem;
    }

    .about-stats {
        justify-content: center;
    }

    .package-featured {
        transform: scale(1);
    }

    .footer-legal-links {
        justify-content: center;
    }

    .btn-hero {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .navbar-brand-custom {
        font-size: 1.5rem;
    }

    .about-stats {
        gap: 1rem;
    }

    .stat-item {
        flex: 1 1 calc(33.333% - 1rem);
    }
}

