@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Poppins:wght@300;400;500;600&family=Mukta:wght@300;400;600;700&display=swap');

/* Option A - Light Reference Theme Design Tokens */
:root {
    --bg-darker: #f5f6f9;                  /* Light gray page background */
    --bg-dark: #ffffff;                    /* Pure white sections */
    --bg-card: rgba(255, 255, 255, 0.9);   /* Light glass cards */
    --bg-card-hover: rgba(255, 255, 255, 1);
    --primary: #ff6900;                    /* Reference Saffron Orange */
    --primary-rgb: 255, 105, 0;
    --primary-grad: linear-gradient(135deg, #ff6900 0%, #ff8533 100%);
    --accent-gold: #fcb900;                /* Reference Gold */
    --text-main: #2d3748;                  /* Dark slate main text */
    --text-muted: #718096;                 /* Slate gray secondary text */
    --text-saffron: #ff6900;
    --border-color: rgba(255, 105, 0, 0.15);
    --border-color-hover: rgba(255, 105, 0, 0.35);
    --glow-shadow: 0 8px 30px rgba(255, 105, 0, 0.06);
    --glow-shadow-heavy: 0 12px 40px rgba(255, 105, 0, 0.12);
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f3f5;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary), var(--accent-gold));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography & General Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #1a202c;
}

.hindi-text {
    font-family: 'Mukta', sans-serif;
    font-weight: 600;
}

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

.section-padding {
    padding: 80px 0;
}

/* Gradients configured for Light Backgrounds */
.text-gradient {
    background: linear-gradient(135deg, #1a202c 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-saffron-grad {
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Header & Sticky Navigation (Light Style) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 105, 0, 0.08);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 105, 0, 0.12);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 105, 0, 0.25);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #1a202c;
    letter-spacing: 0.5px;
}

.logo-text span {
    color: var(--primary);
}

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

.nav-item a {
    color: #2d3748;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-grad);
    transition: var(--transition-smooth);
}

.nav-item a:hover {
    color: var(--primary);
}

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

.nav-socials {
    display: flex;
    gap: 16px;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: #4a5568;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-icon-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 105, 0, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: #2d3748;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Hero Section (Retains spiritual background overlay for readability) */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background-color: #0c0805;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 30%, rgba(255, 105, 0, 0.1) 0%, rgba(12, 8, 5, 0.9) 75%),
                linear-gradient(to bottom, rgba(12, 8, 5, 0.3) 0%, rgba(12, 8, 5, 1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: #e2e8f0;
    margin-bottom: 36px;
    line-height: 1.6;
}

.live-badge-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 105, 0, 0.15);
    border: 1px solid rgba(255, 105, 0, 0.4);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(255, 105, 0, 0.2);
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #ff3b30;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff3b30;
    animation: pulse 1.8s infinite;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-grad);
    color: #fff;
    border: none;
    box-shadow: 0 5px 20px rgba(255, 105, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 0, 0.45);
}

.btn-secondary {
    background: rgba(255, 105, 0, 0.05);
    color: var(--primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: var(--primary-grad);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 0, 0.25);
}

/* Cards & Glassmorphism Design */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition-smooth);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateY(-6px);
    box-shadow: var(--glow-shadow);
}

/* Upcoming Events (Live Jagran) */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.event-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-img-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.event-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.event-card:hover .event-img-wrap img {
    transform: scale(1.08);
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.event-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-title {
    font-size: 1.35rem;
    margin-bottom: 16px;
    color: #1a202c;
    line-height: 1.4;
}

.event-meta-list {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.event-meta-item i {
    color: var(--primary);
    font-size: 1rem;
    width: 18px;
}

.event-btn {
    margin-top: auto;
    width: 100%;
    border-radius: 6px;
    padding: 12px;
}

/* 360° Virtual Darshan Section */
.darshan-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.darshan-showcase {
    position: relative;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.panorama-container {
    width: 100%;
    height: 100%;
    cursor: grab;
    background-size: auto 100%;
    background-position: center center;
    background-repeat: repeat-x;
    position: relative;
    user-select: none;
    transition: background 0.5s ease;
}

.panorama-container:active {
    cursor: grabbing;
}

.darshan-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
}

.darshan-header-badge {
    background: rgba(255, 105, 0, 0.2);
    border: 1px solid var(--primary);
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    pointer-events: auto;
}

.darshan-header-badge i {
    animation: rotate360 8s linear infinite;
}

.darshan-controls-hint {
    color: #fff;
    align-self: center;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    margin-top: 140px;
}

.darshan-info {
    color: #fff;
    pointer-events: auto;
}

.darshan-info h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.darshan-info p {
    color: #e2e8f0;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.darshan-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.darshan-nav-card {
    cursor: pointer;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.darshan-nav-card img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

.darshan-nav-card.active {
    border-color: var(--primary);
    background: rgba(255, 105, 0, 0.05);
    box-shadow: 0 0 15px rgba(255, 105, 0, 0.1);
}

.darshan-nav-card-info h4 {
    font-size: 0.95rem;
    color: #1a202c;
    margin-bottom: 4px;
}

.darshan-nav-card-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Bhajan Gallery & Filters */
.bhajans-section {
    background-color: var(--bg-dark);
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(255, 105, 0, 0.04);
}

.filter-btn.active {
    background: var(--primary-grad);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 105, 0, 0.25);
}

.bhajans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.bhajan-card {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bhajan-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: #000;
}

.bhajan-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.bhajan-card:hover .bhajan-thumb img {
    transform: scale(1.06);
    opacity: 0.85;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.bhajan-card:hover .play-overlay {
    opacity: 1;
}

.play-btn-circle {
    width: 55px;
    height: 55px;
    background: var(--primary-grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 4px 20px rgba(255, 105, 0, 0.4);
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.bhajan-card:hover .play-btn-circle {
    transform: scale(1);
}

.bhajan-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bhajan-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bhajan-tag {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.bhajan-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #1a202c;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bhajan-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Contact and Booking Form */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

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

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 105, 0, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
}

.contact-text h4 {
    font-size: 1.1rem;
    color: #1a202c;
    margin-bottom: 6px;
}

.contact-text p, .contact-text a {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-text a:hover {
    color: var(--primary);
}

.contact-social-wrap h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #1a202c;
}

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

.contact-form {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-input {
    background: #f7fafc;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 105, 0, 0.08);
}

textarea.form-input {
    resize: none;
    height: 120px;
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* Modals (Video Player & Reminder) */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: #4a5568;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: transparent;
    transform: rotate(90deg);
}

/* Video Frame Wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Reminder Modal Content */
.reminder-modal-body {
    padding: 40px;
    text-align: center;
}

.reminder-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.reminder-modal-body h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #1a202c;
}

.reminder-modal-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.reminder-choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.reminder-choice-btn {
    background: rgba(255, 105, 0, 0.04);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 12px;
    color: var(--text-main);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.reminder-choice-btn i {
    font-size: 1.4rem;
    color: var(--primary);
}

.reminder-choice-btn:hover {
    border-color: var(--primary);
    background: rgba(255, 105, 0, 0.08);
    transform: translateY(-2px);
}

/* Footer Section (Keeps Dark Visual Weight) */
footer {
    background-color: #0f1116;
    border-top: 1px solid rgba(255, 105, 0, 0.1);
    padding: 60px 0 30px 0;
    color: #e2e8f0;
}

footer h5, footer .logo-text {
    color: #ffffff;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--primary);
}

.footer-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h5 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-about p {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #a0aec0;
}

.footer-contact-list li i {
    color: var(--primary);
}

.footer-newsletter p {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

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

.newsletter-form input {
    flex-grow: 1;
    border-radius: 6px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

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

.newsletter-form button {
    padding: 10px 18px;
    border-radius: 6px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: #718096;
    flex-wrap: wrap;
    gap: 16px;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(255, 59, 48, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
    }
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-layout {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-socials, .logo-text span {
        display: inline-block;
    }
    
    .nav-socials {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .darshan-showcase {
        height: 350px;
    }
    
    .darshan-controls-hint {
        margin-top: 60px;
    }
    
    .footer-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
