/* CSS Design System for Chatrapati Shivaji Maharaj Mandal */
:root {
    --bg-dark: #0A0B0E;
    --bg-card: rgba(22, 25, 34, 0.85);
    --bg-card-hover: rgba(32, 36, 50, 0.95);
    
    --saffron-main: #FF6B00;
    --saffron-glow: #FF9933;
    --saffron-dark: #D44200;
    --gold-main: #FFD700;
    --gold-glow: #FFA500;
    --red-vermilion: #C8102E;
    
    --text-light: #F5F7FA;
    --text-muted: #A0A5B5;
    --text-gold: #FFE082;
    
    --border-gold: rgba(255, 215, 0, 0.3);
    --border-saffron: rgba(255, 107, 0, 0.3);
    
    --shadow-saffron: 0 10px 30px rgba(255, 107, 0, 0.25);
    --shadow-gold: 0 10px 30px rgba(255, 215, 0, 0.2);
    
    --font-heading: 'Cinzel', 'Noto Sans Telugu', serif;
    --font-body: 'Poppins', 'Noto Sans Telugu', sans-serif;
    
    --transition-fast: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(255, 107, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 40%);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #FFFFFF;
    line-height: 1.3;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section Tag & Title Styling */
.section-title-wrap {
    margin-bottom: 3.5rem;
}

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

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 215, 0, 0.15));
    border: 1px solid var(--border-gold);
    color: var(--gold-main);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF 30%, var(--gold-main) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.8rem;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.title-divider::before,
.title-divider::after {
    content: '';
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--saffron-main), transparent);
}

.title-divider span {
    color: var(--saffron-glow);
    font-size: 1.2rem;
}

/* Top Announcement Bar */
.top-bar {
    background: linear-gradient(90deg, #1A0000 0%, #3D0C00 50%, #1A0000 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slogan-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-main);
    font-weight: 700;
}

.om-symbol {
    font-size: 1.4rem;
    color: var(--saffron-glow);
    animation: pulseGlow 2s infinite alternate;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-phone {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
}

.top-phone:hover {
    color: var(--saffron-glow);
}

.top-wa-btn {
    background: #25D366;
    color: #FFFFFF;
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.3);
}

.top-wa-btn:hover {
    background: #20BA5A;
    transform: translateY(-1px);
}

.lang-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--gold-main);
    padding: 0.25rem 0.7rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-fast);
}

.lang-toggle-btn:hover {
    background: var(--saffron-main);
    color: #FFF;
}

/* Header & Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 11, 14, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
    padding: 0.8rem 0;
    transition: var(--transition-fast);
}

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

.brand-logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold-main);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
    object-fit: cover;
}

.brand-titles {
    display: flex;
    flex-direction: column;
}

.brand-title-main {
    font-size: 1.2rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.brand-sub-title {
    font-size: 0.75rem;
    color: var(--saffron-glow);
    font-weight: 700;
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
    position: relative;
    padding: 0.4rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--saffron-main);
    transition: var(--transition-fast);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--saffron-glow);
}

.highlight-btn {
    background: linear-gradient(135deg, var(--saffron-main), var(--saffron-dark));
    color: #FFFFFF !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 30px;
    box-shadow: var(--shadow-saffron);
}

.highlight-btn::after {
    display: none;
}

.highlight-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold-main);
    font-size: 1.6rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 5rem 0 6rem;
    background: radial-gradient(circle at 50% 30%, rgba(255, 107, 0, 0.15), transparent 70%);
    overflow: hidden;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.divine-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid var(--border-saffron);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-main);
    margin-bottom: 1.5rem;
}

.hero-heading {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.highlight-saffron {
    color: var(--saffron-glow);
    text-shadow: 0 0 20px rgba(255, 153, 51, 0.4);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 620px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, var(--saffron-main), #E65100);
    color: #FFFFFF;
    box-shadow: var(--shadow-saffron);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 107, 0, 0.5);
}

.btn-whatsapp {
    background: #25D366;
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--gold-main);
}

.btn-secondary:hover {
    background: var(--gold-main);
    color: #000;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold-main);
    color: var(--gold-main);
}

.btn-outline:hover {
    background: var(--gold-main);
    color: #000;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stat-card {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold-main);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero Media Logo */
.hero-logo-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.glowing-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.4) 0%, transparent 70%);
    animation: pulseRing 3s infinite ease-in-out;
    z-index: 0;
}

.hero-logo-img {
    position: relative;
    z-index: 1;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 4px solid var(--gold-main);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
    object-fit: cover;
    transition: var(--transition-fast);
}

.hero-logo-img:hover {
    transform: scale(1.03) rotate(2deg);
}

.hero-caption {
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-caption h3 {
    font-size: 1.3rem;
    color: var(--gold-main);
}

.hero-caption p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: rgba(15, 17, 23, 0.6);
}

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

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-saffron);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron-main), var(--gold-main));
}

.about-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-saffron);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 215, 0, 0.1));
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold-main);
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.about-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pillars Section */
.pillars-section {
    padding: 6rem 0;
    position: relative;
}

.pillars-flex-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.pillar-box {
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pillar-box:hover {
    transform: translateY(-6px);
    border-color: var(--saffron-glow);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.2);
}

.pillar-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    background: rgba(255, 107, 0, 0.2);
    border: 1px solid var(--saffron-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold-main);
}

.pillar-icon {
    font-size: 2.2rem;
    color: var(--saffron-glow);
    margin-bottom: 1.2rem;
}

.pillar-box h4 {
    font-size: 1.15rem;
    color: var(--gold-main);
    margin-bottom: 0.8rem;
}

.pillar-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Poster Display Section */
.poster-section {
    padding: 5rem 0;
    background: rgba(18, 20, 28, 0.7);
}

.poster-display-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.poster-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--border-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.poster-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-fast);
}

.poster-frame:hover .poster-img {
    transform: scale(1.02);
}

.poster-overlay-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, transparent 100%);
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.poster-info-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.poster-info-box h3 {
    font-size: 1.8rem;
    color: var(--gold-main);
}

.poster-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.poster-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

.poster-feature-list i {
    color: var(--saffron-glow);
    font-size: 1.2rem;
}

.direct-contact-card {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(255, 215, 0, 0.1));
    border: 1px solid rgba(37, 211, 102, 0.4);
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1rem;
}

.wa-big-icon {
    font-size: 2.5rem;
    color: #25D366;
}

.direct-call-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.direct-phone-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #25D366;
    letter-spacing: 1px;
}

/* Connect / Form Section */
.connect-section {
    padding: 6rem 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.12), transparent 70%);
}

.connect-card-wrapper {
    background: var(--bg-card);
    border: 2px solid var(--border-gold);
    border-radius: 28px;
    padding: 3.5rem 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    margin: 0 auto;
}

.connect-header {
    text-align: center;
    margin-bottom: 3rem;
}

.connect-logo-mini img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--gold-main);
    margin-bottom: 1rem;
}

.connect-subtitle {
    color: var(--saffron-glow);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.connect-title {
    font-size: 2.2rem;
    color: #FFFFFF;
    margin: 0.4rem 0 0.8rem;
}

.connect-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

.membership-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

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

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group input,
.form-group select {
    background: rgba(10, 12, 18, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    color: #FFFFFF;
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition-fast);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--saffron-glow);
    box-shadow: 0 0 12px rgba(255, 153, 51, 0.4);
    background: rgba(15, 18, 26, 0.95);
}

.form-group select option {
    background: #14161F;
    color: #FFF;
}

.form-actions {
    display: flex;
    gap: 1.2rem;
    margin-top: 1rem;
}

.btn-submit-wa {
    flex: 1;
    background: #25D366;
    color: #FFFFFF;
    padding: 1rem 1.5rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition-fast);
}

.btn-submit-wa:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.helpline-notice {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.helpline-notice strong {
    color: var(--gold-main);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: rgba(12, 14, 20, 0.9);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

.contact-heading {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.c-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold-main);
}

.c-link {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--saffron-glow);
}

.c-link:hover {
    text-decoration: underline;
}

.social-links-box {
    margin-top: 2rem;
}

.social-links-box h4 {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

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

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold-main);
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background: var(--saffron-main);
    color: #FFF;
    transform: translateY(-3px);
}

.contact-quote-card {
    background: linear-gradient(135deg, rgba(42, 5, 5, 0.9), rgba(20, 5, 5, 0.9));
    border: 2px solid var(--border-gold);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.quote-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-om {
    font-size: 4rem;
    color: rgba(255, 215, 0, 0.2);
    margin-bottom: -1rem;
}

.quote-content blockquote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--gold-main);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.quote-content blockquote small {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.sign-title {
    font-size: 1rem;
    color: var(--saffron-glow);
    font-weight: 600;
}

/* Footer */
.site-footer {
    background: #060709;
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold-main);
}

.footer-slogan {
    font-size: 1.4rem;
    color: var(--gold-main);
    letter-spacing: 2px;
}

.copyright-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Floating WhatsApp Button */
.floating-wa-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition-fast);
}

.floating-wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.7);
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    background: #14161F;
    color: #FFFFFF;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    border: 1px solid var(--border-gold);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.floating-wa-btn:hover .wa-tooltip {
    opacity: 1;
}

/* Modals */
.modal-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-lightbox.active {
    display: flex;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 3rem;
    color: #FFF;
    cursor: pointer;
}

.modal-content-img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    border: 2px solid var(--gold-main);
}

.success-box {
    background: #14161F;
    border: 2px solid var(--gold-main);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.success-icon {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 1rem;
}

.success-box h3 {
    color: var(--gold-main);
    margin-bottom: 1rem;
}

.success-box p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Keyframes */
@keyframes pulseGlow {
    0% { transform: scale(1); filter: drop-shadow(0 0 2px var(--saffron-glow)); }
    100% { transform: scale(1.15); filter: drop-shadow(0 0 8px var(--saffron-glow)); }
}

@keyframes pulseRing {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.08); opacity: 0.8; }
    100% { transform: scale(0.95); opacity: 0.5; }
}

/* Mobile Responsive Design System */

@media (max-width: 1024px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .hero-heading {
        font-size: clamp(2rem, 4vw, 3rem);
    }
}

@media (max-width: 992px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
        width: 100%;
    }

    .hero-stats {
        width: 100%;
        justify-content: space-around;
    }

    .poster-display-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }

    /* Mobile Header & Navigation */
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 10px;
        background: rgba(255, 107, 0, 0.15);
        border: 1px solid var(--border-gold);
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 12, 18, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 2px solid var(--saffron-main);
        padding: 1.5rem 1.25rem;
        display: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
        animation: slideDownNav 0.3s ease-out forwards;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0.8rem;
        align-items: stretch;
    }

    .nav-link {
        display: block;
        padding: 0.8rem 1rem;
        font-size: 1.05rem;
        border-radius: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 107, 0, 0.15);
        color: var(--gold-main);
    }

    .highlight-btn {
        text-align: center;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .top-contact {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

    .hero-heading {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .hero-logo-img {
        width: 220px;
        height: 220px;
    }

    .glowing-ring {
        width: 240px;
        height: 240px;
    }

    .connect-card-wrapper {
        padding: 2.2rem 1.25rem;
        border-radius: 20px;
    }

    .connect-title {
        font-size: 1.6rem;
    }

    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .form-actions .btn {
        width: 100%;
    }

    .poster-overlay-actions {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem;
    }

    .poster-overlay-actions .btn {
        width: 100%;
        font-size: 0.9rem;
    }

    .direct-contact-card {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem 1rem;
    }

    .floating-wa-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 54px;
        height: 54px;
        font-size: 1.8rem;
    }

    .wa-tooltip {
        display: none; /* Hide tooltip on mobile touch screens */
    }

    .form-group input,
    .form-group select {
        font-size: 16px; /* Prevents auto-zoom on mobile safari/chrome */
        padding: 0.85rem 1rem;
    }
}

@media (max-width: 480px) {
    .brand-title-main {
        font-size: 1rem;
    }

    .brand-sub-title {
        font-size: 0.7rem;
    }

    .nav-logo-img {
        width: 42px;
        height: 42px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }

    .stat-divider {
        width: 80%;
        height: 1px;
    }

    .pillars-flex-container {
        grid-template-columns: 1fr;
    }

    .contact-quote-card {
        padding: 2rem 1.5rem;
    }

    .quote-content blockquote {
        font-size: 1.3rem;
    }
}

@keyframes slideDownNav {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

