/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e50914;
    --primary-dark: #b20710;
    --secondary-color: #141414;
    --text-dark: #141414;
    --text-light: #f5f5f5;
    --text-gray: #757575;
    --bg-light: #f8f9fa;
    --bg-dark: #0a0a0a;
    --gradient-primary: linear-gradient(135deg, #e50914 0%, #ff6b6b 100%);
    --gradient-dark: linear-gradient(135deg, #141414 0%, #2a2a2a 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Prompt', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
}

.logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-wheel-nav {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: var(--text-dark) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-wheel-nav:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-wheel-nav::after {
    display: none;
}

.nav-toggle {
    display: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(20, 20, 20, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Prompt', sans-serif;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--text-dark);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* Features Section */
.features {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--text-light);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Packages Section */
.packages {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    min-height: 100px;
}

.package-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    display: block;
    visibility: visible;
    opacity: 1;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-badge.bestseller {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: var(--text-dark);
}

.package-header {
    background: var(--gradient-dark);
    color: var(--text-light);
    padding: 2rem;
    text-align: center;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.package-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.3rem;
}

.package-price .currency {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.package-price .amount {
    font-size: 3rem;
    font-weight: 700;
}

.package-features {
    list-style: none;
    padding: 2rem;
}

.package-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-dark);
    border-bottom: 1px solid #f0f0f0;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--primary-color);
}

.btn-package {
    width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 1.2rem;
    font-size: 1.1rem;
}

/* Reviews Section */
.reviews {
    background: var(--text-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-rating {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-rating i {
    transition: color 0.3s ease;
}

.review-rating .far {
    color: #ddd;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
}

.review-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.review-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: var(--gradient-dark);
    color: var(--text-light);
}

.contact .section-title {
    color: var(--text-light);
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.contact-content {
    text-align: center;
}

.contact-channels {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.contact-channel:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.contact-channel i {
    font-size: 2.5rem;
}

.contact-channel.line i {
    color: #06c755;
}

.contact-channel.facebook i {
    color: #0084ff;
}

.contact-channel.phone i {
    color: var(--primary-color);
}

.contact-channel h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.contact-channel p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.contact-note p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-note i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--text-light);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: var(--gradient-dark);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 2rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Rating Stars */
.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: var(--transition);
    margin: 0;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
    color: #ffd700;
}

.rating-stars input:checked + label {
    color: #ffd700;
}

.order-summary {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.order-summary h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.order-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.order-steps {
    margin-bottom: 2rem;
}

.order-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .contact-channels {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .features-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
    .feature-card,
    .review-card {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .feature-card.visible,
    .review-card.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Notification Toast - UX/UI */
.notification-toast {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    min-width: 350px;
    max-width: 450px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.notification-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-toast.success {
    border-left: 4px solid #06c755;
}

.notification-toast.error {
    border-left: 4px solid #e50914;
}

.notification-toast.info {
    border-left: 4px solid #0084ff;
}

.notification-toast.warning {
    border-left: 4px solid #ffd700;
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 1.2rem 1.5rem;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.notification-toast.success .notification-icon {
    background: linear-gradient(135deg, #06c755 0%, #00e676 100%);
    color: #fff;
}

.notification-toast.error .notification-icon {
    background: linear-gradient(135deg, #e50914 0%, #ff6b6b 100%);
    color: #fff;
}

.notification-toast.info .notification-icon {
    background: linear-gradient(135deg, #0084ff 0%, #00c6ff 100%);
    color: #fff;
}

.notification-toast.warning .notification-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #141414;
}

.notification-body {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.notification-message {
    font-size: 0.9rem;
    color: #757575;
    line-height: 1.5;
    word-break: break-word;
}

.notification-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.3rem;
    color: #999;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    color: var(--text-dark);
}

.notification-progress {
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    animation: progressShrink linear forwards;
}

.notification-toast.success .notification-progress {
    animation-duration: 3s;
    background: linear-gradient(90deg, #06c755, #00e676);
}

.notification-toast.error .notification-progress {
    animation-duration: 5s;
    background: linear-gradient(90deg, #e50914, #ff6b6b);
}

.notification-toast.info .notification-progress {
    animation-duration: 3s;
    background: linear-gradient(90deg, #0084ff, #00c6ff);
}

.notification-toast.warning .notification-progress {
    animation-duration: 4s;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

@media (max-width: 768px) {
    .notification-toast {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        top: 80px;
    }
    
    .notification-content {
        padding: 1rem;
    }
    
    .notification-message {
        font-size: 0.85rem;
    }
}

/* Pagination Buttons */
.pagination-btn {
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #e50914 0%, #ff6b6b 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Prompt', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.pagination-info {
    font-weight: 600;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

/* Maintenance Mode Overlay */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Package Detail Modal Styles */
.modal-content-large {
    max-width: 450px;
}

.package-detail-content {
    text-align: center;
}

.package-detail-header {
    background: var(--gradient-dark);
    color: var(--text-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.package-detail-header h2 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.package-detail-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.3rem;
}

.package-detail-price .currency {
    font-size: 1.2rem;
    margin-top: 0.3rem;
    color: var(--primary-color);
}

.package-detail-price span:not(.currency) {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.package-detail-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.package-detail-highlight {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: var(--text-dark);
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.package-detail-highlight i {
    color: #b8860b;
}

.package-detail-features-title {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    text-align: left;
}

.package-detail-features {
    list-style: none;
    padding: 0;
    text-align: left;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.package-detail-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-dark);
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.package-detail-features li:last-child {
    border-bottom: none;
}

.package-detail-features i {
    color: var(--primary-color);
    font-size: 1rem;
}

.package-detail-actions {
    display: flex;
    gap: 0.8rem;
}

.package-detail-actions .btn {
    flex: 1;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .notification-toast {
        right: 10px;
        left: 10px;
        min-width: auto;
    }
    
    .package-detail-actions {
        flex-direction: column;
    }
    
    .modal-content-large {
        max-width: 90%;
        margin: 10px;
    }
    
    .package-detail-header {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .package-detail-header h2 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .package-detail-price span:not(.currency) {
        font-size: 1.8rem;
    }
    
    .package-detail-desc {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .package-detail-highlight {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .package-detail-features {
        padding: 0.8rem;
    }
    
    .package-detail-features li {
        padding: 0.4rem 0;
        font-size: 0.8rem;
    }
    
    .package-detail-actions .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}
