/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --peacock-blue: #1B3C5D;
    --lotus-pink: #E37CA6;
    --gold: #FFD700;
    --ivory-white: #FFF9F0;
    --white: #FFFFFF;
    --light-gold: #FFF8DC;
    --dark-blue: #0F2A3D;
    --light-pink: #F8E8E3;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --shadow: 0 4px 20px rgba(27, 60, 93, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Playfair Display', 'Noto Serif Devanagari', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--ivory-white) 0%, var(--light-pink) 100%);
    min-height: 100vh;
}

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



/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--gold);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--peacock-blue);
}

.nav-logo i {
    color: var(--gold);
    font-size: 2rem;
}

.nav-logo-img {
    height: 32px;
    width: auto;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--peacock-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.admin-btn {
    background: var(--peacock-blue);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.admin-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--peacock-blue);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(32, 32, 32, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%), 
                url('../images/timing section.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pichwai" patternUnits="userSpaceOnUse" width="50" height="50"><circle cx="25" cy="25" r="2" fill="%23FFD700" opacity="0.1"/><path d="M10 20 Q25 10 40 20" stroke="%23E29578" stroke-width="1" fill="none" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23pichwai)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    position: relative;
    max-width: 900px;
    padding: 40px;
}

.hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    color: var(--white);
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1.1;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-transform: uppercase;
}

.hero-text p {
    font-size: 1.6rem;
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.7;
    color: #f8f9fa;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 15px;
    /* Removed glass effect */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero Timings Card */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

.hero-timings {
    width: 100%;
    max-width: 520px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    padding: 16px;
    backdrop-filter: blur(6px);
    text-align: left;
}

.hero-timings-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
}

.hero-timings-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}

.hero-timings-list li {
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.t-time {
    font-weight: 700;
    color: var(--gold);
}

.t-label {
    opacity: 0.95;
}

.hero-timings-link {
    display: inline-block;
    margin-top: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed rgba(255,255,255,0.6);
}

@media (max-width: 600px) {
    .hero-timings {
        padding: 12px;
    }
    .hero-timings-list {
        grid-template-columns: 1fr;
    }
}

.cta-button {
    background: rgba(255, 255, 255, 0.1);
    /* Removed glass effect */
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 45px;
    font-size: 1.3rem;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.05);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 60px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.cta-button:hover::after {
    opacity: 1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-4px) scale(0.98);
    transition: all 0.1s ease;
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: scale(1.1) rotate(5deg);
}



@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes textGlow {
    0% { text-shadow: 0 0 5px var(--gold); }
    100% { text-shadow: 0 0 20px var(--gold), 0 0 30px var(--gold); }
}

/* Floating Elements */
.floating-lotus {
    position: fixed;
    width: 30px;
    height: 30px;
    background: var(--lotus-pink);
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
    animation: float 15s linear infinite;
}

.floating-cow {
    position: fixed;
    width: 40px;
    height: 40px;
    background: var(--peacock-blue);
    border-radius: 50%;
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
    animation: float 25s linear infinite;
}

/* Package Card Selected State */
.package-card.selected {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

/* Section Dividers */
.section-divider {
    width: 100%;
    height: 60px;
    background: var(--ivory-white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section-divider svg {
    width: 100%;
    height: 100%;
}

/* Packages Section */
.packages {
    padding: 80px 0;
    background: var(--white);
}

.packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--peacock-blue);
    position: relative;
}

.packages h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--gold), var(--lotus-pink));
    border-radius: 2px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--peacock-blue), var(--lotus-pink));
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 109, 119, 0.2);
    border-color: var(--gold);
}

/* Custom package background colors */
.package-card.lal {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: white;
}

.package-card.sharan {
    background: linear-gradient(135deg, #FFEB3B, #FFC107);
    color: #333;
}

.package-card.sankalp {
    background: linear-gradient(135deg, #9C27B0, #673AB7);
    color: white;
}

.package-card.lal .package-header h3,
.package-card.lal .package-features li,
.package-card.lal .price {
    color: white;
}

.package-card.sharan .package-header h3,
.package-card.sharan .package-features li {
    color: #333;
}

.package-card.sharan .price {
    color: #333;
}

.package-card.sankalp .package-header h3,
.package-card.sankalp .package-features li,
.package-card.sankalp .price {
    color: white;
}

.package-card.lal .feature-icon path,
.package-card.lal .feature-icon circle,
.package-card.lal .feature-icon rect {
    stroke: white;
    fill: white;
}

.package-card.lal .feature-icon path:not([fill="none"]) {
    fill: white;
}

.package-card.sharan .feature-icon path,
.package-card.sharan .feature-icon circle,
.package-card.sharan .feature-icon rect {
    stroke: #333;
}

.package-card.sharan .feature-icon path:not([fill="none"]) {
    fill: #333;
}

.package-card.sankalp .feature-icon path,
.package-card.sankalp .feature-icon circle,
.package-card.sankalp .feature-icon rect {
    stroke: white;
    fill: white;
}

.package-card.sankalp .feature-icon path:not([fill="none"]) {
    fill: white;
}

.package-header {
    text-align: center;
    margin-bottom: 25px;
}

.package-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--peacock-blue);
    margin-bottom: 10px;
}

.package-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 5px;
}

.package-price small {
    font-size: 1rem;
    color: var(--text-light);
}

.package-features {
    list-style: none;
    margin-bottom: 25px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.package-features .feature-icon {
    color: var(--gold);
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}

/* Image-based laddu icon sizing */
.laddu-icon {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 50%;
}

/* Generic food image icon */
.food-icon {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 6px;
}

/* Ensure Font Awesome icons display properly in all packages */
.package-card.lal .feature-icon.fas,
.package-card.lal .feature-icon.fab,
.package-card.lal .feature-icon.far {
    color: white;
}

.package-card.sharan .feature-icon.fas,
.package-card.sharan .feature-icon.fab,
.package-card.sharan .feature-icon.far {
    color: #333;
}

.package-card.sankalp .feature-icon.fas,
.package-card.sankalp .feature-icon.fab,
.package-card.sankalp .feature-icon.far {
    color: white;
}

/* Fix for specific Font Awesome icons in the sharan package */
.package-card.sharan .fa-cookie.feature-icon {
    color: #333 !important;
}

/* Ensure proper alignment for all feature icons */
.package-features li .feature-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Additional rules to ensure Font Awesome icons are visible */
.feature-icon.fas, .feature-icon.fab, .feature-icon.far {
    font-size: 24px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Package Content Styles */
.package-content {
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.6;
}

.package-content p {
    margin: 0;
    line-height: 1.6;
}

.package-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.package-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.package-content ul li:before {
    content: "•";
    color: var(--gold);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Custom package content styles for different package types */
.package-card.lal .package-content,
.package-card.lal .package-content ul li {
    color: white;
}

.package-card.sharan .package-content,
.package-card.sharan .package-content ul li {
    color: #333;
}

.package-card.sankalp .package-content,
.package-card.sankalp .package-content ul li {
    color: white;
}

.book-now-btn {
    width: 100%;
    background: rgba(0, 109, 119, 0.2);
    /* Removed glass effect */
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.book-now-btn:hover {
    background: rgba(0, 109, 119, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.book-now-btn:hover::before {
    left: 100%;
}

.book-btn {
    /* Same size as call button */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 48px;
    background: var(--peacock-blue);
    color: #fff;
    border: 2px solid var(--peacock-blue);
    padding: 14px 18px;
    border-radius: var(--border-radius);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
    margin-top: 18px;
    outline: none;
}
.book-btn:hover, .book-btn:focus {
    background: #fff;
    color: var(--peacock-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px) scale(1.01);
}

/* Custom button styles for each package */
.package-card.lal .book-btn {
    background: #4CAF50;
    border-color: #4CAF50;
}

.package-card.lal .book-btn:hover, 
.package-card.lal .book-btn:focus {
    background: #fff;
    color: #4CAF50;
    border-color: #4CAF50;
}

.package-card.sharan .book-btn {
    background: #FFEB3B;
    border-color: #FFEB3B;
    color: #333;
}

.package-card.sharan .book-btn:hover, 
.package-card.sharan .book-btn:focus {
    background: #fff;
    color: #FFEB3B;
    border-color: #FFEB3B;
}

.package-card.sankalp .book-btn {
    background: #9C27B0;
    border-color: #9C27B0;
}

.package-card.sankalp .book-btn:hover, 
.package-card.sankalp .book-btn:focus {
    background: #fff;
    color: #9C27B0;
    border-color: #9C27B0;
}

/* Package buttons container */
.package-buttons {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    align-items: stretch;
}

/* Call button styles */
.package-buttons .book-btn,
.package-buttons .call-btn {
    flex: 1 1 0;
    height: 48px;
    padding: 0 18px;
    margin-top: 0;
    border-radius: var(--border-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--peacock-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(27, 60, 93, 0.25);
    transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
    outline: none;
    border: 2px solid var(--peacock-blue);
    flex: 1;
    min-height: 48px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.call-btn:hover, .call-btn:focus {
    background: #fff;
    color: var(--peacock-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 22px rgba(27, 60, 93, 0.28);
}

/* Sheen effect */
.call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.35) 45%, rgba(255,255,255,0.15) 60%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.call-btn:hover::before, .call-btn:focus::before {
    left: 120%;
}

.call-btn:active {
    transform: translateY(0) scale(0.99);
    box-shadow: 0 4px 12px rgba(27, 60, 93, 0.2);
}

/* Custom call button styles for each package */
.package-card.lal .call-btn {
    background: #4CAF50;
    border-color: #4CAF50;
}

.package-card.lal .call-btn:hover, 
.package-card.lal .call-btn:focus {
    background: #fff;
    color: #4CAF50;
    border-color: #4CAF50;
    box-shadow: 0 10px 22px rgba(76, 175, 80, 0.35);
}

.package-card.sharan .call-btn {
    background: #FFEB3B;
    border-color: #FFEB3B;
    color: #333;
}

.package-card.sharan .call-btn:hover, 
.package-card.sharan .call-btn:focus {
    background: #fff;
    color: #FFEB3B;
    border-color: #FFEB3B;
    box-shadow: 0 10px 22px rgba(255, 235, 59, 0.45);
}

.package-card.sankalp .call-btn {
    background: #9C27B0;
    border-color: #9C27B0;
}

.package-card.sankalp .call-btn:hover, 
.package-card.sankalp .call-btn:focus {
    background: #fff;
    color: #9C27B0;
    border-color: #9C27B0;
    box-shadow: 0 10px 22px rgba(156, 39, 176, 0.35);
}

/* Call icon styles */
.call-icon {
    width: 18px;
    height: 18px;
}

.package-card.lal .call-icon,
.package-card.sankalp .call-icon {
    stroke: white;
}

.package-card.sharan .call-icon {
    stroke: #333;
}

.package-card.lal .call-btn:hover .call-icon,
.package-card.lal .call-btn:focus .call-icon,
.package-card.sankalp .call-btn:hover .call-icon,
.package-card.sankalp .call-btn:focus .call-icon {
    stroke: var(--peacock-blue);
}

.package-card.sharan .call-btn:hover .call-icon,
.package-card.sharan .call-btn:focus .call-icon {
    stroke: #FFEB3B;
}

/* Timings Section */
.timings {
    padding: 80px 0;
    background: var(--ivory-white);
}

.timings h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--peacock-blue);
}

.timing-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.timing-icon {
    flex-shrink: 0;
}

.timing-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    flex: 1;
}

.timing-slot {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 2px solid var(--gold);
    text-align: center;
    transition: var(--transition);
}

.timing-slot:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(27, 60, 93, 0.2);
}

.timing-slot .time {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--peacock-blue);
    margin-bottom: 5px;
}

.timing-slot .description {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Booking Form Section */
.booking {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--light-pink) 100%);
}

.booking h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--peacock-blue);
}

.booking-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 2px solid var(--gold);
}

.booking-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--peacock-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--peacock-blue);
    box-shadow: 0 0 0 3px rgba(0, 109, 119, 0.1);
}

.submit-btn {
    background: linear-gradient(45deg, var(--lotus-pink), var(--peacock-blue));
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 149, 120, 0.3);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--peacock-blue);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-gold);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--gold);
}

.feature i {
    font-size: 1.5rem;
    color: var(--peacock-blue);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pichwai-frame {
    width: 300px;
    height: 300px;
    border: 8px solid var(--gold);
    border-radius: 50%;
    background: linear-gradient(45deg, var(--lotus-pink), var(--peacock-blue));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    box-shadow: var(--shadow);
}

.pichwai-frame::before {
    content: '🕉️';
    font-size: 3rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--light-gold) 100%);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--peacock-blue);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--lotus-pink);
}

.contact-item i {
    font-size: 2rem;
    color: var(--peacock-blue);
    margin-top: 5px;
}

.contact-item h3 {
    color: var(--peacock-blue);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.whatsapp-btn,
.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--peacock-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.whatsapp-btn:hover,
.map-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--peacock-blue);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: var(--peacock-blue);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--peacock-blue);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.social-link i {
    font-size: 1.3em;
    color: var(--peacock-blue);
    line-height: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(45deg, var(--peacock-blue), var(--dark-blue));
    color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close {
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--gold);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

/* Admin Panel Styles */
.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #E0E0E0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-light);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--peacock-blue);
    border-bottom-color: var(--peacock-blue);
}

.tab-content {
    display: none;
    max-height: 60vh;
    overflow-y: auto;
}

.tab-content.active {
    display: block;
}

.add-btn,
.save-btn {
    background: var(--peacock-blue);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.add-btn:hover,
.save-btn:hover {
    background: var(--dark-blue);
}

.timing-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.filter-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-controls input {
    padding: 8px 12px;
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius);
}

.filter-controls button {
    background: var(--lotus-pink);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
}

/* Admin package items styling */
.admin-package-item {
    border: 1px solid #E0E0E0;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: #f9f9f9;
}

.admin-package-item:last-child {
    margin-bottom: 0;
}

/* Success Modal */
.success-content {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 4rem;
    color: #27AE60;
    margin-bottom: 20px;
}

.success-content h2 {
    color: var(--peacock-blue);
    margin-bottom: 15px;
}

.success-content p {
    color: var(--text-dark);
    margin-bottom: 30px;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-success-btn {
    background: #25D366;
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-success-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.close-btn {
    background: var(--text-light);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.close-btn:hover {
    background: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .hero-text h1 {
        font-size: 3.2rem;
        letter-spacing: 2px;
    }

    .hero-text p {
        font-size: 1.3rem;
        padding: 15px 20px;
    }

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

    .timing-content {
        flex-direction: column;
        gap: 30px;
    }

    .timing-slots {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .timing-inputs {
        grid-template-columns: 1fr;
    }

    .filter-controls {
        flex-direction: column;
    }

    .success-actions {
        flex-direction: column;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 90vh;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 20px 15px;
        max-width: 98%;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .packages h2,
    .booking h2,
    .about h2,
    .contact h2 {
        font-size: 2rem;
    }

    .booking-form-container {
        padding: 20px;
    }

    .contact-item {
        padding: 20px;
    }

    .pichwai-frame {
        width: 200px;
        height: 200px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}