/* General Styling - Dark Theme */
:root {
    --primary-color: #7c5cff;
    --secondary-color: #00d4ff;
    --text-dark: #eee;
    --text-light: #fff;
    --bg-main: #121212;
    --bg-card: #1f1f2e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--bg-main);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: rgba(31, 31, 46, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar a.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu ul li a {
    text-decoration: none;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    transition: color 0.3s;
}

.nav-menu ul li a:hover {
    color: var(--secondary-color);
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* Hero Section */
.hero-launch {
    text-align: center;
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.hero-launch h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-launch .subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.highlight {
    font-weight: 700;
    color: #ffeb3b;
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    background: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

/* Packages Section - Slider */
.packages-section {
    padding: 5rem 2rem;
    background: var(--bg-main);
    text-align: center;
}

.section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.image-slider {
    position: relative;
    width: 90%;
    max-width: 600px;
    height: 400px;
    overflow: hidden;
    perspective: 1000px;
}

.image-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transform: rotateY(90deg) scale(0.8);
    transition: all 0.7s ease-in-out;
}

.image-slide.active-image-slide {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
    z-index: 10;
}

.image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.card-details {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    text-align: left;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    padding: 1rem;
    border-radius: 10px;
}

.card-details h3 {
    margin: 0;
    font-size: 1.5rem;
}

.card-details .price {
    font-size: 1.2rem;
    margin-top: 5px;
}

.card-details .new-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffeb3b;
}

.card-details .duration {
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Package Details Slider */
.package-details-slider {
    position: relative;
    width: 90%;
    max-width: 600px;
    min-height: 400px;
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: var(--text-dark);
}

.package-slide {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease-in-out;
    text-align: left;
}

.package-slide.active-package-slide {
    opacity: 1;
    transform: translateY(0);
    z-index: 10;
}

.package-slide h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #4CAF50;
}

.package-slide ul {
    list-style: none;
    margin-top: 1rem;
}

.package-slide ul li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.package-slide ul li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "✔️";
    position: absolute;
    left: 0;
    color: #4CAF50;
}

.brochure-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 2rem;
}

.brochure-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 92, 255, 0.4);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-controls button {
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-controls button:hover {
    background: var(--primary-color);
    color: white;
}

/* Contact Section */
.contact-section {
    background: #1f1f2e;
    color: var(--text-dark);
    padding: 5rem 2rem;
    text-align: center;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-btn i {
    margin-right: 0.8rem;
}

.whatsapp-btn {
    background: #25d366;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.email-btn {
    background: #4CAF50;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.contact-info {
    margin-top: 2rem;
    font-style: italic;
    color: #999;
}

/* Footer */
footer {
    background: #0d0d0d;
    color: #ccc;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-social a {
    color: #ccc;
    font-size: 1.2rem;
    margin: 0 0.8rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.copyright {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #888;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slider-container {
        flex-direction: column;
    }
    .image-slider, .package-details-slider {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--bg-card);
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    .nav-menu.active {
        display: block;
    }
    .nav-menu ul {
        flex-direction: column;
        padding: 1rem;
    }
    .nav-menu ul li {
        text-align: center;
        margin: 0.5rem 0;
    }
    .hamburger-menu {
        display: block;
    }
    .hero-launch h1 {
        font-size: 2rem;
    }
    .hero-launch .subtitle {
        font-size: 1rem;
    }
}
