/* =============================================
   Shambhava — Premium Vedic Astrology Design
   ============================================= */

:root {
    --bg-deep: #0B1020;
    --bg-surface: #121A2E;
    --bg-card: rgba(18, 26, 46, 0.7);
    --bg-card-hover: rgba(25, 35, 60, 0.8);
    --primary: #C6A15B;
    --primary-light: #d8b673;
    --primary-dark: #a38245;
    --text-main: #F3EDE0;
    --text-light: #ffffff;
    --text-muted: #CBBFA8;
    --border-subtle: rgba(198, 161, 91, 0.15);
    --border-glow: rgba(198, 161, 91, 0.3);
    --glass: rgba(255, 255, 255, 0.03);
    --gold-gradient: linear-gradient(135deg, #a38245, #C6A15B, #d8b673);
    --cosmic-gradient: linear-gradient(180deg, #121A2E 0%, #0B1020 100%);
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow-glow: 0 0 40px rgba(198, 161, 91, 0.08);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body.menu-open {
    overflow: hidden;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Stars Canvas */
#stars-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

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

a:hover {
    color: var(--primary-light);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-serif);
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.2;
}

.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    padding: 6px 16px;
    border: 1px solid var(--border-subtle);
    border-radius: 30px;
    background: rgba(212, 168, 67, 0.05);
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 16, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
}

.logo img {
    height: 28px;
    width: auto;
    display: block;
    transition: var(--transition);
    filter: drop-shadow(0 0 5px rgba(198, 161, 91, 0.3));
}

.logo:hover img {
    transform: scale(1.1);
}

.footer-logo img {
    height: 36px;
    margin-bottom: 0;
}

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-threads {
    display: flex !important;
    align-items: center;
    gap: 6px;
    padding: 6px 14px !important;
    border: 1px solid var(--border-subtle);
    border-radius: 30px;
    font-size: 0.85rem !important;
}

.nav-threads:hover {
    border-color: var(--primary);
    background: rgba(212, 168, 67, 0.08);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: var(--text-light);
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
    border-radius: 2px;
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/om_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(198, 161, 91, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: breathe 12s ease-in-out infinite;
}

@keyframes breathe {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

@keyframes slowFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    animation: slowFadeIn 2s ease 0.2s both;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-muted);
    animation: slowFadeIn 2s ease 0.8s both;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: slowFadeIn 2s ease 1.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ==================== BUTTONS ==================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--gold-gradient);
    color: #0a0a20;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.5);
    color: #0a0a20;
}

.btn-threads {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.btn-threads:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    color: var(--text-light);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.05rem;
}

/* ==================== ZODIAC SECTION ==================== */
.zodiac-section {
    background: var(--cosmic-gradient);
}

.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.zodiac-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 24px 12px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

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

.zodiac-symbol {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.zodiac-name {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.4;
}

.zodiac-card:hover .zodiac-name {
    color: var(--primary-light);
}

.zodiac-traits {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.5;
}

/* ==================== POSTS GRID ==================== */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.post-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card), 0 0 40px rgba(212, 168, 67, 0.08);
    border-color: var(--border-glow);
}

.post-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.post-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, var(--bg-deep), transparent);
}

.category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid var(--border-subtle);
}

.post-content {
    padding: 28px;
}

.post-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.post-date::before {
    content: '⟡';
    color: var(--primary);
}

.post-title {
    font-size: 1.35rem;
    margin-bottom: 14px;
    line-height: 1.35;
}

.post-title a {
    color: var(--text-light);
}

.post-title a:hover {
    color: var(--primary);
}

.post-excerpt {
    font-size: 0.92rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-muted);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    color: var(--primary);
}

.read-more:hover {
    gap: 10px;
    color: var(--primary-light);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/card_background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 0;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 35px;
    color: var(--text-main);
}

/* ==================== SERVICES ==================== */
.services-section {
    background: var(--bg-deep);
    position: relative;
}

.services-section {
    background: var(--bg-deep);
    position: relative;
    padding: 96px 0;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/om_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.services-section .section-header {
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 40px;
    margin-bottom: 48px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(198, 161, 91, 0.22);
    border-radius: 20px;
    padding: 28px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(198, 161, 91, 0.5);
    box-shadow: 0 10px 40px rgba(198, 161, 91, 0.08);
}

.service-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-details {
    flex-grow: 1;
    margin-bottom: 24px;
}

.service-details p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.service-details strong {
    color: var(--text-main);
    font-weight: 500;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    margin-top: auto;
}

.service-btn svg {
    transition: transform 0.3s ease;
}

.service-card:hover .service-btn {
    color: var(--primary-light);
}

.service-card:hover .service-btn svg {
    transform: translateX(4px);
}

.services-footer {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
}

.trust-text {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.trust-subtext {
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

/* ==================== ABOUT ==================== */
.about-section {
    background: var(--cosmic-gradient);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    transition: var(--transition);
    display: block;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    border: 1px solid var(--border-subtle);
    pointer-events: none;
}

.about-text h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.about-social {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-social span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid var(--border-subtle);
    border-radius: 30px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--primary);
    background: rgba(212, 168, 67, 0.08);
    color: var(--primary);
}

/* ==================== SINGLE POST ==================== */
.post-page-container {
    max-width: 820px;
    padding-top: 120px;
}

.single-post {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 48px;
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
}

.post-header {
    text-align: center;
    margin-bottom: 35px;
}

.post-title-large {
    font-size: 2.6rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.2;
}

.post-meta {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.post-hero-image {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-sm);
    background-size: cover;
    background-position: center;
    margin-bottom: 40px;
    box-shadow: var(--shadow-card);
}

.post-body h2,
.post-body h3 {
    color: var(--primary);
    margin: 35px 0 18px;
    font-size: 1.5rem;
}

.post-body p {
    margin-bottom: 20px;
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--text-main);
}

.post-body ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.post-body li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.post-body li strong {
    color: var(--primary-light);
}

.post-body blockquote {
    border-left: 3px solid var(--primary);
    padding: 16px 24px;
    margin: 30px 0;
    background: rgba(212, 168, 67, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--primary-light);
}

.post-footer {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}

.post-cta-box {
    margin-top: 30px;
    padding: 30px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
}

.post-cta-box p {
    margin-bottom: 16px;
    color: var(--text-main);
    font-size: 1.05rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

/* ==================== ADS ==================== */
.ad-section {
    margin: 30px auto;
    max-width: 100%;
    min-height: 50px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: rgba(5, 5, 10, 0.95);
    padding: 70px 0 24px;
    border-top: 1px solid var(--border-subtle);
    position: relative;
    z-index: 1;
}

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

.footer-logo {
    margin-bottom: 16px;
}

.footer-brand p {
    max-width: 320px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 18px;
    color: var(--primary);
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.92rem;
}

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

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

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

.footer-disclaimer {
    margin-top: 6px;
    font-size: 0.75rem;
}

/* ==================== FLOATING CHAT BUTTON ==================== */
.chat-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chat-fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.chat-fab-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(212, 168, 67, 0.6);
}

.chat-fab-btn svg {
    transition: var(--transition);
}

.chat-fab.active .chat-fab-btn svg {
    transform: rotate(45deg);
}

.chat-fab-menu {
    position: absolute;
    bottom: 75px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.chat-fab.active .chat-fab-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-fab-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 30px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
    text-decoration: none;
}

.chat-fab-item:hover {
    border-color: var(--primary);
    background: rgba(20, 18, 50, 0.95);
    transform: translateX(-5px);
    color: var(--primary);
}

.chat-fab-item svg {
    flex-shrink: 0;
}

.chat-fab-item.ig {
    border-color: rgba(225, 48, 108, 0.3);
}

.chat-fab-item.ig:hover {
    border-color: #E1306C;
    color: #E1306C;
}

.chat-fab-item.th {
    border-color: rgba(255, 255, 255, 0.15);
}

.chat-fab-item.th:hover {
    border-color: #fff;
    color: #fff;
}

.chat-fab-item.wa {
    border-color: rgba(37, 211, 102, 0.3);
}

.chat-fab-item.wa:hover {
    border-color: #25D366;
    color: #25D366;
}

.chat-fab-label {
    position: absolute;
    bottom: 75px;
    right: 70px;
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    border: 1px solid var(--border-subtle);
}

.chat-fab:not(.active):hover .chat-fab-label {
    opacity: 1;
}

/* Pulse ring animation */
.chat-fab-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gold-gradient);
    opacity: 0.3;
    animation: chatPulse 2s ease-out infinite;
    z-index: -1;
}

.chat-fab.active .chat-fab-btn::before {
    animation: none;
    opacity: 0;
}

@keyframes chatPulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .zodiac-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-section .about-text,
    .service-detail-section .about-image {
        order: unset !important;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .zodiac-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .zodiac-card {
        padding: 16px 8px;
    }

    .zodiac-symbol {
        font-size: 2rem;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .single-post {
        padding: 24px;
    }

    .post-title-large {
        font-size: 2rem;
    }

    .post-hero-image {
        height: 250px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-num {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 5, 16, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li,
    .nav-links a {
        width: 100%;
        text-align: center;
    }

    .nav-threads {
        justify-content: center;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .section {
        padding: 64px 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .zodiac-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .single-post {
        padding: 28px 18px;
    }

    .chat-fab {
        right: 18px;
        bottom: 18px;
    }

    .chat-fab-label {
        display: none;
    }

    .chat-fab-menu {
        max-width: min(78vw, 290px);
    }

    .floating-ad {
        left: 16px !important;
        right: 16px !important;
        bottom: 96px !important;
        max-width: none !important;
        width: auto !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==================== CONTACT FORM ==================== */
.contact-section {
    background: var(--bg-deep);
    position: relative;
    padding: 100px 0;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card);
}

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

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

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

.form-control {
    background: rgba(5, 5, 16, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(198, 161, 91, 0.1);
}

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

.btn-submit {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
}
/* ==================== FAQ SECTION ==================== */
.faq-section { background: var(--bg-deep); position: relative; z-index: 1; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border-subtle); border-radius: var(--radius); overflow: hidden; background: rgba(18, 26, 46, 0.8); transition: var(--transition); }
.faq-item:hover { border-color: var(--border-glow); }
.faq-item.open { border-color: var(--primary); }
.faq-question { width: 100%; background: none; border: none; color: var(--text-light); font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; text-align: left; padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: color 0.3s ease; }
.faq-question:hover, .faq-item.open .faq-question { color: var(--primary); }
.faq-icon { font-size: 1.4rem; color: var(--primary); transition: transform 0.3s ease; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 24px; }
.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 20px; }
.faq-answer p { color: var(--text-muted); font-size: 0.98rem; line-height: 1.7; }
.faq-answer strong { color: var(--text-main); }

/* ==================== POST ACTIONS ==================== */
.post-action-btn { 
    background: transparent; 
    border: 1px solid var(--border-subtle); 
    color: var(--text-muted); 
    padding: 8px 18px; 
    border-radius: 20px; 
    font-family: var(--font-sans); 
    cursor: pointer; 
    transition: var(--transition); 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    font-size: 0.9rem; 
    font-weight: 500;
}
.post-action-btn:hover { 
    border-color: var(--primary); 
    color: var(--primary); 
    background: rgba(212, 168, 67, 0.05); 
    transform: translateY(-2px);
}
.post-action-btn.liked { 
    border-color: var(--primary); 
    color: var(--primary); 
    background: rgba(212, 168, 67, 0.1); 
}

.post-comments-section {
    margin-top: 50px;
    padding: 40px;
    background: rgba(18, 26, 46, 0.4);
    border-radius: var(--radius);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.post-comments-section:hover {
    border-color: var(--border-glow);
    background: rgba(18, 26, 46, 0.6);
    box-shadow: var(--shadow-glow);
}

.post-comments-section h3 {
    margin-bottom: 24px;
    font-family: var(--font-serif);
    color: var(--primary);
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.post-comments-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-gradient);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
    background: var(--bg-deep);
    padding: 100px 0;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 32px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.stars {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border-subtle);
    padding-top: 20px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0a0a20;
    font-size: 1.1rem;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.write-review-container {
    text-align: center;
    margin-top: 60px;
}

.btn-review {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-review:hover {
    background: var(--primary);
    color: #0a0a20;
}

/* ==================== KUNDALI CHART (NORTH INDIAN) ==================== */
.kundali-chart {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 40px auto;
}

.kundali-svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary);
    stroke-width: 1;
    fill: none;
    filter: drop-shadow(0 0 5px rgba(198, 161, 91, 0.2));
}

.house-data {
    position: absolute;
    font-size: 0.85rem;
    color: var(--text-light);
    transform: translate(-50%, -50%);
    text-align: center;
    width: 70px;
    pointer-events: none;
    line-height: 1.2;
}

.house-label {
    font-size: 0.65rem;
    color: var(--primary);
    display: block;
    margin-bottom: 2px;
    opacity: 0.8;
}

.ak-highlight {
    color: #FFD700 !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    font-weight: 700;
}

/* Pulse Animation for Like Button */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.post-action-btn.liked {
    color: #ff4d4d !important;
    border-color: #ff4d4d !important;
    background: rgba(255, 77, 77, 0.1) !important;
}

.like-count {
    margin-left: 5px;
    font-weight: 600;
}

/* Service Card Image Styling */
.card-image-small {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--border-subtle);
    transition: transform 0.3s ease;
}

.service-card:hover .card-image-small {
    transform: scale(1.02);
}
