:root {
    /* Light Theme Colors */
    /*
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --card-bg: #f8f8f8;
    --primary-red: #cc0000;
    --accent-red: #ff3333;
    --border-color: #dddddd;
    --header-bg: rgba(255, 255, 255, 0.95);
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    */
    --bg-color: #0f0f0f;
    --text-color: #f1f1f1;
    --card-bg: #1a1a1a;
    --primary-red: #e60000;
    --accent-red: #ff4d4d;
    --border-color: #333333;
    --header-bg: rgba(15, 15, 15, 0.95);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

@media (prefers-color-scheme: dark) {
    :root {
        /* Dark Theme Colors */
        --bg-color: #0f0f0f;
        --text-color: #f1f1f1;
        --card-bg: #1a1a1a;
        --primary-red: #e60000;
        --accent-red: #ff4d4d;
        --border-color: #333333;
        --header-bg: rgba(15, 15, 15, 0.95);
        --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: background 0.3s, color 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    background: var(--header-bg);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

nav {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--primary-red);
}

.logo .accent {
    color: var(--primary-red);
}

.nav-right {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 15px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.btn-nav {
    background: var(--primary-red);
    text-decoration: none;
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
}

/* Mobile button hidden by default */
.mobile-book-btn {
    display: none;
}


/* Mobile View */
@media (max-width: 768px) {

    /* Show button in header */
    .mobile-book-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        padding: 7px 12px;
        margin-left: auto;
        margin-right: 12px;
        white-space: nowrap;
    }

    /* Hide menu version */
    .desktop-book-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1520340356584-f9917d1eea6f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.2rem, 7vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero .highlight {
    color: var(--accent-red);
}

.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-red);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

/* Services */
.services {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.underline {
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    margin: 10px auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--primary-red);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-transform: uppercase;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--card-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.features {
    list-style: none;
    margin-top: 20px;
}

.features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features i {
    color: var(--primary-red);
}

.about-tagline {
    background: var(--primary-red);
    padding: 60px 20px;
    border-radius: 15px;
    color: white;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Plans Section Styling */
.plans {
    padding: 80px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.plan-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow);
}

.plan-header h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.plan-card .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 12px;
    font-size: 1rem;
}

.plan-features i {
    margin-right: 10px;
    color: var(--primary-red);
}

/* Color Accents from Poster */
.starter {
    border-top: 5px solid #007bff;
}

.standard {
    border-top: 5px solid #28a745;
}

.value {
    border-top: 5px solid #fd7e14;
}

.premium {
    border-top: 5px solid #dc3545;
}

/* Popular Badge */
.popular {
    border: 2px solid #28a745;
    transform: translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-plan {
    background: transparent;
    border: 1px solid var(--primary-red);
    color: var(--text-color);
    padding: 10px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-plan:hover {
    background: var(--primary-red);
    color: white;
}

/* Inclusions Styling */
.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.inclusion-box h4 {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.inclusion-box ul {
    list-style: none;
}

.inclusion-box li {
    padding: 5px 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.inclusion-box li::before {
    content: "•";
    color: var(--primary-red);
    font-weight: bold;
    margin-right: 10px;
}

/* Responsive Inclusions */
@media (max-width: 768px) {
    .inclusions-grid {
        grid-template-columns: 1fr;
    }

    .popular {
        transform: none;
        margin-top: 20px;
    }
}

/* Contact */
.contact {
    padding: 100px 0;
    text-align: center;
}

.contact-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-info {
    margin: 30px 0;
    font-size: 1.2rem;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transform: scale(1.05);
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: 0.3s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 70%;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
        padding: 0 40px;
    }
}