:root {
    --primary-color: #83fff7;
    /* Gold */
    --secondary-color: #d8a0b0;
    /* Soft Pink / Rose Gold ish */
    --accent-color: #87CEEB;
    /* Sky Blue */
    --text-color: #333;
    --light-bg: #e0e0e0;
    --white: #ebebeb;
    --glass-bg: rgba(230, 230, 230, 0.9);
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cinzel', serif;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #83fff7ff;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.692);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 15px 0;
}

#header-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.desktop-nav a:hover {
    color: white;
}

.btn-nav {
    border: 1px solid var(--text-color);
    padding: 8px 20px;
    border-radius: 25px;
}

.btn-nav:hover {
    color: var(--white);
    background: var(--primary-color);
    border-color: var(--primary-color);

}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #83fff7ff;
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.938);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    z-index: 999;
    text-align: center;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu li {
    margin: 15px 0;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 70px);
    background: url('assets/hero_background.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Slight darken for text readability */
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-style: italic;
    opacity: 0.9;
}

.btn-primary {
    background: var(--primary-color);
    color: #393535;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-primary:hover {
    background: #5ee0d8;
    transform: translateY(-2px);
}

/* Services */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: #676b6b;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title h3 {
    font-size: 2.5rem;
    margin: 10px 0;
}

.subtitle-text {
    font-style: italic;
    color: #666;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.service-image img:hover {
    transform: scale(1.02);
}

.feature-list {
    margin: 20px 0;
    background: #e5e5e5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.feature-list h4 {
    color: #676b6b;
    margin-bottom: 15px;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: start;
}

.ideal-for {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #555;
    background: #e2e2e2;
    padding: 15px;
    border-left: 4px solid var(--secondary-color);
}

.highlight-quote {
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #323232;
    margin-bottom: 30px;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
}

.divider {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 20px 0;
    opacity: 0.5;
}

.bg-light {
    background-color: #d9d9d9;
}

/* Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.package-header {
    background: #dcdcdc;
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.featured .package-header {
    background: var(--primary-color);
    color: white;
}

.featured .package-header h3,
.featured .package-header h4 {
    color: #312e2e;
}

.package-header h3 {
    font-size: 1.1rem;
    color: #888;
    margin: 0;
}

.package-header h4 {
    font-size: 1.4rem;
    margin: 5px 0 0;
}

.package-body {
    padding: 30px;
    text-align: center;
}

.package-body ul {
    text-align: left;
    margin-bottom: 25px;
}

.package-body li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: #151616;
    padding: 10px 25px;
    border-radius: 25px;
    display: inline-block;
    font-weight: bold;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #151616;
}

/* Prayer Section */
.prayer-section {
    background: url('assets/hero_background.png') no-repeat center center/cover;
    position: relative;
    color: white;
    text-align: center;
}

.prayer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Darker overlay for text */
}

.prayer-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
}

.prayer-text p {
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    font-style: italic;
}

.prayer-text h2 {
    color: var(--primary-color);
    text-shadow: 0 1px 2px black;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
    text-align: center;
}

.footer-cta h3 {
    color: var(--primary-color);
    font-size: 2rem;
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #1ebc59;
}

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #888;
}

/* Floating WhatsApp Button */
#whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

#whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }

    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1.5s ease-out;
}

.fade-up {
    animation: fadeInUp 1s ease-out;
}

.slide-in-left {
    animation: slideInLeft 1s ease-out;
}

.slide-in-right {
    animation: slideInRight 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}