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

:root {
    /* Sophisticated Pastel Color Palette */
    --primary-color: #7B68EE; /* Medium Slate Blue - sophisticated primary */
    --secondary-color: #9370DB; /* Medium Purple - elegant secondary */
    --accent-color: #E6E6FA; /* Lavender - soft accent */
    --text-dark: #4A4A4A; /* Charcoal - refined dark text */
    --text-light: #F8F8FF; /* Ghost White - pure light text */
    --bg-primary: #FAF0E6; /* Linen - warm pastel background */
    --bg-secondary: #F5F5F5; /* White Smoke - clean secondary background */
    --bg-dark: #2F2F2F; /* Dark Gray - sophisticated dark sections */
    --border-color: #D3D3D3; /* Light Gray - subtle borders */
    --success-color: #98FB98; /* Pale Green - soft success */
    --error-color: #FFB6C1; /* Light Pink - gentle error */
    --shadow: 0 4px 20px rgba(123, 104, 238, 0.1);
    --shadow-hover: 0 8px 30px rgba(123, 104, 238, 0.2);
    --gradient-primary: linear-gradient(135deg, #7B68EE, #9370DB);
    --gradient-secondary: linear-gradient(135deg, #E6E6FA, #F8F8FF);
    --gradient-accent: linear-gradient(135deg, #9370DB, #E6E6FA);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(123, 104, 238, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(147, 112, 219, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(230, 230, 250, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hindi-text {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 2.5rem;
    color: var(--text-light);
    text-shadow: 2px 2px 8px rgba(123, 104, 238, 0.4);
    font-weight: 400;
    letter-spacing: 1px;
}

.english-text {
    font-size: 1.8rem;
    color: var(--accent-color);
    text-shadow: 1px 1px 4px rgba(147, 112, 219, 0.3);
    font-weight: 400;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: var(--gradient-accent);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(47, 47, 47, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(230, 230, 250, 0.1);
}

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

.nav-logo h2 {
    font-family: 'Noto Sans Devanagari', sans-serif;
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 400;
    letter-spacing: 1px;
}

.nav-logo span {
    color: var(--text-light);
    font-size: 0.8rem;
    display: block;
}

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

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

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

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

/* Admin Link Styling */
.admin-link {
    background: linear-gradient(135deg, rgba(147, 112, 219, 0.9), rgba(123, 104, 238, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-style: italic;
    text-shadow: 0 1px 3px rgba(147, 112, 219, 0.3);
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.admin-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(147, 112, 219, 0.6), rgba(123, 104, 238, 0.6));
    border-radius: 1px;
    transition: width 0.3s ease;
}

.admin-link:hover {
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.9), rgba(147, 112, 219, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-1px);
}

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

/* Authentication Modal Button Styles */
.auth-btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.auth-btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.auth-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: var(--gradient-accent);
    border-color: rgba(255, 255, 255, 0.3);
}

.auth-btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.auth-btn-primary:disabled:hover {
    transform: none;
    box-shadow: var(--shadow);
    background: var(--gradient-primary);
}

/* Authentication Modal Title */
.auth-modal-title {
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(123, 104, 238, 0.1);
}

/* User Greeting Styling */
.user-greeting {
    background: linear-gradient(135deg, rgba(147, 112, 219, 0.9), rgba(123, 104, 238, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-style: italic;
    text-shadow: 0 1px 3px rgba(147, 112, 219, 0.3);
    position: relative;
}

.user-greeting::before {
    content: "✨";
    margin-right: 0.5rem;
    font-size: 0.9em;
    opacity: 0.8;
}

.user-greeting::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(147, 112, 219, 0.6), rgba(123, 104, 238, 0.6));
    border-radius: 1px;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: hue-rotate(240deg) saturate(0.8) brightness(0.7) contrast(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
        rgba(47, 47, 47, 0.2) 0%, 
        rgba(47, 47, 47, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-title {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--accent-color);
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

.artists-featured {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
    margin-top: 2rem;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.artists-featured h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.artists-grid {
    display: grid;
    gap: 1rem;
}

.artist-category h5 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.artist-category p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0;
}

.about-video {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    margin-top: 2rem;
    border-left: 5px solid var(--primary-color);
}

.about-video h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.about-video-wrapper {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(123, 104, 238, 0.2);
}

.about-video-wrapper video,
.about-video-wrapper iframe {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border: none;
}

.video-caption {
    color: var(--text-dark);
    font-style: italic;
    text-align: center;
    margin: 0;
    font-size: 0.9rem;
}

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

.image-container {
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: hue-rotate(240deg) saturate(0.8) brightness(0.8) contrast(1.1);
    transition: all 0.3s ease;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(47, 47, 47, 0.8));
    color: var(--text-light);
    padding: 2rem 1rem 1rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-container:hover .about-img {
    transform: scale(1.05);
}

.image-container:hover .image-overlay {
    transform: translateY(0);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.service-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover .service-img {
    filter: hue-rotate(240deg) saturate(1) brightness(0.9) contrast(1.2);
}

.service-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(123, 104, 238, 0.3);
    position: relative;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: hue-rotate(240deg) saturate(0.8) brightness(0.8) contrast(1.1);
    transition: all 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    position: relative;
    backdrop-filter: blur(10px);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    background: var(--gradient-secondary);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(123, 104, 238, 0.3);
}

.pricing-header h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--secondary-color);
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--secondary-color);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.pricing-features i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

.pricing-note {
    text-align: center;
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.pricing-note p {
    color: var(--text-dark);
    margin: 0;
}

.pricing-community {
    margin-top: 3rem;
    padding: 3rem;
    background: var(--gradient-secondary);
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.pricing-community h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.pricing-community p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-community p:last-child {
    margin-bottom: 0;
}

/* Booking Section */
.booking {
    padding: 100px 0;
    background: var(--bg-primary);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.calendar-container {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-nav {
    background: var(--gradient-primary);
    color: var(--text-light);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(123, 104, 238, 0.2);
}

.calendar-nav:hover {
    background: var(--secondary-color);
}

.calendar-header h3 {
    color: var(--primary-color);
    margin: 0;
}

.calendar-grid {
    margin-bottom: 2rem;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 1rem;
}

.calendar-weekdays div {
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    padding: 0.5rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-primary);
}

.calendar-day:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

.calendar-day.selected {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: 0 2px 10px rgba(123, 104, 238, 0.3);
}

.calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.time-slots h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.time-slot {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

.time-slot.selected {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: 0 2px 10px rgba(123, 104, 238, 0.3);
}

.booking-form {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.booking-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--bg-dark);
}

.video-wrapper video,
.video-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.video-info {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.video-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.video-info p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.video-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

.feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.feature span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--bg-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: hue-rotate(240deg) saturate(0.8) brightness(0.8) contrast(1.1);
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(47, 47, 47, 0.9));
    color: var(--text-light);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-overlay h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
    filter: hue-rotate(240deg) saturate(1) brightness(0.9) contrast(1.2);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 15px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(123, 104, 238, 0.3);
}

.contact-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-dark);
    margin: 0;
}

.contact-form {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--bg-secondary);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(123, 104, 238, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(230, 230, 250, 0.1);
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-section i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(230, 230, 250, 0.1);
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(47, 47, 47, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        border-top: 1px solid rgba(230, 230, 250, 0.1);
    }

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

    .hero-title {
        flex-direction: column;
    }

    .hindi-text {
        font-size: 2rem;
    }

    .english-text {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .pricing-card.featured {
        transform: none;
    }

    .pricing-community {
        padding: 2.5rem 2rem;
        margin-top: 2rem;
    }

    .pricing-community h3 {
        font-size: 1.75rem;
    }

    .pricing-community p {
        font-size: 1.05rem;
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .service-image {
        width: 100px;
        height: 100px;
    }

    .image-container {
        width: 250px;
        height: 350px;
    }

    .video-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .video-wrapper video,
    .video-wrapper iframe {
        height: 300px;
    }

    .about-video-wrapper video,
    .about-video-wrapper iframe {
        height: 200px;
    }
}

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

    .hero-content {
        padding: 0 15px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card,
    .pricing-card,
    .booking-form,
    .contact-form {
        padding: 1.5rem;
    }

    .pricing-community {
        padding: 2rem 1.5rem;
    }

    .pricing-community h3 {
        font-size: 1.5rem;
    }

    .pricing-community p {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* 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(--text-light);
    animation: spin 1s ease-in-out infinite;
}

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