/* --- Global Styles & Resets --- */
:root {
    --primary-color: #6a1b9a; /* Deep Purple */
    --secondary-color: #7c6eb0; /* Soft Purple */
    --light-bg: #f3e5f5; /* Light Lavender */
    --white: #ffffff;
    --dark-text: #333333;
    --light-text: #5a6478;
}
  .logo-container {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .logo img {
      height: 55px;
      width: 55px;
    }

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    /* Sticky Footer Implementation */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

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

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-color);
}
.section-title p {
    font-size: 18px;
    color: var(--light-text);
}


/* --- Header & Navigation --- */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

#nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

#nav-links li a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

#nav-links li a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}
.dropdown-content, .sub-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-top: 10px;
    padding: 5px 0;
}
.dropdown:hover .dropdown-content { display: block; }

.dropdown-content a {
    color: var(--dark-text);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover { background-color: #f1f1f1; }
.sub-dropdown { position: relative; }
.sub-dropdown-content { top: -5px; left: 100%; }
.sub-dropdown:hover .sub-dropdown-content { display: block; }


/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('privilegesBG.jpeg') no-repeat center center/cover;
    filter: blur(4px) brightness(0.7);
    z-index: -1;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}


/* --- Services Section --- */
.services-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.service-card {
    background-color: #fdfcff;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 15px 0 10px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 1rem;
    margin: 0 20px 20px;
    flex-grow: 1;
}

.card-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 20px 25px;
}
.details-btn, .book-btn {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
}
.details-btn {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}
.details-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}
.book-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}
.book-btn:hover {
    background-color: #5a4b8d;
    border-color: #5a4b8d;
}


/* --- Promo Section --- */
.promo-section {
    background: #ede9f3;
    padding: 60px 0;
}
.promo-container {
    display: flex;
    align-items: center;
    gap: 40px;
}
.promo-image { flex: 1; }
.promo-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.promo-content { flex: 1; }
.promo-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.promo-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}
.promo-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.promo-btn {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s;
}
.promo-btn:hover { background-color: #5a4b8d; }


/* --- Popup & Accordion --- */
.popup {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}
.popup-content {
    background-color: var(--white);
    padding: 20px;
    width: 95%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    position: relative;
    animation: fadeIn 0.5s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.close-btn {
    color: #aaa;
    position: absolute;
    top: 15px; right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}
.close-btn:hover { color: var(--primary-color); }
.popup-header { text-align: center; padding: 10px 25px; }
.popup-header h2 { font-size: 2.2em; color: var(--primary-color); margin: 0; }
.popup-header p { font-size: 1.1em; color: var(--dark-text); margin-top: 10px; }
.accordion { margin: 20px; }
.accordion-item { border: 1px solid #ddd; border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.accordion-header {
    background-color: var(--light-bg);
    color: var(--primary-color);
    cursor: pointer;
    padding: 18px 20px;
    width: 100%;
    border: none; text-align: left;
    outline: none; font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.4s ease;
    display: flex; justify-content: space-between; align-items: center;
}
.accordion-header:hover { background-color: #e1bee7; }
.accordion-header::after { content: '+'; font-size: 1.8em; }
.accordion-header.active::after { content: "−"; }
.accordion-body {
    padding: 20px;
    background-color: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}
.accordion-body h4 { color: var(--primary-color); margin-top: 20px; padding-bottom: 5px; border-bottom: 1px solid #eee; }
.accordion-body ul { list-style: none; padding-left: 5px; }
.price-tag { font-weight: bold; color: #d32f2f; }
.special-offer { background-color: #fff9c4; border: 1px dashed #f9a825; padding: 15px; margin-top: 15px; border-radius: 8px; text-align: center; }
.popup-footer { text-align: center; margin: 20px; padding: 20px; background: var(--light-bg); border-radius: 8px; }
.popup-footer h3 { margin-top: 0; color: var(--primary-color); }
.popup-footer a { color: var(--primary-color); text-decoration: none; font-weight: bold; }
.popup-footer a:hover { text-decoration: underline; }


/* --- Footer --- */
footer {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--primary-color);
    color: white;
}
.social-icons a {
    color: white;
    margin: 0 10px 10px;
    font-size: 24px;
    transition: color 0.3s;
    display: inline-block;
}
.social-icons a:hover { color: #f0db4f; }


/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    header { background: var(--white); }
    #nav-links {
        display: none; flex-direction: column;
        width: 100%; background: white;
        position: absolute; top: 100%; left: 0;
        padding: 15px 0; text-align: center;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    #nav-links.active { display: flex; }
    #nav-links li { padding: 10px 0; }
    .menu-toggle { display: block; }
    .dropdown:hover .dropdown-content { display: none; }
    .hero-section { height: 50vh; }
    .hero-heading { font-size: 2.5rem; }
    .promo-container { flex-direction: column; text-align: center; }
    .promo-buttons { justify-content: center; }
}
