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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

.text-orange {
    color: #ea580c;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.btn-primary {
    background-color: #ea580c;
    color: white;
}

.btn-primary:hover {
    background-color: #c2410c;
}

.btn-outline {
    background-color: transparent;
    color: #ee561c;
    border: 1px solid #ee561c;
}

.btn-outline:hover {
    background-color: #fff7ed;
}

.btn-small {
    padding: 6px 12px;
    font-size: 12px;
}

.btn-large {
    padding: 12px 24px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* Header Styles */
.header {
    background-color: white;
    border-bottom: 1px solid #fed7aa;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
       width: 54px;
    height: 54px;
    background: linear-gradient(to bottom right, #f97316, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.logo-text p {
    font-size: 12px;
    color: #ea580c;
    margin: 0;
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-desktop a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-desktop a:hover {
    color: #ea580c;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: #f9fafb;
    border-radius: 24px;
    padding: 8px 16px;
    gap: 8px;
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
}

.search-box i {
    color: #9ca3af;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ea580c;
    font-size: 14px;
    font-weight: 500;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: #374151;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(to bottom right, #dc26266e, #dc2626), url(../images/panditjiayodhya.jpeg);
    background-size: cover;
    background-position: center, right bottom;
    background-repeat: no-repeat, no-repeat;
    padding: 64px 0 96px;
}

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

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 16px;
}

.hero-text .subtitle {
    font-size: 24px;
    color: #ffffff;
    display: block;
    margin-top: 8px;
}

.hero-text p {
    font-size: 18px;
    color: #ffffff;
    max-width: 600px;
}

.how-it-works h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-number {
    width: 32px;
    height: 32px;
    background-color: #ea580c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.step span {
    font-size: 14px;
    color: #ffffff;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature i {
    color: #16a34a;
}

.feature span {
    font-size: 14px;
    color: #ffffff;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Booking Card */
.booking-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.booking-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 24px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-group i {
    color: #ea580c;
    width: 20px;
}

.form-group input,
.form-group select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.stat-number {
    font-size: 20px;
    font-weight: 600;
    color: #ea580c;
}

.stat-label {
    font-size: 12px;
    color: #6b7280;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 48px;
}

/* Popular Services */
.popular-services {
    padding: 64px 0;
    background-color: #f9fafb;
}

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

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

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

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.popular-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: #ea580c;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    z-index: 1;
}

.price-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
    color: #ea580c;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: #ea580c;
}

.service-content p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.5;
}

.service-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #6b7280;
	margin-bottom: 8px;
}

.detail i {
    color: #ea580c;
}

.detail i.fas.fa-star {
    color: #fbbf24;
}

/* Featured Pandits */
.featured-pandits {
    padding: 64px 0;
    background: white;
}

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

.pandit-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #f3f4f6;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pandit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pandit-header {
    padding: 24px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pandit-profile {
    display: flex;
    gap: 16px;
}

.profile-image {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    /* overflow: hidden; */
    background-color: #f3f4f6;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius: 50%;
}

.verified-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background-color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verified-badge i {
    color: white;
    font-size: 12px;
}

.pandit-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.pandit-info p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating i {
    color: #fbbf24;
}

.rating span {
    font-size: 14px;
    font-weight: 500;
}

.reviews {
    color: #6b7280;
    font-weight: 400;
}

.availability {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.availability.available {
    background-color: #dcfce7;
    color: #166534;
}

.availability.book-ahead {
    background-color: transparent;
    color: #ea580c;
    border: 1px solid #fed7aa;
}

.pandit-content {
    padding: 24px;
}

.specialties {
    margin-bottom: 16px;
}

.specialties h4 {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 8px;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 2px 8px;
    background-color: transparent;
    color: #ea580c;
    border: 1px solid #fed7aa;
    border-radius: 4px;
    font-size: 12px;
}

.location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.location i {
    color: #ea580c;
}

.languages {
    margin-bottom: 16px;
}

.languages h4 {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 4px;
}

.languages p {
    font-size: 14px;
    color: #6b7280;
}

.pandit-footer {
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.pricing {
    margin-bottom: 12px;
}

.starting {
    font-size: 12px;
    color: #6b7280;
}

.price {
    font-size: 18px;
    font-weight: 600;
    color: #ea580c;
}

.actions {
    display: flex;
    gap: 8px;
}

.actions .btn {
    flex: 1;
}

/* Upcoming Events */
.upcoming-events {
    padding: 64px 0;
    background: linear-gradient(to bottom right, #fff7ed, #fef2f2);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 32px;
}

.event-card {
    background: white;
    border-radius: 16px;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.event-card.festival {
    border-left-color: #f97316;
}

.event-card.special {
    border-left-color: #a855f7;
}

.event-card.health {
    border-left-color: #16a34a;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.event-content {
    padding: 24px;
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.event-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.event-card:hover .event-info h3 {
    color: #ea580c;
}

.event-info p {
    font-size: 14px;
    color: #6b7280;
}

.status {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.status.available {
    background-color: #dcfce7;
    color: #166534;
}

.status.filling-fast {
    background-color: #fed7aa;
    color: #c2410c;
}

.status.limited-seats {
    background-color: #fecaca;
    color: #dc2626;
}

.event-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

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

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.category {
    padding: 2px 8px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 12px;
    color: #6b7280;
}

.price {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
}

/* Sanskrit Quote */
.sanskrit-quote {
    text-align: center;
    margin: 64px 0;
    padding: 48px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
}

.sanskrit-text {
    font-size: 24px;
    color: #111827;
    margin-bottom: 16px;
    font-weight: 500;
}

.translation {
    font-size: 18px;
    color: #ea580c;
    font-style: italic;
    margin-bottom: 16px;
}

.attribution {
    font-size: 14px;
    color: #6b7280;
}

/* FAQ Section */
.faq {
    padding: 64px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 16px;
    padding: 24px;
    transition: border-color 0.2s ease;
}

.faq-item:hover {
    border-color: #fed7aa;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    transition: color 0.2s ease;
}

.faq-question:hover h3 {
    color: #ea580c;
}

.faq-question i {
    color: #6b7280;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 16px;
}

.faq-answer p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.contact-section {
    text-align: center;
    margin-top: 64px;
    padding: 32px;
    background: linear-gradient(to right, #fff7ed, #fef2f2);
    border-radius: 16px;
}

.contact-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.contact-section p {
    color: #6b7280;
    margin-bottom: 24px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
}

.footer-main {
    padding: 64px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.footer-logo .logo-icon {
    background: linear-gradient(to bottom right, #f97316, #dc2626);
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 700;
}

.footer-logo p {
    font-size: 12px;
    color: #9ca3af;
}

.footer-section p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.social-links a {
    color: #9ca3af;
    font-size: 20px;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: #f97316;
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: white;
}

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

.contact-item {
    display: flex;
    gap: 12px;
}

.contact-item i {
    color: #f97316;
    margin-top: 4px;
}

.contact-item div p {
    font-size: 12px;
    color: #9ca3af;
    margin: 0 0 4px 0;
}

.contact-item div span {
    color: white;
    font-size: 14px;
}

.newsletter {
    border-top: 1px solid #374151;
    padding: 32px 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.newsletter-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.newsletter-text p {
    color: #9ca3af;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 8px 16px;
    background-color: #374151;
    border: 1px solid #4b5563;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    min-width: 250px;
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #f97316;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

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

.copyright p {
    color: #9ca3af;
    font-size: 14px;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.legal-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: white;
}

.availability {
    display: flex;
    align-items: center;
    gap: 8px;
}

.availability span {
    color: #9ca3af;
    font-size: 14px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background-color: #16a34a;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-desktop, .search-box, .phone-info {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid, .pandits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 32px 0 48px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text .subtitle {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        justify-content: center;
    }
    
    .newsletter-form input {
        min-width: 200px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright {
        align-items: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-grid, .pandits-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-details {
        grid-template-columns: 1fr;
    }
    
    .contact-actions {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}