/* =========================================
   COMPREHENSIVE COLOR VARIABLE SYSTEM
   ========================================= */

:root {
    /* ===== PRIMARY COLORS ===== */
    --primary-white: #ffffff;
    --saffron: #ff6b35;
    --golden: #ffd700;
    
    /* ===== BACKGROUND COLORS ===== */
    --bg-light-beige: #faf8f5;
    --bg-dark-beige: #f5f1eb;
    --bg-white: #ffffff;
    --bg-dark: #2c3e50;
    --bg-gradient-light: linear-gradient(135deg, #faf8f5 0%, #f0ebe3 50%, #e8ddd4 100%);
    --bg-gradient-hero: linear-gradient(135deg, #faf8f5 0%, #f0ebe3 100%);
    --bg-gradient-card: linear-gradient(45deg, #ff6b35, #ffd700);
    
    /* ===== TEXT COLORS ===== */
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --text-white: #ffffff;
    --text-footer: #bdc3c7;
    --text-placeholder: #7f8c8d;
    
    /* ===== ACCENT COLORS ===== */
    --accent-saffron: #ff6b35;
    --accent-golden: #ffd700;
    --accent-rgb: 255, 107, 53;
    --golden-rgb: 255, 215, 0;
    --accent-strong: #e85d26;
    --accent-border: #f5f1eb;
    
    /* ===== SHADOW COLORS ===== */
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --shadow-saffron: rgba(255, 107, 53, 0.3);
    --shadow-saffron-light: rgba(255, 107, 53, 0.1);
    --shadow-saffron-medium: rgba(255, 107, 53, 0.2);
    
    /* ===== OVERLAY COLORS ===== */
    --overlay-navbar: rgba(255, 255, 255, 0.95);
    --overlay-navbar-scrolled: rgba(255, 255, 255, 0.98);
    --overlay-modal: rgba(0, 0, 0, 0.9);
    --overlay-dark: rgba(0, 0, 0, 0.3);
    
    /* ===== BORDER COLORS ===== */
    --border-light: #f5f1eb;
    --border-dark: #34495e;
    --border-footer: #34495e;
    
    /* ===== BUTTON COLORS ===== */
    --btn-primary-bg: #ff6b35;
    --btn-primary-text: #ffffff;
    --btn-secondary-bg: transparent;
    --btn-secondary-text: #2c3e50;
    --btn-secondary-border: #2c3e50;
    --btn-outline-bg: transparent;
    --btn-outline-text: #ff6b35;
    --btn-outline-border: #ff6b35;
    
    /* ===== INPUT COLORS ===== */
    --input-bg: #faf8f5;
    --input-border: #f5f1eb;
    --input-border-focus: #ff6b35;
    --input-text: #333333;
    
    /* ===== ICON COLORS ===== */
    --icon-primary: #ff6b35;
    --icon-white: #ffffff;
    
    /* ===== SOCIAL COLORS ===== */
    --social-bg: #ff6b35;
    --social-hover: #ffd700;
    
    /* ===== NAVBAR COLORS ===== */
    --navbar-bg: rgba(255, 255, 255, 0.95);
    --navbar-text: #2c3e50;
    --navbar-hover: #ff6b35;
    --navbar-underline: #ff6b35;

    /* ===== TYPOGRAPHY SCALE ===== */
    --font-size-base: 16px;
    --font-size-sm: clamp(0.82rem, 0.79rem + 0.18vw, 0.92rem);
    --font-size-md: clamp(0.95rem, 0.92rem + 0.22vw, 1.02rem);
    --font-size-lg: clamp(1.75rem, 1.35rem + 1.2vw, 2.4rem);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light-beige);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Navigation with optimized performance */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--navbar-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 20px var(--shadow-light);
    will-change: background-color, box-shadow;
}

.navbar.scrolled {
    background: var(--overlay-navbar-scrolled);
    box-shadow: 0 2px 30px var(--shadow-hover);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-saffron);
    text-decoration: none;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-logo-img {
    height: 56px;
    width: auto;
    margin-right: 10px;
    object-fit: contain;
    border-radius: 6px;
}

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

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

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

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

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

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

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

/* Enhanced Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-gradient-light);
    overflow: hidden;
    will-change: transform;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    will-change: transform;
}

.mandala-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-golden) 0%, rgba(var(--golden-rgb),0.3) 30%, transparent 70%);
    opacity: 0.1;
    animation: rotate 120s linear infinite;
    will-change: transform;
}

.geometric-patterns {
    position: absolute;
    width: 100%;
    height: 100%;
}

.pattern-circle {
    position: absolute;
    border: 2px solid var(--accent-saffron);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

.pattern-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.pattern-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 1.5s;
}

.pattern-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    animation-delay: 3s;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    font-size: 1.8rem;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
    will-change: transform;
    filter: drop-shadow(0 0 10px var(--shadow-saffron));
}

.icon-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.icon-2 {
    top: 25%;
    right: 12%;
    animation-delay: 1.5s;
}

.icon-3 {
    bottom: 35%;
    left: 15%;
    animation-delay: 3s;
}

.icon-4 {
    bottom: 25%;
    right: 8%;
    animation-delay: 4.5s;
}

.icon-5 {
    top: 45%;
    left: 5%;
    animation-delay: 2s;
}

.icon-6 {
    top: 55%;
    right: 20%;
    animation-delay: 5.5s;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-saffron);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 6s linear infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 40%;
    left: 80%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    top: 60%;
    left: 30%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    top: 30%;
    left: 60%;
    animation-delay: 4s;
}

.particle:nth-child(6) {
    top: 70%;
    left: 10%;
    animation-delay: 5s;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--accent-saffron);
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px var(--shadow-light);
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 1.1rem;
}

.hero-title {
    font-size: 5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px var(--shadow-light);
    line-height: 1.1;
}

.title-line-1 {
    display: block;
    background: linear-gradient(135deg, var(--accent-saffron), var(--accent-golden));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-2 {
    display: block;
    color: var(--text-dark);
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: var(--accent-saffron);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    color: var(--accent-saffron);
    font-weight: 600;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-golden);
    opacity: 0.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow-light);
    backdrop-filter: blur(10px);
    min-width: 100px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-saffron);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border-color: var(--btn-primary-bg);
}

.btn-primary:hover {
    background: transparent;
    color: var(--btn-primary-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-saffron);
}

.btn-secondary {
    background: var(--btn-secondary-bg);
    color: var(--btn-secondary-text);
    border-color: var(--btn-secondary-border);
}

.btn-secondary:hover {
    background: var(--btn-secondary-border);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-light);
}

.btn-outline {
    background: var(--btn-outline-bg);
    color: var(--btn-outline-text);
    border-color: var(--btn-outline-border);
}

.btn-outline:hover {
    background: var(--btn-outline-border);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-saffron);
}

.btn i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.scroll-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-saffron);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
    margin: 0 auto;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 3;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

/* Bhajans Section */
.bhajans-section {
    background: var(--bg-white);
    position: relative;
    z-index: 10;
    margin-top: -1px;
}

.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.search-box {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.search-box input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid var(--border-light);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--input-bg);
}

.search-box input:focus {
    outline: none;
    border-color: var(--input-border-focus);
    box-shadow: 0 0 0 3px var(--shadow-saffron-light);
}

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

.bhajan-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--border-light);
}

.bhajan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-hover);
    border-color: var(--accent-saffron);
}

.bhajan-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.bhajan-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.bhajan-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.bhajan-duration {
    background: var(--bg-light-beige);
    padding: 5px 10px;
    border-radius: 15px;
}

/* Tirth Sthal Section */
.tirth-section {
    background: var(--bg-light-beige);
    position: relative;
    z-index: 10;
}

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

.tirth-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tirth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.tirth-image {
    width: 100%;
    height: 200px;
    background: var(--bg-gradient-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-white);
}

.tirth-content {
    padding: 25px;
}

.tirth-content h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.tirth-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.tirth-location {
    display: flex;
    align-items: center;
    color: var(--accent-saffron);
    font-size: 0.9rem;
}

.tirth-location i {
    margin-right: 5px;
}

/* About Section */
.about-section {
    background: var(--bg-light-beige);
    position: relative;
    z-index: 10;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.principle-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-light-beige);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-light);
    border-color: var(--accent-saffron);
}

.principle-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.principle-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

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

/* Gallery Section */
.gallery-section {
    background: var(--bg-light-beige);
    position: relative;
    z-index: 10;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1;
    background: var(--bg-gradient-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--shadow-dark);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Contact Section */
.contact-section {
    background: var(--bg-white);
    position: relative;
    z-index: 10;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-saffron);
    margin-top: 5px;
}

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

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--input-bg);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--input-border-focus);
    box-shadow: 0 0 0 3px var(--shadow-saffron-light);
}

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

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--accent-saffron);
}

.footer-section p {
    color: var(--text-footer);
    line-height: 1.6;
}

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

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

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

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

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--social-bg);
    color: var(--icon-white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--social-hover);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-footer);
    color: var(--text-footer);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-modal);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}

.lightbox-caption {
    color: var(--text-white);
    text-align: center;
    margin-top: 10px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translate3d(-30px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translate3d(30px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.9, 0.9, 1);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

@keyframes particleFloat {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translate3d(0, -100px, 0);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate3d(-50%, 0, 0);
    }
    40% {
        transform: translate3d(-50%, -8px, 0);
    }
    60% {
        transform: translate3d(-50%, -4px, 0);
    }
}
/* Page-specific animations and improved card styles used by About page */
.fade-in-up { 
    opacity: 0;
    transform: translateY(12px);
    animation: fadeInUp 700ms ease forwards;
}
.stagger-1 { animation-delay: 120ms; }
.stagger-2 { animation-delay: 240ms; }
.stagger-3 { animation-delay: 360ms; }
.stagger-4 { animation-delay: 480ms; }
.stagger-5 { animation-delay: 600ms; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.vow-card { transition: transform 320ms cubic-bezier(.2,.9,.2,1), box-shadow 320ms; }
.vow-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 14px 40px var(--shadow-saffron-medium); }

.about-hero { position: relative; overflow: hidden; }
.about-hero .mandala-pattern { width: 380px; height: 380px; opacity: 0.08; }

.tirth-item { transition: transform 260ms ease, box-shadow 260ms ease; }
.tirth-item:hover { transform: translateY(-6px); box-shadow: 0 10px 30px var(--shadow-saffron-light); }

.section-title { display:flex; align-items:center; gap:12px; }
.section-title::before { content:''; width:42px; height:4px; background:var(--accent-saffron); border-radius:2px; display:inline-block; }

.note { transition: background 240ms ease, transform 240ms ease; }
.note:hover { transform: translateY(-4px); background: linear-gradient(90deg, rgba(255,235,215,0.3), var(--bg-light-beige)); }

/* Utility spacing */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-8 { margin-bottom: 8px; }
.text-center { text-align: center; }

/* Accessibility focus styles */
.vow-card:focus, .tirth-item:focus { outline: 3px solid rgba(var(--accent-rgb),0.18); outline-offset: 3px; }

/* =========================================
   ANTIQUE FOOTER — Light parchment theme
   Warm beige · Saffron accents · Serif
   Matches site's light warm aesthetic
   ========================================= */

.footer-antique {
    position: relative;
    background: linear-gradient(180deg, #2c3e50 0%, #243342 50%, #1a2733 100%);
    color: #eae4dc;
    padding: 0;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
}

/* subtle warm glow overlay */
.footer-antique::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 40%, rgba(var(--accent-rgb),0.04) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 60%, rgba(var(--golden-rgb),0.03) 0%, transparent 55%);
    pointer-events: none;
}

/* ornamental top border */
.footer-ornament-top {
    text-align: center;
    padding: 12px 0 10px;
    font-size: 0.95rem;
    letter-spacing: 8px;
    color: rgba(var(--accent-rgb),0.40);
    border-bottom: 1px solid rgba(var(--accent-rgb),0.10);
    background: linear-gradient(90deg, transparent 5%, rgba(var(--accent-rgb),0.04) 50%, transparent 95%);
    position: relative;
}

/* main content area */
.footer-antique-body {
    position: relative;
    padding: 48px 0 36px;
}

.footer-antique-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* ---- Brand column ---- */
.footer-brand .footer-logo {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    color: #f5f1eb;
    margin-bottom: 12px;
}
.footer-brand .footer-logo:hover {
    color: var(--accent-saffron);
}
.footer-brand .footer-logo-img {
    height: 34px;
    width: auto;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.footer-brand .footer-tagline {
    color: rgba(234,228,220,0.72);
    line-height: 1.6;
    max-width: 360px;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

/* decorative verse block */
.footer-verse {
    background: rgba(var(--accent-rgb),0.06);
    border: 1px solid rgba(var(--accent-rgb),0.12);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 18px;
    position: relative;
    text-align: center;
}
.footer-verse .verse-mark {
    display: block;
    font-size: 1.4rem;
    color: rgba(var(--accent-rgb),0.40);
    margin-bottom: 4px;
}
.footer-verse .verse-hindi {
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
    color: var(--accent-saffron);
    letter-spacing: 0.02em;
    margin-bottom: 2px;
}
.footer-verse .verse-eng {
    font-size: 0.82rem;
    color: rgba(234,228,220,0.55);
    font-style: italic;
}

/* social icons */
.footer-antique .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}
.footer-antique .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(var(--accent-rgb),0.20);
    background: rgba(var(--accent-rgb),0.08);
    color: var(--accent-saffron);
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-antique .footer-social a:hover {
    background: var(--accent-saffron);
    border-color: var(--accent-saffron);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(var(--accent-rgb),0.20);
}

/* ---- Links column ---- */
.footer-links h4 {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    color: #f5f1eb;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
    position: relative;
    padding-bottom: 10px;
}
.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-saffron), transparent);
    border-radius: 2px;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links ul li a {
    color: rgba(234,228,220,0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    position: relative;
    padding-left: 16px;
}
.footer-links ul li a::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.55rem;
    color: rgba(var(--accent-rgb),0.35);
    transition: color 0.25s ease;
}
.footer-links ul li a:hover {
    color: var(--accent-saffron);
    padding-left: 20px;
}
.footer-links ul li a:hover::before {
    color: var(--accent-saffron);
}

/* ---- Contact column ---- */
.footer-contact h4 {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    color: #f5f1eb;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
    position: relative;
    padding-bottom: 10px;
}
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-saffron), transparent);
    border-radius: 2px;
}

.footer-antique-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-antique-form input,
.footer-antique-form textarea {
    border: 1px solid rgba(255,255,255,0.12);
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    color: #eae4dc;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.footer-antique-form input:focus,
.footer-antique-form textarea:focus {
    outline: none;
    border-color: var(--accent-saffron);
    background: rgba(255,255,255,0.10);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb),0.10);
}
.footer-antique-form input::placeholder,
.footer-antique-form textarea::placeholder {
    color: rgba(234,228,220,0.40);
}
.footer-antique-form button {
    align-self: flex-start;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    background: var(--accent-saffron);
    color: #fff;
    font-family: 'Merriweather', serif;
    font-size: 0.9rem;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(var(--accent-rgb),0.15);
}
.footer-antique-form button:hover {
    background: var(--accent-strong);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--accent-rgb),0.25);
}

/* ---- Bottom bar ---- */
.footer-antique-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.12);
    padding: 16px 0;
    position: relative;
}
.footer-antique-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-antique-bottom p {
    color: rgba(234,228,220,0.50);
    font-size: 0.88rem;
    margin: 0;
}
.footer-antique-bottom a {
    color: var(--accent-saffron);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-antique-bottom a:hover {
    color: var(--accent-strong);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .footer-antique-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-contact {
        grid-column: 1 / -1;
    }
}
@media (max-width: 600px) {
    .footer-antique-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-antique-body {
        padding: 32px 0 28px;
    }
    .footer-antique-bottom .container {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}


/* Layout and typography refinements for About page */
.about-hero { padding-bottom: 80px; }
.about-hero .container { max-width: 1000px; }
.section .container { max-width: 1000px; margin: 0 auto; }

/* Heading styles */
h1, .about-hero h1 { font-family: 'Merriweather', serif; letter-spacing: -0.5px; }
.section-title { font-size: 1.9rem; letter-spacing: -0.2px; }

/* Improve card contrast and subtle saffron shadow */
.vow-card { background: var(--bg-white); border: 1px solid rgba(245,241,235,0.9); box-shadow: 0 10px 30px rgba(var(--accent-rgb),0.06); }
.tirth-item { box-shadow: 0 8px 18px rgba(var(--accent-rgb),0.04); }

/* Grid alignment tweaks */
.vows-grid { align-items: start; }
.tirth-grid { align-items: stretch; }

/* Subtle small note style (less intrusive) */
.small-note { background: transparent; border-left: none; padding: 6px 0; font-size: 0.95rem; color: var(--text-light); opacity: 0.9; text-align: center; margin-top: 14px; }

/* Improve spacing on mobile */
@media (max-width: 700px) {
    .section { padding: 36px 0; }
    .vow-card { padding: 16px; }
    .tirth-item { padding: 10px; }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
    will-change: opacity, transform;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
    will-change: opacity, transform;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
    will-change: opacity, transform;
}

.zoom-in {
    animation: zoomIn 0.8s ease-out;
    will-change: opacity, transform;
}

.page-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-gradient-hero);
    overflow: hidden;
}

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

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

.philosophy-section {
    margin-top: 60px;
    padding: 40px 0;
    background: var(--bg-light-beige);
    border-radius: 15px;
}

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

.philosophy-text h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.philosophy-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.philosophy-text ul {
    list-style: none;
    padding-left: 0;
}

.philosophy-text ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.philosophy-text ul li::before {
    content: '•';
    color: var(--accent-saffron);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Enhanced animations */
@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.typewriter {
    overflow: hidden;
    border-right: 2px solid var(--accent-saffron);
    white-space: nowrap;
    animation: typewriter 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--accent-saffron);
    }
}

/* Enhanced card hover effects with hardware acceleration */
.bhajan-card,
.tirth-card,
.principle-card {
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.bhajan-card:hover,
.tirth-card:hover,
.principle-card:hover {
    transform: translate3d(0, -8px, 0) scale(1.01);
    box-shadow: 0 15px 35px var(--shadow-hover);
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--bg-light-beige);
    border-radius: 50%;
    border-top-color: var(--accent-saffron);
    animation: spin 1s ease-in-out infinite;
}

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

/* Enhanced form styles */
.form-group input:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-saffron-medium);
}

/* Enhanced button styles */
.btn {
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 999;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .hamburger .bar {
        position: absolute;
        transition: transform 0.35s cubic-bezier(.4,.0,.2,1), opacity 0.25s ease, width 0.25s ease;
    }
    .hamburger .bar:nth-child(1) { transform: translateY(-8px); }
    .hamburger .bar:nth-child(2) { transform: translateY(0); }
    .hamburger .bar:nth-child(3) { transform: translateY(8px); }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translateY(0);
        width: 22px;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(10px);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translateY(0);
        width: 22px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        text-align: center;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        padding: 12px 0 20px;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        border-bottom: 1px solid var(--border-light);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.35s cubic-bezier(.4,.0,.2,1),
                    opacity 0.3s ease,
                    visibility 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 0;
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    .nav-menu.active li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.3s; }
    
    .nav-link {
        padding: 14px 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.02rem;
        min-height: 48px;
        border-radius: 12px;
        margin: 2px 16px;
        transition: background 0.25s ease, color 0.25s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(var(--accent-rgb),0.06);
        color: var(--accent-saffron);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-item {
        min-width: 80px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        grid-template-columns: 1fr;
    }
    
    .bhajans-grid,
    .tirth-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .navbar {
        height: auto;
        padding: 0;
    }
    
    .nav-container {
        height: 60px;
        padding: 0 12px;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .nav-logo i {
        margin-right: 5px;
        font-size: 1.4rem;
    }

    .nav-logo-img {
        height: 30px;
        margin-right: 5px;
    }
    
    .hamburger {
        padding: 8px;
    }
    
    .bar {
        width: 20px;
        height: 2.5px;
    }
    
    .nav-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
    }
    
    .hero {
        min-height: 80vh;
        padding: 20px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
        margin-bottom: 12px;
    }
    
    .hero-stats {
        gap: 0.5rem;
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 1.5rem;
    }
    
    .stat-item {
        min-width: 70px;
        padding: 10px 8px;
        border-radius: 10px;
    }
    
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 3px;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 100%;
        padding: 12px 16px;
        min-height: 44px;
        font-size: 0.95rem;
    }
    
    .btn i {
        margin-right: 6px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .search-box {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .search-box input {
        padding: 12px 12px 12px 40px;
        font-size: 1rem;
        min-height: 44px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text {
        grid-template-columns: 1fr;
    }
    
    .bhajans-grid,
    .tirth-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .bhajan-card,
    .tirth-card {
        padding: 16px;
        border-radius: 12px;
    }
    
    .bhajan-card h3,
    .tirth-content h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .bhajan-card p,
    .tirth-content p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .principle-card {
        padding: 20px 12px;
        border-radius: 12px;
    }
    
    .principle-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .principle-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .principle-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .contact-item {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .contact-item i {
        font-size: 1.3rem;
        min-width: 20px;
    }
    
    .contact-item h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 1rem;
        min-height: 44px;
        border-radius: 8px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .footer-section p,
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    /* Theme Switcher Mobile */
    .theme-toggle {
        right: 12px;
        bottom: 12px;
        width: 48px;
        height: 48px;
        min-height: 48px;
    }
    
    .theme-panel {
        right: 8px;
        left: 8px;
        bottom: 70px;
        width: auto;
        max-width: 100%;
    }
    
    .theme-list {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .theme-swatch {
        height: 50px;
    }
    
    .theme-swatch .label {
        font-size: 0.65rem;
    }
}

/* =========================================
   TIRTH STHAL PROMO SECTION (Homepage/About)
   ========================================= */
.tirth-promo {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light-beige) 100%);
    position: relative;
    overflow: hidden;
}
.tirth-promo::before {
    content: '🛕';
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    font-size: 16rem;
    opacity: 0.03;
    pointer-events: none;
}

.tirth-promo .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.tirth-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--accent-rgb),0.08);
    color: var(--accent-saffron);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 14px;
    border: 1px solid rgba(var(--accent-rgb),0.14);
    letter-spacing: 0.03em;
}

.tirth-promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.tirth-promo-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.tirth-promo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(var(--accent-rgb),0.1);
}

.tirth-promo-card-img {
    height: 180px;
    background: linear-gradient(135deg, var(--bg-light-beige), var(--bg-dark-beige));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.tirth-promo-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tirth-promo-card-img .tirth-promo-icon {
    font-size: 3rem;
    opacity: 0.6;
    color: var(--accent-saffron);
}
.tirth-promo-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(var(--accent-rgb),0.9);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
}

.tirth-promo-card-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.tirth-promo-card-body h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.tirth-promo-card-body p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 12px;
    flex: 1;
}
.tirth-promo-card-loc {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--accent-saffron);
    font-weight: 500;
}
.tirth-promo-card-loc i {
    font-size: 0.78rem;
}

/* Tirth promo stats strip */
.tirth-promo-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.tirth-promo-stat {
    text-align: center;
    padding: 14px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    min-width: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tirth-promo-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(var(--accent-rgb),0.08);
}
.tirth-promo-stat-num {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-saffron);
    line-height: 1;
    margin-bottom: 4px;
}
.tirth-promo-stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Tirth promo CTA */
.tirth-promo-cta {
    text-align: center;
}
.tirth-promo-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 14px;
}

/* Tirth promo responsive */
@media (max-width: 900px) {
    .tirth-promo-grid {
        grid-template-columns: 1fr 1fr;
    }
    .tirth-promo-grid .tirth-promo-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}
@media (max-width: 600px) {
    .tirth-promo {
        padding: 50px 0;
    }
    .tirth-promo-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .tirth-promo-grid .tirth-promo-card:nth-child(3) {
        max-width: 100%;
    }
    .tirth-promo-card-img {
        height: 150px;
    }
    .tirth-promo-stats {
        gap: 12px;
    }
    .tirth-promo-stat {
        min-width: 90px;
        padding: 12px 14px;
    }
    .tirth-promo-stat-num {
        font-size: 1.4rem;
    }
}

/* Theme Switcher Panel */
.theme-toggle {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    box-shadow: 0 8px 24px var(--shadow-saffron-light);
    cursor: pointer;
    animation: themeToggleShadowPulse 2.8s ease-in-out infinite;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, filter 0.25s ease;
}
.theme-toggle:hover,
.theme-toggle:focus-visible {
    transform: scale(1.06);
    background: color-mix(in srgb, var(--btn-primary-bg) 85%, var(--accent-golden) 15%);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
    filter: saturate(1.08);
}
.theme-toggle:active {
    transform: scale(0.98);
}
.theme-toggle i,
.theme-toggle svg {
    font-size: clamp(1.05rem, 1rem + 0.35vw, 1.2rem);
    transition: transform 0.25s ease;
}
.theme-toggle:hover i,
.theme-toggle:focus-visible i,
.theme-toggle:hover svg,
.theme-toggle:focus-visible svg {
    transform: rotate(10deg);
}

@keyframes themeToggleShadowPulse {
    0%,
    100% {
        box-shadow: 0 8px 24px var(--shadow-saffron-light);
    }
    50% {
        box-shadow: 0 11px 30px var(--shadow-hover);
    }
}

@media (prefers-reduced-motion: reduce) {
    .theme-toggle {
        animation: none;
    }
}

.theme-panel {
    position: fixed;
    right: 18px;
    bottom: 86px;
    width: 320px;
    max-width: calc(100% - 40px);
    background: var(--bg-white);
    color: var(--text-dark);
    border-radius: 12px;
    box-shadow: 0 20px 50px var(--shadow-hover);
    padding: 14px;
    z-index: 3000;
    transform-origin: bottom right;
}
.theme-panel h4 {
    margin: 0 0 8px 0;
    font-size: clamp(0.95rem, 0.92rem + 0.2vw, 1.05rem);
}
.theme-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 8px;
}
.theme-swatch {
    height: 56px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.theme-swatch:focus,
.theme-swatch:hover {
    outline: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}
.theme-swatch .label {
    font-size: clamp(0.64rem, 0.61rem + 0.2vw, 0.74rem);
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
    pointer-events: none;
}
.theme-actions {
    display:flex;
    gap:8px;
    margin-top:10px;
}
.theme-actions button{
    flex:1;
    padding:8px 10px;
    border-radius:8px;
    border: none;
    cursor: pointer;
    font-weight:600;
    font-size: var(--font-size-sm);
    line-height: 1.2;
}
.theme-actions .reset-btn{ background: var(--btn-secondary-bg); color: var(--btn-secondary-text); border:1px solid var(--btn-secondary-border); }
.theme-actions .random-btn{ background: var(--btn-primary-bg); color: var(--btn-primary-text); }

/* small screen panel position tweak */
@media (max-width: 520px){
    .theme-panel { right: 12px; left: 12px; bottom: 78px; }
}

/* =========================================
   CONTACT PAGE — Redesigned with animated links
   ========================================= */

/* Hero badge */
.cp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--accent-rgb),0.09);
    color: var(--accent-saffron);
    padding: 7px 20px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 14px;
    border: 1px solid rgba(var(--accent-rgb),0.14);
    letter-spacing: 0.02em;
}

/* Section titles */
.cp-section-title {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 6px;
}
.cp-section-sub {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 36px;
}

/* ---- Animated Contact Link Cards ---- */
.cp-links-section {
    padding: 60px 0 50px;
    background: var(--bg-light-beige);
}

.cp-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 960px;
    margin: 0 auto;
}

.cp-link-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px 20px 28px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(.2,.9,.3,1), box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: pointer;
}

.cp-link-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0,0,0,0.10);
}

/* Ripple bg effect on hover */
.cp-link-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}
.cp-link-card:hover .cp-link-ripple {
    width: 400px;
    height: 400px;
    opacity: 1;
}

/* Icon circle */
.cp-link-icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 16px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.cp-link-card:hover .cp-link-icon {
    transform: scale(1.12) rotate(-5deg);
}

.cp-link-card h3 {
    position: relative;
    z-index: 1;
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}
.cp-link-card p {
    position: relative;
    z-index: 1;
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0;
    transition: color 0.3s ease;
}

/* Arrow icon */
.cp-link-arrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-light-beige);
    color: var(--text-light);
    margin-top: 14px;
    font-size: 0.8rem;
    transition: all 0.35s ease;
}
.cp-link-card:hover .cp-link-arrow {
    transform: translateX(4px);
}

/* ---- Per-card brand colors ---- */
/* WhatsApp */
.cp-card-whatsapp .cp-link-icon { background: rgba(37,211,102,0.10); color: #25d366; }
.cp-card-whatsapp .cp-link-ripple { background: rgba(37,211,102,0.06); }
.cp-card-whatsapp:hover { border-color: rgba(37,211,102,0.25); }
.cp-card-whatsapp:hover .cp-link-arrow { background: rgba(37,211,102,0.12); color: #25d366; }
.cp-card-whatsapp:hover .cp-link-icon { box-shadow: 0 6px 20px rgba(37,211,102,0.18); }

/* Instagram */
.cp-card-instagram .cp-link-icon { background: rgba(225,48,108,0.10); color: #e1306c; }
.cp-card-instagram .cp-link-ripple { background: rgba(225,48,108,0.05); }
.cp-card-instagram:hover { border-color: rgba(225,48,108,0.25); }
.cp-card-instagram:hover .cp-link-arrow { background: rgba(225,48,108,0.10); color: #e1306c; }
.cp-card-instagram:hover .cp-link-icon { box-shadow: 0 6px 20px rgba(225,48,108,0.18); }

/* Email */
.cp-card-email .cp-link-icon { background: rgba(var(--accent-rgb),0.10); color: var(--accent-saffron); }
.cp-card-email .cp-link-ripple { background: rgba(var(--accent-rgb),0.05); }
.cp-card-email:hover { border-color: rgba(var(--accent-rgb),0.25); }
.cp-card-email:hover .cp-link-arrow { background: rgba(var(--accent-rgb),0.10); color: var(--accent-saffron); }
.cp-card-email:hover .cp-link-icon { box-shadow: 0 6px 20px rgba(var(--accent-rgb),0.18); }

/* YouTube */
.cp-card-youtube .cp-link-icon { background: rgba(255,0,0,0.08); color: #ff0000; }
.cp-card-youtube .cp-link-ripple { background: rgba(255,0,0,0.04); }
.cp-card-youtube:hover { border-color: rgba(255,0,0,0.20); }
.cp-card-youtube:hover .cp-link-arrow { background: rgba(255,0,0,0.08); color: #ff0000; }
.cp-card-youtube:hover .cp-link-icon { box-shadow: 0 6px 20px rgba(255,0,0,0.15); }

/* ---- Contact Form Section ---- */
.cp-form-section {
    padding: 60px 0 70px;
    background: var(--bg-white);
}

.cp-form-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    max-width: 960px;
    margin: 0 auto;
    align-items: start;
}

.cp-form-info h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.cp-form-info > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    font-size: 0.98rem;
}

.cp-info-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.cp-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 18px;
    background: var(--bg-light-beige);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cp-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(var(--accent-rgb),0.08);
}
.cp-info-item i {
    font-size: 1.3rem;
    color: var(--accent-saffron);
    margin-top: 2px;
    flex-shrink: 0;
}
.cp-info-item h4 {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 3px;
}
.cp-info-item p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* ---- Form ---- */
.cp-form {
    background: var(--bg-light-beige);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cp-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cp-form-group label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
}
.cp-form-group input,
.cp-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--bg-white);
    color: var(--text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.cp-form-group input:focus,
.cp-form-group textarea:focus {
    outline: none;
    border-color: var(--accent-saffron);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb),0.08);
}
.cp-form-group input::placeholder,
.cp-form-group textarea::placeholder {
    color: var(--text-placeholder);
}
.cp-form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.cp-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    background: var(--accent-saffron);
    color: #fff;
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(var(--accent-rgb),0.18);
}
.cp-submit-btn i {
    transition: transform 0.3s ease;
}
.cp-submit-btn:hover {
    background: var(--accent-strong);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--accent-rgb),0.25);
}
.cp-submit-btn:hover i {
    transform: translateX(4px) translateY(-2px);
}

/* Success toast */
.cp-form-success {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(37,211,102,0.08);
    border: 1px solid rgba(37,211,102,0.18);
    border-radius: 10px;
    color: #1a8c42;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}
.cp-form-success.active {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Form Carousel ---- */
.cp-carousel {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cp-carousel-tabs {
    display: flex;
    gap: 0;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-bottom: none;
    background: var(--bg-light-beige);
}
.cp-tab {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border: none;
    background: transparent;
    font-family: 'Merriweather', serif;
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease, background 0.3s ease;
}
.cp-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: transparent;
    transition: background 0.3s ease, left 0.3s ease, right 0.3s ease;
}
.cp-tab.active {
    color: var(--accent-saffron);
    background: var(--bg-white);
}
.cp-tab.active::after {
    background: var(--accent-saffron);
    left: 10%;
    right: 10%;
}
.cp-tab:not(.active):hover {
    color: var(--text-dark);
    background: rgba(var(--accent-rgb),0.03);
}

.cp-carousel-track-wrapper {
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-top: none;
    border-radius: 0 0 16px 16px;
    background: var(--bg-light-beige);
}
.cp-carousel-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(.4,.0,.2,1);
    will-change: transform;
    user-select: none;
}
.cp-carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

/* Dots */
.cp-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}
.cp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.cp-dot.active {
    background: var(--accent-saffron);
    transform: scale(1.25);
}

/* ---- WhatsApp Community Slide ---- */
.cp-wa-community {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 32px 36px;
}
.cp-wa-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 18px;
    box-shadow: 0 8px 28px rgba(37,211,102,0.20);
    animation: cpWaPulse 2.5s ease-in-out infinite;
}
@keyframes cpWaPulse {
    0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,0.20); transform: scale(1); }
    50% { box-shadow: 0 10px 36px rgba(37,211,102,0.30); transform: scale(1.05); }
}

.cp-wa-community h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.cp-wa-community > p {
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 380px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.cp-wa-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}
.cp-wa-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-dark);
}
.cp-wa-perks li i {
    color: #25d366;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.cp-wa-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 6px 22px rgba(37,211,102,0.18);
}
.cp-wa-join-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}
.cp-wa-join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(37,211,102,0.28);
    background: linear-gradient(135deg, #2be071, #159c6a);
}
.cp-wa-join-btn:hover i {
    transform: scale(1.15);
}

.cp-wa-note {
    margin-top: 12px;
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ---- Responsive ---- */
@media (max-width: 800px) {
    .cp-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .cp-form-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .cp-link-card {
        padding: 24px 16px 22px;
    }
}
@media (max-width: 500px) {
    .cp-links-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .cp-link-card {
        flex-direction: row;
        text-align: left;
        gap: 16px;
        padding: 20px;
    }
    .cp-link-icon {
        margin-bottom: 0;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        flex-shrink: 0;
    }
    .cp-link-arrow {
        margin-top: 0;
        margin-left: auto;
    }
    .cp-form {
        padding: 24px 20px;
    }
    .cp-section-title {
        font-size: 1.5rem;
    }
    .cp-tab {
        font-size: 0.82rem;
        padding: 12px 10px;
        gap: 5px;
    }
    .cp-wa-community {
        padding: 28px 20px;
    }
    .cp-wa-join-btn {
        padding: 12px 24px;
    }
}