/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --saffron: #FF9933;
    --gold: #FFD700;
    --peacock: #1C4E80;
    --spiritual-50: hsl(28, 66%, 97%);
    --spiritual-100: hsl(28, 64%, 92%);
    --spiritual-200: hsl(28, 60%, 85%);
    --spiritual-300: hsl(28, 55%, 75%);
    
    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-sanskrit: 'Cinzel', serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 5rem 0;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation Styles */
#navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-sanskrit);
    font-size: 1.25rem;
    font-weight: bold;
}

.logo-text {
    margin-left: 0.75rem;
    font-family: var(--font-sanskrit);
    font-size: 1.25rem;
    font-weight: bold;
    color: #374151;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    position: relative;
    z-index: 10; /* keeps link on top of overlays */
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer; /* ensures hand cursor appears */
}

.nav-link:hover,
.nav-link.active {
    color: var(--saffron);
    border-bottom-color: var(--saffron);
    transform: translateY(-1px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Search Styles */
.search-container {
    position: relative;
}

.search-input {
    width: 16rem;
    padding: 0.5rem 0.75rem 0.5rem 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 9999px;
    background: white;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1);
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 50;
    max-height: 20rem;
    overflow-y: auto;
    display: none;
}

.search-results.show {
    display: block;
}

.search-result-item {
    padding: 1rem;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-result-item:hover {
    background-color: var(--spiritual-50);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-title {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
}

.search-result-content {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.search-result-category {
    font-size: 0.75rem;
    color: var(--saffron);
    text-transform: capitalize;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #374151;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav {
    display: none;
    border-top: 1px solid #e5e7eb;
    padding: 1rem 0;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--saffron);
    background-color: var(--spiritual-50);
}

/* Main Content */
#mainContent {
    margin-top: 4rem;
}

.section {
    display: none;
    padding: var(--section-padding);
}

.section.active {
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-title {
    font-family: var(--font-sanskrit);
    font-size: 3.25rem;
    font-weight: bold;
	text-align: center;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem; 
}

.page-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

	
	
.section-title {
    font-family: var(--font-sanskrit);
    font-size: 2.25rem;
    font-weight: bold;
	text-align: center;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
	margin-top: 2rem;
}
}

.content-title {
    font-family: var(--font-sanskrit);
    font-size: 2.25rem;
    font-weight: bold;
	text-align: center;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
	margin-top: 2rem;
}

.content-subtitle {
    font-family: var(--font-sanskrit);
    font-size: 1.5rem;
    font-weight: bold;
    color: #374151;
    margin-bottom: 1rem;
}

/* Hero Banner */

.hero-banner {
    position: relative;
    height: 34rem;
    overflow: hidden;
    background: url("../images/JapamTapamMoksham.jpg") no-repeat center center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15); /* 15% black tint */
}


.hero-pattern {
    background: none;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

.hero-title {
    font-family: var(--font-sanskrit);
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    max-width: 56rem;
    line-height: 1.5;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    color: white;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 153, 51, 0.3);
}

.btn-secondary {
    background: white;
    color: #374151;
    border-color: var(--peacock);
}

.btn-secondary:hover {
    background: var(--peacock);
    color: white;
}

.btn-donation {
    background: white;
    color: var(--saffron);
}

.btn-donation:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 153, 51, 0.3);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Content Sections */
.content-section {
    margin-bottom: 5rem;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.video-thumbnail {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.video-content {
    padding: 1.5rem;
}

.video-content h3 {
    font-weight: 600;
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.video-content p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.video-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-views {
    font-size: 0.75rem;
    color: #9ca3af;
}

.video-play-icon {
    font-size: 1.5rem;
    color: var(--saffron);
    transition: color 0.3s ease;
}

.video-play-icon:hover {
    color: var(--gold);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: linear-gradient(135deg, var(--spiritual-50), white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.blog-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.blog-icon.fa-om {
    color: var(--saffron);
}

.blog-icon.fa-lotus {
    color: var(--gold);
}

.blog-header h3 {
    font-family: var(--font-sanskrit);
    font-size: 1.25rem;
    font-weight: bold;
    color: #374151;
}

.blog-date {
    font-size: 0.875rem;
    color: #6b7280;
}

.blog-excerpt {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    color: var(--peacock);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: var(--saffron);
}

/* Gow Dana Section */
.gow-dana-section {
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    margin-bottom: 5rem;
}

.gow-dana-title {
    font-family: var(--font-sanskrit);
    font-size: 2.25rem;
    font-weight: bold;
	text-align: center;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
	margin-top: 2rem;
}

.gow-dana-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.gow-dana-content {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.donation-stats {
    background: rgba(255,255,255,0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    text-align: center;
}

.donation-stats i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.stats-amount {
    font-weight: bold;
    font-size: 1.125rem;
}

.stats-goal {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.category-icon.fa-book {
    color: var(--peacock);
}

.category-icon.fa-om {
    color: var(--saffron);
}

.category-icon.fa-music {
    color: var(--gold);
}

.category-icon.fa-heart {
    color: var(--saffron);
}

.category-card h3 {
    font-family: var(--font-sanskrit);
    font-size: 1.25rem;
    font-weight: bold;
    color: #374151;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* About Section Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.mission-text p {
    margin-bottom: 1rem;
    color: #6b7280;
}

.goshala-info {
    margin-top: 2rem;
}

.goshala-info p {
    color: #6b7280;
}

.founder-section {
    text-align: center;
}

.founder-card {
    background: linear-gradient(135deg, var(--spiritual-100), var(--spiritual-200));
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.founder-image {
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.founder-name {
    font-family: var(--font-sanskrit);
    font-size: 1.25rem;
    font-weight: bold;
    color: #374151;
    margin-bottom: 0.5rem;
}

.founder-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.founder-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.stat-number:nth-child(1) {
    color: var(--saffron);
}

.stat-item:nth-child(2) .stat-number {
    color: var(--gold);
}

.stat-item:nth-child(3) .stat-number {
    color: var(--peacock);
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Scripture Section Styles */
.scripture-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: none;
    background: #f3f4f6;
    color: #6b7280;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    color: white;
}

.tab-btn:hover:not(.active) {
    background: #e5e7eb;
}

.tab-content {
    display: none;
}

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

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

.scripture-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.scripture-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.scripture-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.scripture-card-content {
    padding: 1.5rem;
}

.scripture-card-content h3 {
    font-family: var(--font-sanskrit);
    font-size: 1.125rem;
    font-weight: bold;
    color: #374151;
    margin-bottom: 0.5rem;
}

.scripture-card-content p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.scripture-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-time {
    font-size: 0.75rem;
    color: #9ca3af;
}

.scripture-play-icon {
    font-size: 1.25rem;
    color: var(--saffron);
}

.coming-soon {
    text-align: center;
    padding: 5rem 0;
}

.coming-soon-icon {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.coming-soon h3 {
    font-family: var(--font-sanskrit);
    font-size: 1.5rem;
    font-weight: bold;
    color: #374151;
    margin-bottom: 1rem;
}

.coming-soon p {
    color: #6b7280;
}

/* Goshala Section Styles */
.goshala-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.goshala-description p {
    margin-bottom: 1rem;
    color: #6b7280;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-item i {
    color: var(--saffron);
}

.cow-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cow-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.cow-image.large {
    grid-column: span 2;
    height: 16rem;
}

.fund-usage {
    margin-bottom: 3rem;
}

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

.usage-item {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.usage-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.usage-item:nth-child(1) .usage-icon {
    background: var(--saffron);
}

.usage-item:nth-child(2) .usage-icon {
    background: var(--gold);
}

.usage-item:nth-child(3) .usage-icon {
    background: var(--peacock);
}

.usage-item h3 {
    font-family: var(--font-sanskrit);
    font-size: 1.125rem;
    font-weight: bold;
    color: #374151;
    margin-bottom: 0.5rem;
}

.usage-item p {
    color: #6b7280;
    font-size: 0.875rem;
}

.goshala-donation {
    background: linear-gradient(135deg, var(--spiritual-100), var(--spiritual-200));
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
}

.donation-title {
    font-family: var(--font-sanskrit);
    font-size: 2.25rem;
    font-weight: bold;
	text-align: center;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
	margin-top: 2rem;
}

.donation-description {
    color: #6b7280;
    margin-bottom: 2rem;
}

.donation-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.amount-btn {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 8rem;
}

.amount-btn:hover, .amount-btn.active {
    border-color: var(--saffron);
    background: var(--spiritual-50);
}

.amount-btn .amount {
    font-weight: bold;
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 0.25rem;
}

.amount-btn .amount-desc {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Donate Section Styles */
.donate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.payment-method {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.payment-title {
    font-family: var(--font-sanskrit);
    font-size: 2.25rem;
    font-weight: bold;
	text-align: center;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
	margin-top: 2rem;
}

.payment-title i {
    color: var(--saffron);
}

.upi-section {
    text-align: center;
}

.qr-code {
    margin-bottom: 1rem;
}

.qr-placeholder {
    width: 8rem;
    height: 8rem;
    background: #f3f4f6;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 0.75rem;
    color: #6b7280;
    border: 2px dashed #d1d5db;
}

.qr-instruction {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.upi-id {
    font-weight: bold;
    color: var(--saffron);
    font-size: 1.125rem;
}

.bank-details {
    background: #f9fafb;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.bank-row:last-child {
    border-bottom: none;
}

.bank-label {
    font-weight: 500;
    color: #6b7280;
}

.bank-value {
    font-weight: 600;
    color: #374151;
}

/* Form Styles */
.donation-form-section, .contact-form-section {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.donation-form, .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background: white;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1);
}

.amount-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.preset-amount {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.preset-amount:hover, .preset-amount.active {
    border-color: var(--saffron);
    background: var(--spiritual-50);
    color: var(--saffron);
}

.integration-note {
    margin-top: 1rem;
    padding: 1rem;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 0.5rem;
    color: #0369a1;
    font-size: 0.875rem;
}

.integration-note i {
    margin-right: 0.5rem;
}

/* Donation CTA */
.donation-cta {
    background: linear-gradient(135deg, var(--spiritual-100), var(--spiritual-200));
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 3rem;
}

.cta-title {
    font-family: var(--font-sanskrit);
    font-size: 2rem;
    font-weight: bold;
    color: #374151;
    margin-bottom: 1rem;
}

.cta-white-title {
    font-family: var(--font-sanskrit);
    font-size: 2rem;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cta-description {
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cta-feature i {
    font-size: 2rem;
    color: var(--saffron);
}

.cta-feature p {
    font-weight: 500;
    color: #374151;
    font-size: 0.875rem;
}

/* Contact Section Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.contact-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-card-header i {
    font-size: 2rem;
    margin-right: 1rem;
}

.youtube-icon {
    color: #ff0000;
}

.contact-card-header h3 {
    font-family: var(--font-sanskrit);
    font-size: 1.125rem;
    font-weight: bold;
    color: #374151;
}

.contact-card-header p {
    font-size: 0.875rem;
    color: #6b7280;
}

.contact-card-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.youtube-btn {
    background: #ff0000;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.youtube-btn:hover {
    background: #cc0000;
    transform: scale(1.05);
}

.contact-card-title {
    font-family: var(--font-sanskrit);
    font-size: 1.125rem;
    font-weight: bold;
    color: #374151;
    margin-bottom: 1rem;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.social-item:hover {
    background: var(--spiritual-50);
    transform: scale(1.05);
}

.facebook-icon {
    color: #1877f2;
}

.instagram-icon {
    color: #e4405f;
}

.twitter-icon {
    color: #1da1f2;
}

.telegram-icon {
    color: #0088cc;
}

.quick-contact {
    background: linear-gradient(135deg, var(--spiritual-100), var(--spiritual-200));
    border-radius: 1rem;
    padding: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-detail i {
    color: var(--saffron);
    width: 1.25rem;
}

/* 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.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 1rem;
    width: 90%;
    max-width: 50rem;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h2 {
    font-family: var(--font-sanskrit);
    font-size: 1.5rem;
    font-weight: bold;
    color: #374151;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #f3f4f6;
    color: #374151;
}

.modal-body {
    padding: 2rem;
}

.video-embed {
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 1rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.video-placeholder {
    background: #f3f4f6;
    border-radius: 0.5rem;
    height: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #d1d5db;
}

.video-placeholder-content {
    text-align: center;
    color: #6b7280;
}

.video-placeholder-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--saffron);
}

.scripture-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sanskrit-text, .translation-text, .commentary-text {
    padding: 1.5rem;
    border-radius: 0.5rem;
    background: #f9fafb;
}

.sanskrit-text h4, .translation-text h4, .commentary-text h4 {
    font-family: var(--font-sanskrit);
    font-size: 1.125rem;
    font-weight: bold;
    color: #374151;
    margin-bottom: 1rem;
}

.sanskrit-text p {
    font-family: var(--font-sanskrit);
    font-size: 1.125rem;
    color: var(--saffron);
    line-height: 1.8;
}

.translation-text p, .commentary-text p {
    color: #6b7280;
    line-height: 1.6;
}

.modal-footer {
    background: linear-gradient(135deg, var(--spiritual-100), var(--spiritual-200));
    padding: 2rem;
    text-align: center;
}

.modal-footer h4 {
    font-family: var(--font-sanskrit);
    font-size: 1.125rem;
    font-weight: bold;
    color: #374151;
    margin-bottom: 0.5rem;
}

.modal-footer p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Footer Styles */
#footer {
    background: linear-gradient(135deg, #374151, #1f2937);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-sanskrit);
    font-size: 1.25rem;
    font-weight: bold;
    margin-right: 1rem;
}

.footer-logo h3 {
    font-family: var(--font-sanskrit);
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.footer-tagline {
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-description {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--saffron);
    transform: scale(1.1);
}

.footer-links h4, .footer-donation h4 {
    font-family: var(--font-sanskrit);
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--saffron);
}

.footer-donation p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer-donate-btn {
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-donate-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 153, 51, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

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

.footer-bottom i {
    color: var(--saffron);
    margin: 0 0.25rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .search-input {
        width: 12rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .about-content,
    .goshala-content,
    .donate-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .founder-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .cow-images {
        grid-template-columns: 1fr;
    }
    
    .cow-image.large {
        grid-column: span 1;
        height: 12rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 16rem;
        justify-content: center;
    }
    
    .video-grid,
    .scripture-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .usage-grid {
        grid-template-columns: 1fr;
    }
    
    .donation-amounts {
        flex-direction: column;
        align-items: center;
    }
    
    .amount-btn {
        width: 100%;
        max-width: 12rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .amount-buttons {
        flex-direction: column;
    }
}
